diff --git a/iced/advanced/trait.Widget.html b/iced/advanced/trait.Widget.html index e00cfa29454..83e575e4ad3 100644 --- a/iced/advanced/trait.Widget.html +++ b/iced/advanced/trait.Widget.html @@ -172,11 +172,11 @@

Examples

Message: 'a, Theme: StyleSheet + StyleSheet + StyleSheet + StyleSheet, <Theme as StyleSheet>::Style: From<<Theme as StyleSheet>::Style>, - Renderer: Renderer + 'a,
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for Slider<'a, T, Message, Theme>
where + Renderer: Renderer + 'a,

source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for Slider<'a, T, Message, Theme>
where T: Copy + Into<f64> + FromPrimitive, Message: Clone, Theme: StyleSheet, - Renderer: Renderer,

source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for VerticalSlider<'a, T, Message, Theme>
where + Renderer: Renderer,

source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for VerticalSlider<'a, T, Message, Theme>
where T: Copy + Into<f64> + FromPrimitive, Message: Clone, Theme: StyleSheet, diff --git a/iced/advanced/widget/trait.Widget.html b/iced/advanced/widget/trait.Widget.html index c2a2dc4b997..cb1502ec79e 100644 --- a/iced/advanced/widget/trait.Widget.html +++ b/iced/advanced/widget/trait.Widget.html @@ -172,11 +172,11 @@

Examples

Message: 'a, Theme: StyleSheet + StyleSheet + StyleSheet + StyleSheet, <Theme as StyleSheet>::Style: From<<Theme as StyleSheet>::Style>, - Renderer: Renderer + 'a,

source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for Slider<'a, T, Message, Theme>
where + Renderer: Renderer + 'a,

source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for Slider<'a, T, Message, Theme>
where T: Copy + Into<f64> + FromPrimitive, Message: Clone, Theme: StyleSheet, - Renderer: Renderer,

source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for VerticalSlider<'a, T, Message, Theme>
where + Renderer: Renderer,

source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for VerticalSlider<'a, T, Message, Theme>
where T: Copy + Into<f64> + FromPrimitive, Message: Clone, Theme: StyleSheet, diff --git a/iced/widget/slider/fn.draw.html b/iced/widget/slider/fn.draw.html index b1c63bef428..456b20ee3b2 100644 --- a/iced/widget/slider/fn.draw.html +++ b/iced/widget/slider/fn.draw.html @@ -1,4 +1,4 @@ -draw in iced::widget::slider - Rust

Function iced::widget::slider::draw

source ·
pub fn draw<T, Theme, Renderer>(
+draw in iced::widget::slider - Rust

Function iced::widget::slider::draw

source ·
pub fn draw<T, Theme, Renderer>(
     renderer: &mut Renderer,
     layout: Layout<'_>,
     cursor: Cursor,
diff --git a/iced/widget/slider/fn.mouse_interaction.html b/iced/widget/slider/fn.mouse_interaction.html
index 8751df26b08..81bdde84aab 100644
--- a/iced/widget/slider/fn.mouse_interaction.html
+++ b/iced/widget/slider/fn.mouse_interaction.html
@@ -1,4 +1,4 @@
-mouse_interaction in iced::widget::slider - Rust
pub fn mouse_interaction(
+mouse_interaction in iced::widget::slider - Rust
pub fn mouse_interaction(
     layout: Layout<'_>,
     cursor: Cursor,
     state: &State
diff --git a/iced/widget/slider/fn.update.html b/iced/widget/slider/fn.update.html
index 009f5509692..ccef517b85f 100644
--- a/iced/widget/slider/fn.update.html
+++ b/iced/widget/slider/fn.update.html
@@ -1,12 +1,14 @@
-update in iced::widget::slider - Rust

Function iced::widget::slider::update

source ·
pub fn update<Message, T>(
+update in iced::widget::slider - Rust

Function iced::widget::slider::update

source ·
pub fn update<Message, T>(
     event: Event,
     layout: Layout<'_>,
     cursor: Cursor,
     shell: &mut Shell<'_, Message>,
     state: &mut State,
     value: &mut T,
+    default: Option<T>,
     range: &RangeInclusive<T>,
     step: T,
+    shift_step: Option<T>,
     on_change: &dyn Fn(T) -> Message,
     on_release: &Option<Message>
 ) -> Status
where diff --git a/iced/widget/slider/struct.Slider.html b/iced/widget/slider/struct.Slider.html index ae56c6c1a12..12ec74e459b 100644 --- a/iced/widget/slider/struct.Slider.html +++ b/iced/widget/slider/struct.Slider.html @@ -1,4 +1,4 @@ -Slider in iced::widget::slider - Rust

Slider drawn by Coffee’s renderer

-

Implementations§

source§

impl<'a, T, Message, Theme> Slider<'a, T, Message, Theme>
where +

Implementations§

source§

impl<'a, T, Message, Theme> Slider<'a, T, Message, Theme>
where T: Copy + From<u8> + PartialOrd, Message: Clone, - Theme: StyleSheet,

source

pub const DEFAULT_HEIGHT: f32 = 22f32

The default height of a Slider.

-
source

pub fn new<F>( + Theme: StyleSheet,

source

pub const DEFAULT_HEIGHT: f32 = 22f32

The default height of a Slider.

+
source

pub fn new<F>( range: RangeInclusive<T>, value: T, on_change: F @@ -32,34 +32,41 @@

Example

It receives the new value of the Slider and must produce a Message. -
source

pub fn on_release(self, on_release: Message) -> Slider<'a, T, Message, Theme>

Sets the release message of the Slider. +

source

pub fn default(self, default: impl Into<T>) -> Slider<'a, T, Message, Theme>

Sets the optional default value for the Slider.

+

If set, the Slider will reset to this value when ctrl-clicked or command-clicked.

+
source

pub fn on_release(self, on_release: Message) -> Slider<'a, T, Message, Theme>

Sets the release message of the Slider. This is called when the mouse is released from the slider.

Typically, the user’s interaction with the slider is finished when this message is produced. This is useful if you need to spawn a long-running task from the slider’s result, where the default on_change message could create too many events.

-
source

pub fn width(self, width: impl Into<Length>) -> Slider<'a, T, Message, Theme>

Sets the width of the Slider.

-
source

pub fn height(self, height: impl Into<Pixels>) -> Slider<'a, T, Message, Theme>

Sets the height of the Slider.

-
source

pub fn style( +

source

pub fn width(self, width: impl Into<Length>) -> Slider<'a, T, Message, Theme>

Sets the width of the Slider.

+
source

pub fn height(self, height: impl Into<Pixels>) -> Slider<'a, T, Message, Theme>

Sets the height of the Slider.

+
source

pub fn style( self, style: impl Into<<Theme as StyleSheet>::Style> ) -> Slider<'a, T, Message, Theme>

Sets the style of the Slider.

-
source

pub fn step(self, step: impl Into<T>) -> Slider<'a, T, Message, Theme>

Sets the step size of the Slider.

-

Trait Implementations§

source§

impl<'a, T, Message, Theme, Renderer> From<Slider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
where +

source

pub fn step(self, step: impl Into<T>) -> Slider<'a, T, Message, Theme>

Sets the step size of the Slider.

+
source

pub fn shift_step( + self, + shift_step: impl Into<T> +) -> Slider<'a, T, Message, Theme>

Sets the optional “shift” step for the Slider.

+

If set, this value is used as the step while the shift key is pressed.

+

Trait Implementations§

source§

impl<'a, T, Message, Theme, Renderer> From<Slider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
where T: Copy + Into<f64> + FromPrimitive + 'a, Message: Clone + 'a, Theme: StyleSheet + 'a, - Renderer: Renderer + 'a,

source§

fn from( + Renderer: Renderer + 'a,

source§

fn from( slider: Slider<'a, T, Message, Theme> -) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for Slider<'a, T, Message, Theme>
where +) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for Slider<'a, T, Message, Theme>
where T: Copy + Into<f64> + FromPrimitive, Message: Clone, Theme: StyleSheet, - Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( + Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( &self, _tree: &mut Tree, _renderer: &Renderer, limits: &Limits -) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( +) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( &mut self, tree: &mut Tree, event: Event, @@ -69,7 +76,7 @@

Example

_clipboard: &mut dyn Clipboard, shell: &mut Shell<'_, Message>, _viewport: &Rectangle -) -> Status
Processes a runtime Event. Read more
source§

fn draw( +) -> Status

Processes a runtime Event. Read more
source§

fn draw( &self, tree: &Tree, renderer: &mut Renderer, @@ -78,7 +85,7 @@

Example

layout: Layout<'_>, cursor: Cursor, _viewport: &Rectangle -)
Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( +)

Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( &self, tree: &Tree, layout: Layout<'_>, diff --git a/iced/widget/slider/struct.State.html b/iced/widget/slider/struct.State.html index afc76c67a10..76b2e47594e 100644 --- a/iced/widget/slider/struct.State.html +++ b/iced/widget/slider/struct.State.html @@ -1,8 +1,8 @@ -State in iced::widget::slider - Rust

Struct iced::widget::slider::State

source ·
pub struct State { /* private fields */ }
Expand description

The local state of a Slider.

-

Implementations§

source§

impl State

source

pub fn new() -> State

Creates a new State.

-

Trait Implementations§

source§

impl Clone for State

source§

fn clone(&self) -> State

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for State

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for State

source§

fn default() -> State

Returns the “default value” for a type. Read more
source§

impl PartialEq for State

source§

fn eq(&self, other: &State) -> bool

This method tests for self and other values to be equal, and is used +State in iced::widget::slider - Rust

Struct iced::widget::slider::State

source ·
pub struct State { /* private fields */ }
Expand description

The local state of a Slider.

+

Implementations§

source§

impl State

source

pub fn new() -> State

Creates a new State.

+

Trait Implementations§

source§

impl Clone for State

source§

fn clone(&self) -> State

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for State

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for State

source§

fn default() -> State

Returns the “default value” for a type. Read more
source§

impl PartialEq for State

source§

fn eq(&self, other: &State) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Copy for State

source§

impl Eq for State

source§

impl StructuralEq for State

source§

impl StructuralPartialEq for State

Auto Trait Implementations§

§

impl RefUnwindSafe for State

§

impl Send for State

§

impl Sync for State

§

impl Unpin for State

§

impl UnwindSafe for State

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where +sufficient, and should not be overridden without very good reason.

source§

impl Copy for State

source§

impl Eq for State

source§

impl StructuralEq for State

source§

impl StructuralPartialEq for State

Auto Trait Implementations§

§

impl RefUnwindSafe for State

§

impl Send for State

§

impl Sync for State

§

impl Unpin for State

§

impl UnwindSafe for State

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Real + Zero + Arithmetics + Clone, Swp: WhitePoint<T>, Dwp: WhitePoint<T>, diff --git a/iced/widget/struct.Slider.html b/iced/widget/struct.Slider.html index 60bbd0dd4df..7b2fd4caadf 100644 --- a/iced/widget/struct.Slider.html +++ b/iced/widget/struct.Slider.html @@ -1,4 +1,4 @@ -Slider in iced::widget - Rust

Slider drawn by Coffee’s renderer

-

Implementations§

source§

impl<'a, T, Message, Theme> Slider<'a, T, Message, Theme>
where +

Implementations§

source§

impl<'a, T, Message, Theme> Slider<'a, T, Message, Theme>
where T: Copy + From<u8> + PartialOrd, Message: Clone, - Theme: StyleSheet,

source

pub const DEFAULT_HEIGHT: f32 = 22f32

The default height of a Slider.

-
source

pub fn new<F>( + Theme: StyleSheet,

source

pub const DEFAULT_HEIGHT: f32 = 22f32

The default height of a Slider.

+
source

pub fn new<F>( range: RangeInclusive<T>, value: T, on_change: F @@ -32,34 +32,41 @@

Example

It receives the new value of the Slider and must produce a Message. -
source

pub fn on_release(self, on_release: Message) -> Slider<'a, T, Message, Theme>

Sets the release message of the Slider. +

source

pub fn default(self, default: impl Into<T>) -> Slider<'a, T, Message, Theme>

Sets the optional default value for the Slider.

+

If set, the Slider will reset to this value when ctrl-clicked or command-clicked.

+
source

pub fn on_release(self, on_release: Message) -> Slider<'a, T, Message, Theme>

Sets the release message of the Slider. This is called when the mouse is released from the slider.

Typically, the user’s interaction with the slider is finished when this message is produced. This is useful if you need to spawn a long-running task from the slider’s result, where the default on_change message could create too many events.

-
source

pub fn width(self, width: impl Into<Length>) -> Slider<'a, T, Message, Theme>

Sets the width of the Slider.

-
source

pub fn height(self, height: impl Into<Pixels>) -> Slider<'a, T, Message, Theme>

Sets the height of the Slider.

-
source

pub fn style( +

source

pub fn width(self, width: impl Into<Length>) -> Slider<'a, T, Message, Theme>

Sets the width of the Slider.

+
source

pub fn height(self, height: impl Into<Pixels>) -> Slider<'a, T, Message, Theme>

Sets the height of the Slider.

+
source

pub fn style( self, style: impl Into<<Theme as StyleSheet>::Style> ) -> Slider<'a, T, Message, Theme>

Sets the style of the Slider.

-
source

pub fn step(self, step: impl Into<T>) -> Slider<'a, T, Message, Theme>

Sets the step size of the Slider.

-

Trait Implementations§

source§

impl<'a, T, Message, Theme, Renderer> From<Slider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
where +

source

pub fn step(self, step: impl Into<T>) -> Slider<'a, T, Message, Theme>

Sets the step size of the Slider.

+
source

pub fn shift_step( + self, + shift_step: impl Into<T> +) -> Slider<'a, T, Message, Theme>

Sets the optional “shift” step for the Slider.

+

If set, this value is used as the step while the shift key is pressed.

+

Trait Implementations§

source§

impl<'a, T, Message, Theme, Renderer> From<Slider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
where T: Copy + Into<f64> + FromPrimitive + 'a, Message: Clone + 'a, Theme: StyleSheet + 'a, - Renderer: Renderer + 'a,

source§

fn from( + Renderer: Renderer + 'a,

source§

fn from( slider: Slider<'a, T, Message, Theme> -) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for Slider<'a, T, Message, Theme>
where +) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for Slider<'a, T, Message, Theme>
where T: Copy + Into<f64> + FromPrimitive, Message: Clone, Theme: StyleSheet, - Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( + Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( &self, _tree: &mut Tree, _renderer: &Renderer, limits: &Limits -) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( +) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( &mut self, tree: &mut Tree, event: Event, @@ -69,7 +76,7 @@

Example

_clipboard: &mut dyn Clipboard, shell: &mut Shell<'_, Message>, _viewport: &Rectangle -) -> Status
Processes a runtime Event. Read more
source§

fn draw( +) -> Status

Processes a runtime Event. Read more
source§

fn draw( &self, tree: &Tree, renderer: &mut Renderer, @@ -78,7 +85,7 @@

Example

layout: Layout<'_>, cursor: Cursor, _viewport: &Rectangle -)
Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( +)

Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( &self, tree: &Tree, layout: Layout<'_>, diff --git a/iced/widget/struct.VerticalSlider.html b/iced/widget/struct.VerticalSlider.html index 6f8cf2b0302..afa3f06b42d 100644 --- a/iced/widget/struct.VerticalSlider.html +++ b/iced/widget/struct.VerticalSlider.html @@ -1,4 +1,4 @@ -VerticalSlider in iced::widget - Rust
-

Implementations§

source§

impl<'a, T, Message, Theme> VerticalSlider<'a, T, Message, Theme>
where +

Implementations§

source§

impl<'a, T, Message, Theme> VerticalSlider<'a, T, Message, Theme>
where T: Copy + From<u8> + PartialOrd, Message: Clone, - Theme: StyleSheet,

source

pub const DEFAULT_WIDTH: f32 = 22f32

The default width of a VerticalSlider.

-
source

pub fn new<F>( + Theme: StyleSheet,

source

pub const DEFAULT_WIDTH: f32 = 22f32

The default width of a VerticalSlider.

+
source

pub fn new<F>( range: RangeInclusive<T>, value: T, on_change: F @@ -31,7 +31,12 @@

Example

It receives the new value of the VerticalSlider and must produce a Message. -
source

pub fn on_release( +

source

pub fn default( + self, + default: impl Into<T> +) -> VerticalSlider<'a, T, Message, Theme>

Sets the optional default value for the VerticalSlider.

+

If set, the VerticalSlider will reset to this value when ctrl-clicked or command-clicked.

+
source

pub fn on_release( self, on_release: Message ) -> VerticalSlider<'a, T, Message, Theme>

Sets the release message of the VerticalSlider. @@ -39,35 +44,40 @@

Example

Typically, the user’s interaction with the slider is finished when this message is produced. This is useful if you need to spawn a long-running task from the slider’s result, where the default on_change message could create too many events.

-
source

pub fn width( +

source

pub fn width( self, width: impl Into<Pixels> ) -> VerticalSlider<'a, T, Message, Theme>

Sets the width of the VerticalSlider.

-
source

pub fn height( +

source

pub fn height( self, height: impl Into<Length> ) -> VerticalSlider<'a, T, Message, Theme>

Sets the height of the VerticalSlider.

-
source

pub fn style( +

source

pub fn style( self, style: impl Into<<Theme as StyleSheet>::Style> ) -> VerticalSlider<'a, T, Message, Theme>

Sets the style of the VerticalSlider.

-
source

pub fn step(self, step: T) -> VerticalSlider<'a, T, Message, Theme>

Sets the step size of the VerticalSlider.

-

Trait Implementations§

source§

impl<'a, T, Message, Theme, Renderer> From<VerticalSlider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
where +

source

pub fn step(self, step: T) -> VerticalSlider<'a, T, Message, Theme>

Sets the step size of the VerticalSlider.

+
source

pub fn shift_step( + self, + shift_step: impl Into<T> +) -> VerticalSlider<'a, T, Message, Theme>

Sets the optional “shift” step for the VerticalSlider.

+

If set, this value is used as the step while the shift key is pressed.

+

Trait Implementations§

source§

impl<'a, T, Message, Theme, Renderer> From<VerticalSlider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
where T: Copy + Into<f64> + FromPrimitive + 'a, Message: Clone + 'a, Theme: StyleSheet + 'a, - Renderer: Renderer + 'a,

source§

fn from( + Renderer: Renderer + 'a,

source§

fn from( slider: VerticalSlider<'a, T, Message, Theme> -) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for VerticalSlider<'a, T, Message, Theme>
where +) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for VerticalSlider<'a, T, Message, Theme>
where T: Copy + Into<f64> + FromPrimitive, Message: Clone, Theme: StyleSheet, - Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( + Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( &self, _tree: &mut Tree, _renderer: &Renderer, limits: &Limits -) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( +) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( &mut self, tree: &mut Tree, event: Event, @@ -77,7 +87,7 @@

Example

_clipboard: &mut dyn Clipboard, shell: &mut Shell<'_, Message>, _viewport: &Rectangle -) -> Status
Processes a runtime Event. Read more
source§

fn draw( +) -> Status

Processes a runtime Event. Read more
source§

fn draw( &self, tree: &Tree, renderer: &mut Renderer, @@ -86,7 +96,7 @@

Example

layout: Layout<'_>, cursor: Cursor, _viewport: &Rectangle -)
Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( +)

Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( &self, tree: &Tree, layout: Layout<'_>, diff --git a/iced/widget/vertical_slider/fn.draw.html b/iced/widget/vertical_slider/fn.draw.html index e6e0ac86ab2..8cfa8b261d8 100644 --- a/iced/widget/vertical_slider/fn.draw.html +++ b/iced/widget/vertical_slider/fn.draw.html @@ -1,4 +1,4 @@ -draw in iced::widget::vertical_slider - Rust

Function iced::widget::vertical_slider::draw

source ·
pub fn draw<T, Theme, Renderer>(
+draw in iced::widget::vertical_slider - Rust

Function iced::widget::vertical_slider::draw

source ·
pub fn draw<T, Theme, Renderer>(
     renderer: &mut Renderer,
     layout: Layout<'_>,
     cursor: Cursor,
diff --git a/iced/widget/vertical_slider/fn.mouse_interaction.html b/iced/widget/vertical_slider/fn.mouse_interaction.html
index 820e997c8af..4d072f6fe44 100644
--- a/iced/widget/vertical_slider/fn.mouse_interaction.html
+++ b/iced/widget/vertical_slider/fn.mouse_interaction.html
@@ -1,4 +1,4 @@
-mouse_interaction in iced::widget::vertical_slider - Rust
pub fn mouse_interaction(
+mouse_interaction in iced::widget::vertical_slider - Rust
pub fn mouse_interaction(
     layout: Layout<'_>,
     cursor: Cursor,
     state: &State
diff --git a/iced/widget/vertical_slider/fn.update.html b/iced/widget/vertical_slider/fn.update.html
index abcbce7aab9..b603dc5d97d 100644
--- a/iced/widget/vertical_slider/fn.update.html
+++ b/iced/widget/vertical_slider/fn.update.html
@@ -1,12 +1,14 @@
-update in iced::widget::vertical_slider - Rust
pub fn update<Message, T>(
+update in iced::widget::vertical_slider - Rust
pub fn update<Message, T>(
     event: Event,
     layout: Layout<'_>,
     cursor: Cursor,
     shell: &mut Shell<'_, Message>,
     state: &mut State,
     value: &mut T,
+    default: Option<T>,
     range: &RangeInclusive<T>,
     step: T,
+    shift_step: Option<T>,
     on_change: &dyn Fn(T) -> Message,
     on_release: &Option<Message>
 ) -> Status
where diff --git a/iced/widget/vertical_slider/struct.State.html b/iced/widget/vertical_slider/struct.State.html index 0863eb585ff..b58713cd74f 100644 --- a/iced/widget/vertical_slider/struct.State.html +++ b/iced/widget/vertical_slider/struct.State.html @@ -1,8 +1,8 @@ -State in iced::widget::vertical_slider - Rust
pub struct State { /* private fields */ }
Expand description

The local state of a VerticalSlider.

-

Implementations§

source§

impl State

source

pub fn new() -> State

Creates a new State.

-

Trait Implementations§

source§

impl Clone for State

source§

fn clone(&self) -> State

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for State

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for State

source§

fn default() -> State

Returns the “default value” for a type. Read more
source§

impl PartialEq for State

source§

fn eq(&self, other: &State) -> bool

This method tests for self and other values to be equal, and is used +State in iced::widget::vertical_slider - Rust
pub struct State { /* private fields */ }
Expand description

The local state of a VerticalSlider.

+

Implementations§

source§

impl State

source

pub fn new() -> State

Creates a new State.

+

Trait Implementations§

source§

impl Clone for State

source§

fn clone(&self) -> State

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for State

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for State

source§

fn default() -> State

Returns the “default value” for a type. Read more
source§

impl PartialEq for State

source§

fn eq(&self, other: &State) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Copy for State

source§

impl Eq for State

source§

impl StructuralEq for State

source§

impl StructuralPartialEq for State

Auto Trait Implementations§

§

impl RefUnwindSafe for State

§

impl Send for State

§

impl Sync for State

§

impl Unpin for State

§

impl UnwindSafe for State

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where +sufficient, and should not be overridden without very good reason.

source§

impl Copy for State

source§

impl Eq for State

source§

impl StructuralEq for State

source§

impl StructuralPartialEq for State

Auto Trait Implementations§

§

impl RefUnwindSafe for State

§

impl Send for State

§

impl Sync for State

§

impl Unpin for State

§

impl UnwindSafe for State

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Real + Zero + Arithmetics + Clone, Swp: WhitePoint<T>, Dwp: WhitePoint<T>, diff --git a/iced/widget/vertical_slider/struct.VerticalSlider.html b/iced/widget/vertical_slider/struct.VerticalSlider.html index cbe49f4595f..c4c824442fc 100644 --- a/iced/widget/vertical_slider/struct.VerticalSlider.html +++ b/iced/widget/vertical_slider/struct.VerticalSlider.html @@ -1,4 +1,4 @@ -VerticalSlider in iced::widget::vertical_slider - Rust
-

Implementations§

source§

impl<'a, T, Message, Theme> VerticalSlider<'a, T, Message, Theme>
where +

Implementations§

source§

impl<'a, T, Message, Theme> VerticalSlider<'a, T, Message, Theme>
where T: Copy + From<u8> + PartialOrd, Message: Clone, - Theme: StyleSheet,

source

pub const DEFAULT_WIDTH: f32 = 22f32

The default width of a VerticalSlider.

-
source

pub fn new<F>( + Theme: StyleSheet,

source

pub const DEFAULT_WIDTH: f32 = 22f32

The default width of a VerticalSlider.

+
source

pub fn new<F>( range: RangeInclusive<T>, value: T, on_change: F @@ -31,7 +31,12 @@

Example

It receives the new value of the VerticalSlider and must produce a Message. -
source

pub fn on_release( +

source

pub fn default( + self, + default: impl Into<T> +) -> VerticalSlider<'a, T, Message, Theme>

Sets the optional default value for the VerticalSlider.

+

If set, the VerticalSlider will reset to this value when ctrl-clicked or command-clicked.

+
source

pub fn on_release( self, on_release: Message ) -> VerticalSlider<'a, T, Message, Theme>

Sets the release message of the VerticalSlider. @@ -39,35 +44,40 @@

Example

Typically, the user’s interaction with the slider is finished when this message is produced. This is useful if you need to spawn a long-running task from the slider’s result, where the default on_change message could create too many events.

-
source

pub fn width( +

source

pub fn width( self, width: impl Into<Pixels> ) -> VerticalSlider<'a, T, Message, Theme>

Sets the width of the VerticalSlider.

-
source

pub fn height( +

source

pub fn height( self, height: impl Into<Length> ) -> VerticalSlider<'a, T, Message, Theme>

Sets the height of the VerticalSlider.

-
source

pub fn style( +

source

pub fn style( self, style: impl Into<<Theme as StyleSheet>::Style> ) -> VerticalSlider<'a, T, Message, Theme>

Sets the style of the VerticalSlider.

-
source

pub fn step(self, step: T) -> VerticalSlider<'a, T, Message, Theme>

Sets the step size of the VerticalSlider.

-

Trait Implementations§

source§

impl<'a, T, Message, Theme, Renderer> From<VerticalSlider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
where +

source

pub fn step(self, step: T) -> VerticalSlider<'a, T, Message, Theme>

Sets the step size of the VerticalSlider.

+
source

pub fn shift_step( + self, + shift_step: impl Into<T> +) -> VerticalSlider<'a, T, Message, Theme>

Sets the optional “shift” step for the VerticalSlider.

+

If set, this value is used as the step while the shift key is pressed.

+

Trait Implementations§

source§

impl<'a, T, Message, Theme, Renderer> From<VerticalSlider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
where T: Copy + Into<f64> + FromPrimitive + 'a, Message: Clone + 'a, Theme: StyleSheet + 'a, - Renderer: Renderer + 'a,

source§

fn from( + Renderer: Renderer + 'a,

source§

fn from( slider: VerticalSlider<'a, T, Message, Theme> -) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for VerticalSlider<'a, T, Message, Theme>
where +) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for VerticalSlider<'a, T, Message, Theme>
where T: Copy + Into<f64> + FromPrimitive, Message: Clone, Theme: StyleSheet, - Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( + Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( &self, _tree: &mut Tree, _renderer: &Renderer, limits: &Limits -) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( +) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( &mut self, tree: &mut Tree, event: Event, @@ -77,7 +87,7 @@

Example

_clipboard: &mut dyn Clipboard, shell: &mut Shell<'_, Message>, _viewport: &Rectangle -) -> Status
Processes a runtime Event. Read more
source§

fn draw( +) -> Status

Processes a runtime Event. Read more
source§

fn draw( &self, tree: &Tree, renderer: &mut Renderer, @@ -86,7 +96,7 @@

Example

layout: Layout<'_>, cursor: Cursor, _viewport: &Rectangle -)
Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( +)

Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( &self, tree: &Tree, layout: Layout<'_>, diff --git a/iced_widget/slider/fn.draw.html b/iced_widget/slider/fn.draw.html index 6bd7053730a..65f249f9f6b 100644 --- a/iced_widget/slider/fn.draw.html +++ b/iced_widget/slider/fn.draw.html @@ -1,4 +1,4 @@ -draw in iced_widget::slider - Rust

Function iced_widget::slider::draw

source ·
pub fn draw<T, Theme, Renderer>(
+draw in iced_widget::slider - Rust

Function iced_widget::slider::draw

source ·
pub fn draw<T, Theme, Renderer>(
     renderer: &mut Renderer,
     layout: Layout<'_>,
     cursor: Cursor,
diff --git a/iced_widget/slider/fn.mouse_interaction.html b/iced_widget/slider/fn.mouse_interaction.html
index 972a700f0ef..904bed79c90 100644
--- a/iced_widget/slider/fn.mouse_interaction.html
+++ b/iced_widget/slider/fn.mouse_interaction.html
@@ -1,4 +1,4 @@
-mouse_interaction in iced_widget::slider - Rust
pub fn mouse_interaction(
+mouse_interaction in iced_widget::slider - Rust
pub fn mouse_interaction(
     layout: Layout<'_>,
     cursor: Cursor,
     state: &State
diff --git a/iced_widget/slider/fn.update.html b/iced_widget/slider/fn.update.html
index 8578672f80f..1433ed4e4ab 100644
--- a/iced_widget/slider/fn.update.html
+++ b/iced_widget/slider/fn.update.html
@@ -1,12 +1,14 @@
-update in iced_widget::slider - Rust

Function iced_widget::slider::update

source ·
pub fn update<Message, T>(
+update in iced_widget::slider - Rust

Function iced_widget::slider::update

source ·
pub fn update<Message, T>(
     event: Event,
     layout: Layout<'_>,
     cursor: Cursor,
     shell: &mut Shell<'_, Message>,
     state: &mut State,
     value: &mut T,
+    default: Option<T>,
     range: &RangeInclusive<T>,
     step: T,
+    shift_step: Option<T>,
     on_change: &dyn Fn(T) -> Message,
     on_release: &Option<Message>
 ) -> Status
where diff --git a/iced_widget/slider/index.html b/iced_widget/slider/index.html index 95f53a3031b..370d46f5117 100644 --- a/iced_widget/slider/index.html +++ b/iced_widget/slider/index.html @@ -1,4 +1,4 @@ -iced_widget::slider - Rust

Module iced_widget::slider

source ·
Expand description

Display an interactive selector of a single value from a range of values.

+iced_widget::slider - Rust

Module iced_widget::slider

source ·
Expand description

Display an interactive selector of a single value from a range of values.

A Slider has some local State.

Structs

  • The appearance of a slider.
  • The appearance of the handle of a slider.
  • The appearance of a slider rail
  • An horizontal bar and a handle that selects a single value from a range of values.
  • The local state of a Slider.

Enums

Traits

  • A set of rules that dictate the style of a slider.

Functions

Implementations§

source§

impl<'a, T, Message, Theme> Slider<'a, T, Message, Theme>
where +

Implementations§

source§

impl<'a, T, Message, Theme> Slider<'a, T, Message, Theme>
where T: Copy + From<u8> + PartialOrd, Message: Clone, - Theme: StyleSheet,

source

pub const DEFAULT_HEIGHT: f32 = 22f32

The default height of a Slider.

-
source

pub fn new<F>(range: RangeInclusive<T>, value: T, on_change: F) -> Self
where + Theme: StyleSheet,

source

pub const DEFAULT_HEIGHT: f32 = 22f32

The default height of a Slider.

+
source

pub fn new<F>(range: RangeInclusive<T>, value: T, on_change: F) -> Self
where F: 'a + Fn(T) -> Message,

Creates a new Slider.

It expects:

    @@ -28,31 +28,35 @@

    Example

    It receives the new value of the Slider and must produce a Message.
-
source

pub fn on_release(self, on_release: Message) -> Self

Sets the release message of the Slider. +

source

pub fn default(self, default: impl Into<T>) -> Self

Sets the optional default value for the Slider.

+

If set, the Slider will reset to this value when ctrl-clicked or command-clicked.

+
source

pub fn on_release(self, on_release: Message) -> Self

Sets the release message of the Slider. This is called when the mouse is released from the slider.

Typically, the user’s interaction with the slider is finished when this message is produced. This is useful if you need to spawn a long-running task from the slider’s result, where the default on_change message could create too many events.

-
source

pub fn width(self, width: impl Into<Length>) -> Self

Sets the width of the Slider.

-
source

pub fn height(self, height: impl Into<Pixels>) -> Self

Sets the height of the Slider.

-
source

pub fn style(self, style: impl Into<Theme::Style>) -> Self

Sets the style of the Slider.

-
source

pub fn step(self, step: impl Into<T>) -> Self

Sets the step size of the Slider.

-

Trait Implementations§

source§

impl<'a, T, Message, Theme, Renderer> From<Slider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
where +

source

pub fn width(self, width: impl Into<Length>) -> Self

Sets the width of the Slider.

+
source

pub fn height(self, height: impl Into<Pixels>) -> Self

Sets the height of the Slider.

+
source

pub fn style(self, style: impl Into<Theme::Style>) -> Self

Sets the style of the Slider.

+
source

pub fn step(self, step: impl Into<T>) -> Self

Sets the step size of the Slider.

+
source

pub fn shift_step(self, shift_step: impl Into<T>) -> Self

Sets the optional “shift” step for the Slider.

+

If set, this value is used as the step while the shift key is pressed.

+

Trait Implementations§

source§

impl<'a, T, Message, Theme, Renderer> From<Slider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
where T: Copy + Into<f64> + FromPrimitive + 'a, Message: Clone + 'a, Theme: StyleSheet + 'a, - Renderer: Renderer + 'a,

source§

fn from( + Renderer: Renderer + 'a,

source§

fn from( slider: Slider<'a, T, Message, Theme> -) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for Slider<'a, T, Message, Theme>
where +) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for Slider<'a, T, Message, Theme>
where T: Copy + Into<f64> + FromPrimitive, Message: Clone, Theme: StyleSheet, - Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( + Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( &self, _tree: &mut Tree, _renderer: &Renderer, limits: &Limits -) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( +) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( &mut self, tree: &mut Tree, event: Event, @@ -62,7 +66,7 @@

Example

_clipboard: &mut dyn Clipboard, shell: &mut Shell<'_, Message>, _viewport: &Rectangle -) -> Status
Processes a runtime Event. Read more
source§

fn draw( +) -> Status

Processes a runtime Event. Read more
source§

fn draw( &self, tree: &Tree, renderer: &mut Renderer, @@ -71,7 +75,7 @@

Example

layout: Layout<'_>, cursor: Cursor, _viewport: &Rectangle -)
Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( +)

Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( &self, tree: &Tree, layout: Layout<'_>, diff --git a/iced_widget/slider/struct.State.html b/iced_widget/slider/struct.State.html index 817ef486897..e724b95e693 100644 --- a/iced_widget/slider/struct.State.html +++ b/iced_widget/slider/struct.State.html @@ -1,8 +1,8 @@ -State in iced_widget::slider - Rust

Struct iced_widget::slider::State

source ·
pub struct State { /* private fields */ }
Expand description

The local state of a Slider.

-

Implementations§

source§

impl State

source

pub fn new() -> State

Creates a new State.

-

Trait Implementations§

source§

impl Clone for State

source§

fn clone(&self) -> State

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for State

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for State

source§

fn default() -> State

Returns the “default value” for a type. Read more
source§

impl PartialEq for State

source§

fn eq(&self, other: &State) -> bool

This method tests for self and other values to be equal, and is used +State in iced_widget::slider - Rust

Struct iced_widget::slider::State

source ·
pub struct State { /* private fields */ }
Expand description

The local state of a Slider.

+

Implementations§

source§

impl State

source

pub fn new() -> State

Creates a new State.

+

Trait Implementations§

source§

impl Clone for State

source§

fn clone(&self) -> State

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for State

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for State

source§

fn default() -> State

Returns the “default value” for a type. Read more
source§

impl PartialEq for State

source§

fn eq(&self, other: &State) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Copy for State

source§

impl Eq for State

source§

impl StructuralEq for State

source§

impl StructuralPartialEq for State

Auto Trait Implementations§

§

impl RefUnwindSafe for State

§

impl Send for State

§

impl Sync for State

§

impl Unpin for State

§

impl UnwindSafe for State

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where +sufficient, and should not be overridden without very good reason.

source§

impl Copy for State

source§

impl Eq for State

source§

impl StructuralEq for State

source§

impl StructuralPartialEq for State

Auto Trait Implementations§

§

impl RefUnwindSafe for State

§

impl Send for State

§

impl Sync for State

§

impl Unpin for State

§

impl UnwindSafe for State

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Real + Zero + Arithmetics + Clone, Swp: WhitePoint<T>, Dwp: WhitePoint<T>, diff --git a/iced_widget/vertical_slider/fn.draw.html b/iced_widget/vertical_slider/fn.draw.html index 73814e5f458..50b9733223f 100644 --- a/iced_widget/vertical_slider/fn.draw.html +++ b/iced_widget/vertical_slider/fn.draw.html @@ -1,4 +1,4 @@ -draw in iced_widget::vertical_slider - Rust
pub fn draw<T, Theme, Renderer>(
+draw in iced_widget::vertical_slider - Rust
pub fn draw<T, Theme, Renderer>(
     renderer: &mut Renderer,
     layout: Layout<'_>,
     cursor: Cursor,
diff --git a/iced_widget/vertical_slider/fn.mouse_interaction.html b/iced_widget/vertical_slider/fn.mouse_interaction.html
index 54f9bf83b54..3ec4df2e4e0 100644
--- a/iced_widget/vertical_slider/fn.mouse_interaction.html
+++ b/iced_widget/vertical_slider/fn.mouse_interaction.html
@@ -1,4 +1,4 @@
-mouse_interaction in iced_widget::vertical_slider - Rust
pub fn mouse_interaction(
+mouse_interaction in iced_widget::vertical_slider - Rust
pub fn mouse_interaction(
     layout: Layout<'_>,
     cursor: Cursor,
     state: &State
diff --git a/iced_widget/vertical_slider/fn.update.html b/iced_widget/vertical_slider/fn.update.html
index 9ef5336fd61..7734581f9d2 100644
--- a/iced_widget/vertical_slider/fn.update.html
+++ b/iced_widget/vertical_slider/fn.update.html
@@ -1,12 +1,14 @@
-update in iced_widget::vertical_slider - Rust
pub fn update<Message, T>(
+update in iced_widget::vertical_slider - Rust
pub fn update<Message, T>(
     event: Event,
     layout: Layout<'_>,
     cursor: Cursor,
     shell: &mut Shell<'_, Message>,
     state: &mut State,
     value: &mut T,
+    default: Option<T>,
     range: &RangeInclusive<T>,
     step: T,
+    shift_step: Option<T>,
     on_change: &dyn Fn(T) -> Message,
     on_release: &Option<Message>
 ) -> Status
where diff --git a/iced_widget/vertical_slider/index.html b/iced_widget/vertical_slider/index.html index d334cf1b64e..d549fc08745 100644 --- a/iced_widget/vertical_slider/index.html +++ b/iced_widget/vertical_slider/index.html @@ -1,4 +1,4 @@ -iced_widget::vertical_slider - Rust
Expand description

Display an interactive selector of a single value from a range of values.

+iced_widget::vertical_slider - Rust
Expand description

Display an interactive selector of a single value from a range of values.

A VerticalSlider has some local State.

Structs

Enums

Traits

  • A set of rules that dictate the style of a slider.

Functions

source§

fn from( slider: VerticalSlider<'a, T, Message, Theme> -) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for VerticalSlider<'a, T, Message, Theme>
where +) -> Element<'a, Message, Theme, Renderer>

Converts to this type from the input type.
source§

impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer> for VerticalSlider<'a, T, Message, Theme>
where T: Copy + Into<f64> + FromPrimitive, Message: Clone, Theme: StyleSheet, - Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( + Renderer: Renderer,

source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
source§

fn state(&self) -> State

Returns the State of the Widget.
source§

fn size(&self) -> Size<Length>

Returns the Size of the Widget in lengths.
source§

fn layout( &self, _tree: &mut Tree, _renderer: &Renderer, limits: &Limits -) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( +) -> Node

Returns the layout::Node of the Widget. Read more
source§

fn on_event( &mut self, tree: &mut Tree, event: Event, @@ -61,7 +65,7 @@

Example

_clipboard: &mut dyn Clipboard, shell: &mut Shell<'_, Message>, _viewport: &Rectangle -) -> Status
Processes a runtime Event. Read more
source§

fn draw( +) -> Status

Processes a runtime Event. Read more
source§

fn draw( &self, tree: &Tree, renderer: &mut Renderer, @@ -70,7 +74,7 @@

Example

layout: Layout<'_>, cursor: Cursor, _viewport: &Rectangle -)
Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( +)

Draws the Widget using the associated Renderer.
source§

fn mouse_interaction( &self, tree: &Tree, layout: Layout<'_>, diff --git a/iced_winit/application/fn.run.html b/iced_winit/application/fn.run.html index c121d0977b2..755de505ea5 100644 --- a/iced_winit/application/fn.run.html +++ b/iced_winit/application/fn.run.html @@ -3,7 +3,7 @@ compositor_settings: C::Settings ) -> Result<(), Error>
where A: Application + 'static, - E: Executor + 'static, + E: Executor + 'static, C: Compositor<Renderer = A::Renderer> + 'static, A::Theme: StyleSheet,
Available on crate feature application only.
Expand description

Runs an Application with an executor, compositor, and the provided settings.

diff --git a/iced_winit/application/fn.run_command.html b/iced_winit/application/fn.run_command.html index 1ba7788c1ef..0e10520930f 100644 --- a/iced_winit/application/fn.run_command.html +++ b/iced_winit/application/fn.run_command.html @@ -6,7 +6,7 @@ state: &State<A>, renderer: &mut A::Renderer, command: Command<A::Message>, - runtime: &mut Runtime<E, Proxy<A::Message>, A::Message>, + runtime: &mut Runtime<E, Proxy<A::Message>, A::Message>, clipboard: &mut Clipboard, should_exit: &mut bool, proxy: &mut EventLoopProxy<A::Message>, @@ -14,7 +14,7 @@ window: &Window )
where A: Application, - E: Executor, + E: Executor, C: Compositor<Renderer = A::Renderer> + 'static, A::Theme: StyleSheet,
Available on crate feature application only.
Expand description

Runs the actions of a Command.

\ No newline at end of file diff --git a/iced_winit/application/fn.update.html b/iced_winit/application/fn.update.html index 42386480710..02ca6751b09 100644 --- a/iced_winit/application/fn.update.html +++ b/iced_winit/application/fn.update.html @@ -1,11 +1,11 @@ -update in iced_winit::application - Rust

Function iced_winit::application::update

source ·
pub fn update<A: Application, C, E: Executor>(
+update in iced_winit::application - Rust

Function iced_winit::application::update

source ·
pub fn update<A: Application, C, E: Executor>(
     application: &mut A,
     compositor: &mut C,
     surface: &mut C::Surface,
     cache: &mut Cache,
     state: &mut State<A>,
     renderer: &mut A::Renderer,
-    runtime: &mut Runtime<E, Proxy<A::Message>, A::Message>,
+    runtime: &mut Runtime<E, Proxy<A::Message>, A::Message>,
     clipboard: &mut Clipboard,
     should_exit: &mut bool,
     proxy: &mut EventLoopProxy<A::Message>,
@@ -15,5 +15,5 @@
 )
where C: Compositor<Renderer = A::Renderer> + 'static, A::Theme: StyleSheet,
Available on crate feature application only.
Expand description

Updates an Application by feeding it the provided messages, spawning any -resulting Command, and tracking its [Subscription].

+resulting Command, and tracking its Subscription.

\ No newline at end of file diff --git a/iced_winit/application/index.html b/iced_winit/application/index.html index 3740b46901c..1dbb4675ab0 100644 --- a/iced_winit/application/index.html +++ b/iced_winit/application/index.html @@ -3,4 +3,4 @@ Debug information accordingly.
  • Returns true if the provided event should cause an Application to exit.
  • Runs an Application with an executor, compositor, and the provided settings.
  • Runs the actions of a Command.
  • Updates an Application by feeding it the provided messages, spawning any -resulting Command, and tracking its [Subscription].
  • \ No newline at end of file +resulting Command, and tracking its Subscription. \ No newline at end of file diff --git a/iced_winit/application/struct.State.html b/iced_winit/application/struct.State.html index f5576729ff4..61508f54e43 100644 --- a/iced_winit/application/struct.State.html +++ b/iced_winit/application/struct.State.html @@ -79,6 +79,6 @@ C: FromUints<U>,
    source§

    fn uints_into(self) -> C

    Cast this collection of unsigned integers into a collection of colors.
    §

    impl<T> WithSubscriber for T

    §

    fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
    where S: Into<Dispatch>,

    Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
    §

    fn with_current_subscriber(self) -> WithDispatch<Self>

    Attaches the current default Subscriber to this type, returning a -[WithDispatch] wrapper. Read more
    §

    impl<T> MaybeSend for T
    where - T: Send,

    §

    impl<T> MaybeSync for T
    where +[WithDispatch] wrapper. Read more
    source§

    impl<T> MaybeSend for T
    where + T: Send,

    source§

    impl<T> MaybeSync for T
    where T: Sync,

    \ No newline at end of file diff --git a/iced_winit/application/trait.Application.html b/iced_winit/application/trait.Application.html index 89e39c1453f..e4d7402c46f 100644 --- a/iced_winit/application/trait.Application.html +++ b/iced_winit/application/trait.Application.html @@ -9,7 +9,7 @@ // Provided methods fn style(&self) -> <Self::Theme as StyleSheet>::Style { ... } - fn subscription(&self) -> Subscription<Self::Message> { ... } + fn subscription(&self) -> Subscription<Self::Message> { ... } fn scale_factor(&self) -> f64 { ... } }
    Available on crate feature application only.
    Expand description

    An interactive, native cross-platform application.

    This trait is the main entrypoint of Iced. Once implemented, you can run @@ -31,7 +31,7 @@ title of your application when necessary.

    source

    fn theme(&self) -> Self::Theme

    Returns the current Theme of the Application.

    Provided Methods§

    source

    fn style(&self) -> <Self::Theme as StyleSheet>::Style

    Returns the Style variation of the Theme.

    -
    source

    fn subscription(&self) -> Subscription<Self::Message>

    Returns the event Subscription for the current state of the +

    source

    fn subscription(&self) -> Subscription<Self::Message>

    Returns the event Subscription for the current state of the application.

    The messages produced by the Subscription will be handled by update.

    diff --git a/iced_winit/enum.Error.html b/iced_winit/enum.Error.html index 3d7d68d5d26..04e09413c25 100644 --- a/iced_winit/enum.Error.html +++ b/iced_winit/enum.Error.html @@ -53,6 +53,6 @@ C: FromUints<U>,
    source§

    fn uints_into(self) -> C

    Cast this collection of unsigned integers into a collection of colors.
    §

    impl<T> WithSubscriber for T

    §

    fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
    where S: Into<Dispatch>,

    Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
    §

    fn with_current_subscriber(self) -> WithDispatch<Self>

    Attaches the current default Subscriber to this type, returning a -[WithDispatch] wrapper. Read more
    §

    impl<T> MaybeSend for T
    where - T: Send,

    §

    impl<T> MaybeSync for T
    where +[WithDispatch] wrapper. Read more

    source§

    impl<T> MaybeSend for T
    where + T: Send,

    source§

    impl<T> MaybeSync for T
    where T: Sync,

    \ No newline at end of file diff --git a/iced_winit/index.html b/iced_winit/index.html index 2774119e5d9..1e981b7e5bf 100644 --- a/iced_winit/index.html +++ b/iced_winit/index.html @@ -7,4 +7,4 @@ and then run with a simple call. The use of this trait is optional.

    Additionally, a conversion module is available for users that decide to implement a custom event loop.

    -

    Re-exports

    Modules

    Structs

    Enums

    \ No newline at end of file +

    Re-exports

    Modules

    Structs

    Enums

    \ No newline at end of file diff --git a/iced_winit/multi_window/fn.run.html b/iced_winit/multi_window/fn.run.html index baca71e05c4..a2413a77339 100644 --- a/iced_winit/multi_window/fn.run.html +++ b/iced_winit/multi_window/fn.run.html @@ -3,7 +3,7 @@ compositor_settings: C::Settings ) -> Result<(), Error>
    where A: Application + 'static, - E: Executor + 'static, + E: Executor + 'static, C: Compositor<Renderer = A::Renderer> + 'static, A::Theme: StyleSheet,
    Available on crate feature multi-window only.
    Expand description

    Runs an Application with an executor, compositor, and the provided settings.

    diff --git a/iced_winit/multi_window/struct.State.html b/iced_winit/multi_window/struct.State.html index b900744a02e..4bf3da1ee51 100644 --- a/iced_winit/multi_window/struct.State.html +++ b/iced_winit/multi_window/struct.State.html @@ -74,6 +74,6 @@ C: FromUints<U>,
    source§

    fn uints_into(self) -> C

    Cast this collection of unsigned integers into a collection of colors.
    §

    impl<T> WithSubscriber for T

    §

    fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
    where S: Into<Dispatch>,

    Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
    §

    fn with_current_subscriber(self) -> WithDispatch<Self>

    Attaches the current default Subscriber to this type, returning a -[WithDispatch] wrapper. Read more
    §

    impl<T> MaybeSend for T
    where - T: Send,

    §

    impl<T> MaybeSync for T
    where +[WithDispatch] wrapper. Read more
    source§

    impl<T> MaybeSend for T
    where + T: Send,

    source§

    impl<T> MaybeSync for T
    where T: Sync,

    \ No newline at end of file diff --git a/iced_winit/multi_window/trait.Application.html b/iced_winit/multi_window/trait.Application.html index d80316e954b..b6d9a37caf7 100644 --- a/iced_winit/multi_window/trait.Application.html +++ b/iced_winit/multi_window/trait.Application.html @@ -9,7 +9,7 @@ // Provided methods fn style(&self) -> <Self::Theme as StyleSheet>::Style { ... } - fn subscription(&self) -> Subscription<Self::Message> { ... } + fn subscription(&self) -> Subscription<Self::Message> { ... } fn scale_factor(&self, window: Id) -> f64 { ... } }
    Available on crate feature multi-window only.
    Expand description

    An interactive, native, cross-platform, multi-windowed application.

    This trait is the main entrypoint of multi-window Iced. Once implemented, you can run @@ -31,7 +31,7 @@ title of your application when necessary.

    source

    fn theme(&self, window: Id) -> Self::Theme

    Returns the current Theme of the Application.

    Provided Methods§

    source

    fn style(&self) -> <Self::Theme as StyleSheet>::Style

    Returns the Style variation of the Theme.

    -
    source

    fn subscription(&self) -> Subscription<Self::Message>

    Returns the event Subscription for the current state of the +

    source

    fn subscription(&self) -> Subscription<Self::Message>

    Returns the event Subscription for the current state of the application.

    The messages produced by the Subscription will be handled by update.

    diff --git a/iced_winit/settings/struct.Settings.html b/iced_winit/settings/struct.Settings.html index 4a816ec9807..bbe8e70e2d3 100644 --- a/iced_winit/settings/struct.Settings.html +++ b/iced_winit/settings/struct.Settings.html @@ -63,6 +63,6 @@ C: FromUints<U>,
    source§

    fn uints_into(self) -> C

    Cast this collection of unsigned integers into a collection of colors.
    §

    impl<T> WithSubscriber for T

    §

    fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
    where S: Into<Dispatch>,

    Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
    §

    fn with_current_subscriber(self) -> WithDispatch<Self>

    Attaches the current default Subscriber to this type, returning a -[WithDispatch] wrapper. Read more
    §

    impl<T> MaybeSend for T
    where - T: Send,

    §

    impl<T> MaybeSync for T
    where +[WithDispatch] wrapper. Read more

    source§

    impl<T> MaybeSend for T
    where + T: Send,

    source§

    impl<T> MaybeSync for T
    where T: Sync,

    \ No newline at end of file diff --git a/iced_winit/struct.Proxy.html b/iced_winit/struct.Proxy.html index 94cff58c861..1639594c632 100644 --- a/iced_winit/struct.Proxy.html +++ b/iced_winit/struct.Proxy.html @@ -107,6 +107,6 @@ C: FromUints<U>,
    source§

    fn uints_into(self) -> C

    Cast this collection of unsigned integers into a collection of colors.
    §

    impl<T> WithSubscriber for T

    §

    fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
    where S: Into<Dispatch>,

    Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
    §

    fn with_current_subscriber(self) -> WithDispatch<Self>

    Attaches the current default Subscriber to this type, returning a -[WithDispatch] wrapper. Read more
    §

    impl<T> MaybeSend for T
    where - T: Send,

    §

    impl<T> MaybeSync for T
    where +[WithDispatch] wrapper. Read more
    source§

    impl<T> MaybeSend for T
    where + T: Send,

    source§

    impl<T> MaybeSync for T
    where T: Sync,

    \ No newline at end of file diff --git a/search-index.js b/search-index.js index 3855ef068e4..2a92415ffb6 100644 --- a/search-index.js +++ b/search-index.js @@ -1,5 +1,5 @@ var searchIndex = JSON.parse('{\ -"iced":{"doc":"Iced is a cross-platform GUI library focused on simplicity …","t":"TGETGFPFPFPGPPTPFIPPGGKPPPPPFGPPTPGPPTRPPTPTFFPFTFFGIKPEFPFPFTGPPTFTPPPTTTONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOQCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNEOCNNNNOOENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCONNNNNCNNNNNCMMNNNNNNNNOCNNNNNNNNNNOOONNNNNNNCNNNMONNONNNNNNNCCCNNCMNNNNNNNNNNNNNNNNNNNNNNNNNNOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNMOCNOOOCNNNNNNOOOOOOKFFKKFFKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNMNNNNNNNNONNNNNNNNNNNNNNMMNNNNMNNNNONNNNNNNNNNNNEOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCMMONCNNNNNNNNCNNNNMNCNNOMONNCCNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOCMNMMNFPGGFRPPPKPNNNNNNNNNNNNNNNNNNNNNNNNNNMNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOFFTFNNNNNNNNNNNNHNNNNNNNNNNNNHNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNHNNNNNNNNNNNNNNNNNNNNNGPPNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNPPGPPFPGPPPGPPPPGPPPPPPPPPPGPPPPNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOFPGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFKNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFKFNNNNNNNNNNNNNNNONNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNMNMNIRKMMPGFPKNNNNNNNNNNNNMNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNTPPPPTPGKRRRRRKGTRGPKRPKRPGFNNNNNNNNNNNNNNMOMNNNNMNNOMMNMMMNNNNNNNNCNNNNNMMMNNONNNNNNMMMCMMONNNNNNNNNNNNNNNNNNMMOMMNNMMMMOONNNNNNNNNNNNNNNNNNMMNMOMMGPPPGPGPPPPGPKPPRPPPPGPPPPPPPPPPPPPPNNNNNNNNNNNNNNMNNNNNNMMNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNMMMMNNNNNNNNNNNNNNNNNNMMOFRKRFRNNNNNNNNNNNNNNMNNNNNONNMNNNNNNNNNNNNNONNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNFKFFKNNNNNNNNNNNNNNNNNNNNNNONNNNNNNMNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNCNNNMNNNNNONNNOCNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNPKPKGKPKNNNNNNNNMNNNNNNNMCNNNNNNNNNNNNMHMMMHMCNMMCNNNNNNNNMNFKNNNNNNNNNNHNNNNNNNNNHNHMHHONNNNNNNNNNNNMNONNNNNNNMNFFKHMHMOOOOKHMHMHMHMPPFPGPGFRKFMOHHPPGFFNNNNNNNNNNNNNNONNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNNNNNGPPPPPGPPPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFKRRRRKRNMNNNNONNNNNNNNNNNNNNNNNNNNNNNMNNNNONMNNNNNNNNNMMFFNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNOHHFHPGPPGPPGPPGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNIKNMMPPPPGPPPPPGPFPPPPPPPPPPPPPPGGPPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOFGFPNNNNONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNTTTPGGPPTPGFPPPPTPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPGPPPGPPPGPPPPGPPPPPPPPPPGPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOKRRRRMNNNNNNNNNNMMMICFFFRKMOOOOOFNONNNNNNNNNNOONNNNONONNNONNNNNNNNNNNNNNNNNNONFHHHHFNNNNNNNNNNOONNNNHNNNNOONNNNNNNNNOOOOOONNNNNNNNNGPGGPGFPPPPPPPPPPPPPPPPPTPPPPPPPPPPPPPPPPPTPGFGGPPPPGGGGPPGPPGGPGGGGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFJJFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNOOOOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOFFTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGFPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOFFFFFKFPTTTTTTTPRFFPFFFFFFGFFFFFFFRFIFFGFPFFFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHCHNNNCHNNNNNNNNNNNNHQCHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNCNCHNCHNNCCHHHQCCHCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNNNNNNNNNNNNNNNNNNNNCHNCHCHNNNNNNNNNNNNNNCHCHCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNHCHHMNNNNNNNNNNNNNNNNNNNNNNNFFFRKMNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNOOONNNNNNNNNNNNNNNNNNHPPFFGFGGRGPPGFGPPPFKKPPPPRFGFPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNONCONNNONNOONOCNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNPGPPPGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFPPGPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNGFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNFFFNNCNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNNNNNFFNNNNNNNOONNNNNNNOONNNNNNNNNNNNNNOOOOONNNNNNNNNFIFKIPPPPPFPPPPPPFPGFGTTTIFPPPGGPPSPPPFFFFFIFFKKPPPPPPPGPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNMNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCONNNNCNNNNNNNMNNNNNNCCNNOOCMNNNNONNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOFKFFKRKFFNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNOOMNNNNNNNNNNNMNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNMNNNNNNNMNNNNNNMMNNNNNNMNMNMNMNMNMNMNNNNNNNNNNNNMNMNMNMNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFIFTTTTTTFFFTTTTIFITTKRIKIFTTTIIFITNONNNNNNNNNNNNNNMNNNNNNNNONNNMNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOCNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNMNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNOOOOOOONONNNNNNNNNNNNHONNCNNNOOOMNNNNNNNNNNNNNNHNNNNNNNNMNNNNNNNNNMNNNNNNNNNNNNONNNNOONMNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCMHONNONNNNNNNNNOOONNNNOONNNNNNNNNOOONNNNNFFFFNNNNNNNONNNNNONONNNNNNNNNNNNONOOOOOONNNNNNNNOOFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNOONNNNNONNNNNNNNNNNNNNONNNNNNNNFFFFFFFFFFFFFFFFFFFFFKFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNCNNNNNNNNNNNNNNNNNMNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOONNNNNNNNNOONNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNONNNNNNNNNNNNHHNNNNNNNNNNNONOMHNNNNONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNOHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNONNNOONNNNNNNNNOOOOOOOOONNNNNNNNNNNOOOOOOOOONNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNKMNMHHIIIIIIIIIIIIIIIIIIIIOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOKKKKKMMMMMFFFFNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNRKKMMMMNNMMMMMMMMMNNHHHHHHFFFKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIIIOOOOOOOOOOHOHHOOOOOOOIFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKKRKNNNNNNNNMMMMNMMMNNNMMMMMNMMMMMMMMMNNMMMMNNMNPPPGFGPPPPPFGOOOOOOOFFFRKMNNNNNNNNNNOONNNNNNNNONNNNNNNNNNNNNONNNNNNMONNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNFFNNNNNNNHNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNFFFRKNNMNNNNNNNNOONNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNNHNNGFFPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNFFNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFCFFFRKNNNMNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFGPPPGFGGPGKPGPPPPPFPGFPPPFPGFPPFPPFRKGFPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNHNNNNNNONNMONNNNONNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHONOOOOOOOOOOOOOGPPPFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNOOOOOOFPPGFPFFPRKMNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNHNNNNNNNNNNONNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOHHOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOOOFFRKNMNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPGGPPPPPPPPFPFPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFRKMNNNNNOOONNNNNNNONNNNNNMNNNNNNNNNONNNNNNNNNFPGPPPFRKNNMNNNNNNNNNNNNNNNNONNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNOFGPGTPPFFFTFFFPFRKPFNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNHNNNNNHNNNNONNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNOOOOOOGPPKRKPFRFPNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNTTTTTTTPFFPGPPPGGPPPPPPPPPPPPPPPPPPTTTTTTTTTPGFPPPPPPPPPPPPPPPPFFFFFFGGFGGFPFPPIPFFGIIFFFFTTTTTTTTTSSTTTTTPPPPFFFFFFIGPGFFFFFPPFPPPPPPPPPPTTTTTTTTPPPPPPPPFPFPFIGGPPPFFPPPGPIPPPPPPGGPPPPPPFTTTTTTTGFPPPGPPPPPPPPPPPPFPGPTTTPGPPPPPTTTTTTTFIFIFIFFFPPPGPFPFFPPPIPPFPPPPPGPPPTSTTTTTTTTTTTTPIGGGPPPPFTTTPPPPPPPTPPPPPPPPPPPPPFFFPPPPPPTTTTTTTSFFPFPPPPPPPGPGPGGFFGFTSSSFIGFFPPPPPPPPPPPPTTTTTTTTTPPPPFFIFFFFFFFFFPPIFFPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPTTTTTTTTTTTTTTFPPPGGFIGFFFGFPPPPPPPPPPPPPPPPPPPPPPPPFPGFPPGPGFPPPFFIGGGGFTTTTTTTTTTTTFPGIGGFFGFFPPFGPPPPPPTTTTPPPPPPPPPPPKPPPPPPPPTTTTTTTTSTTTPPPPPPFFGFGPPTTPPPPKKKPPKPPTTPPPONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNOOOOOONOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOONOOOOOOOOONNNNNOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOONNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOONNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNOONNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNOONNOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOQQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOONOOOOONNOOOOONNNOOOOOOOOOOOOOONOOOOOOOOOOOOOOOOOOOOOOONOOONNOOOONNNNOOOONNNNNNNNNNNNNNOOOONNOOOOOONNNNNNONNNNONNNNOOOONOOOONNNNOOOOONNNNNNNNNNNNNNNOONOOONOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNOOONNONNNOOOONOOOONOONNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNCOOQOOOOONNNOONNNOONNNNOOOOOOOOOOOOOOOOOOOOOOOOOISSSPIPCCCCCCQQQQQQQQQQQCCHCCCCCCCCCCFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFPGFFFFFFGIPPPPGPFGPGPPPFPPGGGPPPPPPPPPGPPPPPPPPPPPPPPPFPPPPPPPPPPPPFFPGPPPPPPPPPPPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONOOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPGPPFFPPPPPPPPPPPPPPPGPPPGFFGFFFGFPPGPGPPGPPPPPPPPPPPPGPPGPPPPPPPPGPIIIPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPFGPPPPGPPPPGFFIFFFPGFFFFFGGFPGPPPPPPPPPPPGPPGPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOCOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOONNNOOONNNOOOOOCOOOOONNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHIFPIGIFFFFGFFPPPPPFPPFFPPPGGPPSPFGPPPNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOCOOCOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPPPFPFPPGGPPFFPPGPPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOGFPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFKNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNONNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNOKTMMMMFFFNNNOONNNNNNNNNNNNOOOONNNNNNOOOONNNNOONNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIIISFIIIIIIIIIIIIIKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNMNNMNKKFFIRNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFGPFGFPFPFPPPPPPGPPPPPGIGFPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONHOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOTTSPPPPPPPPPPPPGPPPPFPPGPPPPPPPPPGPPTSFPPPPPPPGGPPFPPPPGPPPIPPPPPPPPPPGFPPPPPPPPPPPPPPPPPPGGPPPPPFPFPPPPPPPGPPTPTPIIIIPPPPPPPPPPPPPFPFPFPFPPPPPFPPPTPTPPGGPGPPPPPPPPGPPPPPTPPPPPPGPPPPFPPPPPPPPPGPPPPPPPPFPPPPPPPPPPPPGPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPFPPGPPPPPGFPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPTTPPGPPPGPFPGPGPPPPPPPPFFIFPPGPPPFGPPFPPPFGPGPPPPPPFGPPTTPPGPPFPPPPPPPGPPPPTPFPPPPPPPTPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOOOOONNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOONNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCONNNOOOONNOOOOOOOOONNNNNNNNNNNOONNONNNNNNNNNNNNNNNNNNNNNNNNNNOCNNOONNNONNNNNNNNNONNNONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCONONNNONNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOTTTTTTFTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNCNNNCNNNNNNNNNNNNNNTTTITTTTTPTTTTPPPGSTTFPTTTTPTTTPPTFFFFTTSSTTTFPPFGPFFONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNONONNONNONNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNOONOOOOFIPGGPPFFGPPPPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOGFIPGIFGPPPIPPPPFFPIFPPPPPPPPPPPPPPFNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONOOOCOONOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOGPGPPPGGPGPPFPPPPPPPPPPPPPNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNONNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTTPPPPPPPPPPPPPPFIPPPTPGPPPPPPPTTFPPTPPPPPPPPTPTPTTPPGPTPPPPPPPPPPPPPPPPPPPPPTPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPFPPPTPTPPPPPPPPPTPPPPTPPPPPPPPPPPPFPPTPFPPPPPPPPPPPPPPPPPPPTTPPPPPPPPTPPPPPPPTPPPPTPTPPPPPPPPTPPTPPPPPPPPTPTTTPPPPPPPPPPPPPPPPPPPPPPPPTPPTPTPPPPPPPPPPPTTPPPFFGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOHFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNCSFPPPPPFGPPFGPPPTFPPIPFTPPPPPPPFPPPPPGGPPPPPPPPPPPPPPPPPPPPFGFPPPTPGFPPTPPSPPPFGPTPPPPPPTPFPPGPPPNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNOOCNONNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOFGPPGGGPPPPPPPHNNNNNONNONNNNNNNHNNNNOOONNNNNNNNNNNNNNNNNNTPPPPPPTTPPPPTTTTTTTTGFPPPPPGPPPPGPGPPTTTGPPTTPPGPPPPPPPGFPTTPPPPGFFPGTTTPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPGTTPPPPPPPPPPPPPFPPPPPPPPPPPPPPTTPPTTTPPPTTTTTFPPPPPPGFTPPFFPPPPTGFFGTTPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNONNNNNNONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOTPPPPGFFPGGGPGPPPPPPPPPFPPPIGPPPPPPPPPPPPPPPPPPPPPFFPFFTFPPFFGPPPPPPPPFFFPTTPNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOONOOOONONNONNNNNOOOOOONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOPGPPPPPPPPPPGFPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNPPPPPPPFGIPIGFFFPGGGGPGGPFFPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPFIPKFFFGFPPTFGIGGFFGGPPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNMNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOONOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPGGPPGPPPGPPFFPPPPPPFPFFPPGIPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOPTTTRFFFGFFGGFFFFFFFKRFKFFTTTRFFRFFPRFFFFFFFPFTTTTTTTTTTTFFRKRFPFFRFFTTTTTFFKPPPRGITTPFTRIFFTTTTKRFFPTTIPPPTTSSSSSSTTTTTFITTPFPTTTFPPPTTTTTTTTGRFFFTSRKRTFFFRFPTTTTTTTTTTTTTRFGGRFPPKRFFGRTTRFFFFFFFRFPPTTTPJTFFOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONOCMMMMMOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOMOONNMOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOMNNNNNNNNNNNNNMMNMMMOOOOMMMMMMMMMMMMMMMOONOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOMMMMMMMMMMMMMMMONNNNNNNNNNNOOMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOCNNNNNNNNNNNOMMMOOMMOOOOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNOOOOOOOOOOOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNMMMCOONNNNNNNNNNNOOOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOONMNNOOOONOOOOOOOOOOONNNNNNNNNNNNOOOOOOMOOMMOOOOOOOOOOONNNNNNNNNNNMMOOOOOOOONNNNNNNNNNNMMMMMMMMMMOOOOOOONNNNOOOOOOMOOMONNNNNNNNNNNNNNNNNNNNNNMOMNNNNNNNNNNNOOOOOMOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOCOMOMOOSCHCCCCCCCCCSSSSSSSSSSSFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFFFFPFFFFFFPFFFPFGFNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNONNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOFFFFFFFFFFFFTTGPFFPFFFPFTFGFFFFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOPFPFPPFFFPPFFPPFFPPFFGKKKKPPPFFGGPPFFPPPFFPPPFFPFFPFPFFPFPPFFPPFFONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOMNMNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOMNFKFFFFPPKFGNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOMMNNNNNNNNNNNNNNNNNNNNNNNNNNMMMMNNNNNNNHNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNHNNONNNNNNNHHOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOHNHHNNMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONOOOFPFGFPFFRKMNNNNNNNNNNOOONNNNNNNNOONNNNNNNNNMHNNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNHOOOOFFFRKFNNMNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPFPGPGFRKINNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGFPPFPPPPPGPPPPPPGPPPPPPPPPRKFPPPMNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNOFFSFFPPGFRKFFMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNCNNNNNNNNNNNNNNNNNMMNNNNNNNHNNNNNNNNNNNNNNNNNNNHNNMNONNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNHHNNHNNHNNNNNNMNNNNNHNNNMOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHMFPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOGPGGPGFPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGFGGPPPPGGGGPPGPPGGPGGGGPOOCOOOFFJJFFFFFFOOOOOOOOOOOOOOOOOOOOOOOOOOOOFRKFMNNNNNOONNNNNNNNNNOONNNMNNNNNNNNNNNNNNNNNNPPPGPFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFPFGPFRKFMNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNMHNNNNNNNNNNNNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOOOGPPPPPPPPPPPPPGPPPPPPPPPPPPFFFPGTPPGPPPPPGGPPPPFPFPPPPPGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOHHHNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOHHHHHNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNCONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONOHOHHNNNOOHOHCHCOOHNNNNNNNNNNHHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOGFPPPNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNNNNGPFPNNNNNNNONNNNNNNNNNNNNNNNNNNONNNNNNNNNNFFNONNNNNNNNNONNNNNNNNNONNNNONNNNNNNNNOOOOOOONONNNNNNNNO","n":["ALL","Alignment","Application","BLACK","Background","Border","Center","Color","Color","Command","Contain","ContentFit","Cover","Custom","DEFAULT","Dark","Degrees","Element","End","Err","Error","Event","Executor","ExecutorCreationFailed","Fill","Fill","FillPortion","Fixed","Font","Gradient","Gradient","GraphicsCreationFailed","INFINITY","Keyboard","Length","Light","Linear","MONOSPACE","Message","Mouse","None","ORIGIN","Ok","PI","Padding","Pixels","PlatformSpecific","Point","RANGE","Radians","Rectangle","Renderer","Result","Sandbox","ScaleDown","Settings","Shadow","Shrink","Size","Start","Subscription","TRANSPARENT","Theme","TinySkia","Touch","UNIT","Vector","WHITE","Wgpu","Window","WindowCreationFailed","ZERO","ZERO","ZERO","a","actions","active","active","active","active","active","active","active","active","active","active_horizontal","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add","add","add","add","add_assign","advanced","alignment","appearance","appearance","appearance","appearance","appearance","appearance","appearance","application","area","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","b","batch","batch","blur_radius","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom","center","center_x","center_y","clear","clipboard","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","color","color","command","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","custom","custom_with_fn","default","default","default","default","default","default","default","default","default_font","default_size","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dimensions","dimensions","disabled","disabled","disabled","disabled_color","disabled_color","distance","div","div","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","dragging","dragging","dragging_horizontal","draw","draw","draw","draw_mesh","draw_pipeline_primitive","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","enter","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","event","executor","expand","expand","extended_palette","family","fill_editor","fill_factor","fill_paragraph","fill_quad","fill_text","fit","fit","fluid","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","focused","focused","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_f64","from_i64","from_linear_rgba","from_recipe","from_rgb","from_rgb8","from_rgba","from_rgba8","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_u64","futures","g","gradient","hash","hash","hash","hash","height","height","highlighter","horizontal","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered_horizontal","hovered_region","hovered_split","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","intersection","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_linear","into_recipes","into_rgba8","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","inverse","invert","is_fill","is_within","keyboard","left","load_font","map","map","max","min","mouse","mul","mul","mul","mul","mul_alpha","multi_window","new","new","new","new","new","new","new","new","none","none","offset","overlay","palette","partial_cmp","partial_cmp","partial_cmp","perform","picked_split","placeholder_color","placeholder_color","position","pressed","r","radius","right","run","run","run","scale_factor","scale_factor","selection_color","selection_color","settings","single","size","snap","spawn","stretch","style","style","style","sub","sub","sub","sub","sub","sub","sub_assign","subscription","system","theme","theme","theme","time","title","to_distance","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","top","touch","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","value_color","value_color","vertical","view","weight","widget","widget","width","width","width","window","with","with_layer","with_name","with_radius","with_size","with_translation","x","x","x","y","y","y","Clipboard","Hasher","Layout","Overlay","Renderer","Shell","Text","Widget","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","are_widgets_invalid","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds","bounds","children","children","clear","clone","clone","clone_into","clone_into","components_from","components_from","components_from","components_from","content","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","diff","downcast","downcast","downcast","downcast","draw","draw","drop","drop","drop","drop","fill_quad","finish","fmt","fmt","fmt","font","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","graphics","horizontal_alignment","image","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invalidate_layout","invalidate_widgets","is_empty","is_layout_invalid","is_over","layout","layout","layout","line_height","merge","mouse","mouse_interaction","mouse_interaction","new","new","on_event","on_event","operate","operate","overlay","overlay","overlay","position","publish","read","redraw_request","renderer","request_redraw","revalidate_layout","shaping","size","size","size_hint","state","subscription","svg","tag","text","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","vertical_alignment","widget","with_layer","with_offset","with_translation","write","write","Bytes","Bytes","Data","FilterMethod","Handle","Handle","Linear","Nearest","Path","Renderer","Rgba","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","as_ref","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","dimensions","downcast","downcast","draw","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","height","pixels","width","Layout","Limits","NONE","Node","adapt_into_using","adapt_into_using","align","align_mut","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","atomic","borrow","borrow","borrow_mut","borrow_mut","bounds","children","clone","clone","clone_into","clone_into","components_from","components_from","contained","container","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","flex","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","height","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","loose","max","max_height","max_width","min","min_height","min_width","move_to","move_to_mut","new","new","next_to_each_other","padded","positioned","resolve","shrink","size","sized","to_owned","to_owned","translate","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","with_children","Axis","Horizontal","Vertical","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","resolve","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Available","Back","Button","ButtonPressed","ButtonReleased","Click","Crosshair","Cursor","CursorEntered","CursorLeft","CursorMoved","Event","Forward","Grab","Grabbing","Idle","Interaction","Left","Lines","Middle","NotAllowed","Other","Pixels","Pointer","ResizingHorizontally","ResizingVertically","Right","ScrollDelta","Text","Unavailable","WheelScrolled","Working","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","click","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","kind","new","position","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","delta","position","x","x","y","y","Click","Double","Kind","Single","Triple","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Element","Group","Overlay","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","draw","draw","drop","drop","from","from","from","from_angle","from_angle","from_children","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_over","is_over","is_over","layout","layout","layout","map","mouse_interaction","mouse_interaction","mouse_interaction","new","new","on_event","on_event","on_event","operate","operate","operate","overlay","overlay","overlay","overlay","position","push","translate","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","with_children","Null","Quad","Renderer","Style","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","bounds","clear","clear","clone","clone","clone","clone_into","clone_into","clone_into","components_from","components_from","components_from","default","default","default","default_font","default_size","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","eq","eq","fill_editor","fill_paragraph","fill_quad","fill_quad","fill_text","fmt","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","load_font","new","shadow","text_color","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","with_layer","with_layer","with_translation","with_translation","EventStream","Output","Recipe","hash","stream","Bytes","Data","Handle","Path","Renderer","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","dimensions","downcast","draw","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","hash","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","ARROW_DOWN_ICON","Absolute","Advanced","Basic","Bounds","CHECKMARK_ICON","CharOffset","Difference","Editor","Editor","Font","Font","Font","Highlight","Highlighter","Hit","ICON_FONT","Iterator","LineHeight","None","Paragraph","Paragraph","Relative","Renderer","Settings","Shape","Shaping","Text","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","bounds","bounds","change_line","clone","clone","clone_into","clone_into","compare","components_from","components_from","content","current_line","cursor","cursor","cursor_position","default_font","default_size","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","editor","eq","eq","equivalent","equivalent","equivalent","fill_editor","fill_paragraph","fill_text","fmt","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","grapheme_position","highlight","highlight_line","highlighter","hit_test","horizontal_alignment","horizontal_alignment","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line","line_count","line_height","load_font","min_bounds","min_height","min_width","new","perform","resize","selection","shaping","size","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","update","update","vertical_alignment","vertical_alignment","with_text","with_text","Action","Backspace","Caret","Click","Cursor","Delete","Direction","DocumentEnd","DocumentStart","Down","Drag","Edit","Edit","Editor","End","Enter","Font","Home","Insert","Left","Left","Motion","Move","PageDown","PageUp","Paste","Right","Right","Scroll","Select","SelectLine","SelectWord","Selection","Up","WordLeft","WordRight","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","bounds","clone","clone","clone_into","clone_into","components_from","components_from","cursor","cursor_position","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","highlight","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line","line_count","perform","selection","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","with_text","lines","Format","Highlight","Highlighter","Iterator","PlainText","Settings","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","change_line","change_line","clone","clone","clone_into","clone_into","color","components_from","components_from","current_line","current_line","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","fmt","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","highlight_line","highlight_line","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","new","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","update","Id","Operation","Text","Tree","Widget","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","children","children","clone","clone","clone_into","clone_into","components_from","components_from","components_from","container","custom","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","diff","diff_children","diff_children_custom","downcast","downcast","downcast","draw","draw","drop","drop","drop","empty","eq","equivalent","equivalent","equivalent","finish","fmt","fmt","focusable","font","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hash","height","horizontal_alignment","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","line_height","mouse_interaction","new","new","new","on_event","operate","operation","overlay","scrollable","shaping","size","size","size","size_hint","state","state","state","style","tag","tag","tag","text","text_input","to_owned","to_owned","tree","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","unique","upcast","upcast","upcast","vertical_alignment","width","Chain","Focusable","None","Operation","Outcome","Scrollable","Some","TextInput","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","container","custom","deref","deref_mut","downcast","drop","finish","fmt","focus","focusable","focusable","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","is_focused","map","move_cursor_to","move_cursor_to_end","move_cursor_to_front","scope","scroll_to","scrollable","scrollable","select_all","snap_to","text_input","text_input","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","unfocus","upcast","Count","Focusable","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","count","default","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","find_focused","fmt","focus","focus","focus_next","focus_previous","focused","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","is_focused","to_owned","total","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","unfocus","upcast","AbsoluteOffset","RelativeOffset","Scrollable","scroll_to","scroll_to","snap_to","snap_to","x","x","y","y","TextInput","move_cursor_to","move_cursor_to","move_cursor_to_end","move_cursor_to_end","move_cursor_to_front","move_cursor_to_front","select_all","select_all","Absolute","Advanced","Appearance","Basic","LineHeight","Relative","Shaping","State","Style","StyleSheet","Text","appearance","color","draw","layout","None","Some","State","Tag","Tree","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","children","clone","clone_into","cmp","compare","components_from","components_from","deref","deref","deref_mut","deref_mut","diff_children_custom_with_search","downcast","downcast","downcast_mut","downcast_ref","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","of","partial_cmp","state","stateless","tag","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Alignment","Bottom","Center","Center","Center","End","Horizontal","Left","Right","Start","Top","Vertical","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Appearance","Application","Executor","Flags","Message","Style","StyleSheet","Theme","adapt_into_using","appearance","arrays_from","arrays_into","as_any","as_any_mut","background_color","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","eq","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","run","scale_factor","style","subscription","text_color","theme","title","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","update","view","Border","Radius","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","color","components_from","default","deref","deref_mut","downcast","drop","eq","fmt","from","from","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","radius","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","width","read","write","Command","channel","Captured","Event","Ignored","Keyboard","MacOS","MacOS","Mouse","PlatformSpecific","PlatformSpecific","ReceivedUrl","Status","Touch","Window","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","listen","listen_raw","listen_with","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Default","Executor","enter","new","spawn","Black","Bold","Condensed","Cursive","Error","Expanded","ExtraBold","ExtraCondensed","ExtraExpanded","ExtraLight","Family","Fantasy","Font","Italic","Light","Medium","Monospace","Name","Normal","Normal","Normal","Oblique","SansSerif","SemiCondensed","SemiExpanded","Semibold","Serif","Stretch","Style","Thin","UltraCondensed","UltraExpanded","Weight","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","default","default","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","family","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","hash","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","load","stretch","style","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","weight","ColorStop","Gradient","Linear","Linear","adapt_into_using","adapt_into_using","add_stop","add_stops","angle","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","offset","stops","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","ALT","COMMAND","CTRL","Character","Event","Key","KeyPressed","KeyReleased","LOGO","Left","Location","Modifiers","ModifiersChanged","Named","Numpad","Right","SHIFT","Standard","Unidentified","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","alt","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_ref","bitand","bitand_assign","bitor","bitor_assign","bits","bitxor","bitxor_assign","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","command","compare","compare","complement","components_from","components_from","components_from","components_from","contains","control","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","difference","downcast","downcast","downcast","downcast","drop","drop","drop","drop","empty","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits_truncate","from_bits_unchecked","from_iter","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","init","init","init","init","insert","intersection","intersects","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_empty","key","logo","not","on_key_press","on_key_release","partial_cmp","partial_cmp","remove","set","shift","sub","sub_assign","symmetric_difference","to_owned","to_owned","to_owned","to_owned","toggle","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","union","upcast","upcast","upcast","upcast","key","key","location","location","modifiers","modifiers","text","AVRInput","AVRPower","Accept","Again","AllCandidates","Alphanumeric","Alt","AltGraph","AppSwitch","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Attn","AudioBalanceLeft","AudioBalanceRight","AudioBassBoostDown","AudioBassBoostToggle","AudioBassBoostUp","AudioFaderFront","AudioFaderRear","AudioSurroundModeNext","AudioTrebleDown","AudioTrebleUp","AudioVolumeDown","AudioVolumeMute","AudioVolumeUp","Backspace","BrightnessDown","BrightnessUp","BrowserBack","BrowserFavorites","BrowserForward","BrowserHome","BrowserRefresh","BrowserSearch","BrowserStop","Call","Camera","CameraFocus","Cancel","CapsLock","ChannelDown","ChannelUp","Character","Clear","Close","ClosedCaptionToggle","CodeInput","ColorF0Red","ColorF1Green","ColorF2Yellow","ColorF3Blue","ColorF4Grey","ColorF5Brown","Compose","ContextMenu","Control","Convert","Copy","CrSel","Cut","DVR","Delete","Dimmer","DisplaySwap","Eisu","Eject","End","EndCall","Enter","EraseEof","Escape","ExSel","Execute","Exit","F1","F10","F11","F12","F13","F14","F15","F16","F17","F18","F19","F2","F20","F21","F22","F23","F24","F25","F26","F27","F28","F29","F3","F30","F31","F32","F33","F34","F35","F4","F5","F6","F7","F8","F9","FavoriteClear0","FavoriteClear1","FavoriteClear2","FavoriteClear3","FavoriteRecall0","FavoriteRecall1","FavoriteRecall2","FavoriteRecall3","FavoriteStore0","FavoriteStore1","FavoriteStore2","FavoriteStore3","FinalMode","Find","Fn","FnLock","GoBack","GoHome","GroupFirst","GroupLast","GroupNext","GroupPrevious","Guide","GuideNextDay","GuidePreviousDay","HangulMode","HanjaMode","Hankaku","HeadsetHook","Help","Hibernate","Hiragana","HiraganaKatakana","Home","Hyper","Info","Insert","InstantReplay","JunjaMode","KanaMode","KanjiMode","Katakana","Key","Key11","Key12","LastNumberRedial","LaunchApplication1","LaunchApplication2","LaunchCalendar","LaunchContacts","LaunchMail","LaunchMediaPlayer","LaunchMusicPlayer","LaunchPhone","LaunchScreenSaver","LaunchSpreadsheet","LaunchWebBrowser","LaunchWebCam","LaunchWordProcessor","Link","ListProgram","LiveContent","Lock","LogOff","MailForward","MailReply","MailSend","MannerMode","MediaApps","MediaAudioTrack","MediaClose","MediaFastForward","MediaLast","MediaPause","MediaPlay","MediaPlayPause","MediaRecord","MediaRewind","MediaSkipBackward","MediaSkipForward","MediaStepBackward","MediaStepForward","MediaStop","MediaTopMenu","MediaTrackNext","MediaTrackPrevious","Meta","MicrophoneToggle","MicrophoneVolumeDown","MicrophoneVolumeMute","MicrophoneVolumeUp","ModeChange","Named","Named","NavigateIn","NavigateNext","NavigateOut","NavigatePrevious","New","NextCandidate","NextFavoriteChannel","NextUserProfile","NonConvert","Notification","NumLock","OnDemand","Open","PageDown","PageUp","Pairing","Paste","Pause","PinPDown","PinPMove","PinPToggle","PinPUp","Play","PlaySpeedDown","PlaySpeedReset","PlaySpeedUp","Power","PowerOff","PreviousCandidate","Print","PrintScreen","Process","Props","RandomToggle","RcLowBattery","RecordSpeedNext","Redo","RfBypass","Romaji","STBInput","STBPower","Save","ScanChannelsToggle","ScreenModeNext","ScrollLock","Select","Settings","Shift","SingleCandidate","Soft1","Soft2","Soft3","Soft4","Space","SpeechCorrectionList","SpeechInputToggle","SpellCheck","SplitScreenToggle","Standby","Subtitle","Super","Symbol","SymbolLock","TV","TV3DMode","TVAntennaCable","TVAudioDescription","TVAudioDescriptionMixDown","TVAudioDescriptionMixUp","TVContentsMenu","TVDataService","TVInput","TVInputComponent1","TVInputComponent2","TVInputComposite1","TVInputComposite2","TVInputHDMI1","TVInputHDMI2","TVInputHDMI3","TVInputHDMI4","TVInputVGA1","TVMediaContext","TVNetwork","TVNumberEntry","TVPower","TVRadioService","TVSatellite","TVSatelliteBS","TVSatelliteCS","TVSatelliteToggle","TVTerrestrialAnalog","TVTerrestrialDigital","TVTimer","Tab","Teletext","Undo","Unidentified","VideoModeNext","VoiceDial","WakeUp","Wink","Zenkaku","ZenkakuHankaku","ZoomIn","ZoomOut","ZoomToggle","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","cmp","compare","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","hash","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","partial_cmp","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Available","Back","Button","ButtonPressed","ButtonReleased","Crosshair","Cursor","CursorEntered","CursorLeft","CursorMoved","Event","Forward","Grab","Grabbing","Idle","Interaction","Left","Lines","Middle","NotAllowed","Other","Pixels","Pointer","ResizingHorizontally","ResizingVertically","Right","ScrollDelta","Text","Unavailable","WheelScrolled","Working","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","compare","components_from","components_from","components_from","components_from","components_from","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_over","partial_cmp","position","position_from","position_in","position_over","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","delta","position","x","x","y","y","Application","Executor","Flags","Message","Theme","new","run","run","scale_factor","scale_factor","style","style","subscription","subscription","theme","theme","title","update","view","Element","menu","Appearance","Menu","State","Style","StyleSheet","appearance","background","border","selected_background","selected_text_color","text_color","Settings","adapt_into_using","antialiasing","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","default","default_font","default_text_size","deref","deref_mut","downcast","drop","flags","fmt","fonts","from","from_angle","from_stimulus","id","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","window","with_flags","Subscription","channel","run","run_with_id","unfold","Information","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","cpu_brand","cpu_cores","deref","deref_mut","downcast","drop","fetch_information","fmt","from","from_angle","from_stimulus","graphics_adapter","graphics_backend","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","memory_total","memory_used","system_kernel","system_name","system_short_version","system_version","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Application","Box","Button","Checkbox","Color","Container","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","DARK","Danger","Danger","Dark","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Destructive","LIGHT","Light","Menu","Palette","PaneGrid","PickList","Positive","Primary","Primary","Primary","ProgressBar","Radio","Rule","Scrollable","Secondary","Secondary","Slider","Success","Success","Svg","Text","Text","TextEditor","TextInput","Theme","Toggler","Transparent","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","custom","custom","custom_fn","danger","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","palette","primary","success","text","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","with_fn","Background","Danger","EXTENDED_DARK","EXTENDED_LIGHT","Extended","Pair","Palette","Primary","Secondary","Success","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","background","base","base","base","base","base","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","danger","danger","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","generate","generate","generate","generate","generate","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_dark","new","new","primary","primary","secondary","strong","strong","strong","strong","strong","success","success","text","text","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","weak","weak","weak","weak","weak","Duration","Instant","MAX","MICROSECOND","MILLISECOND","NANOSECOND","SECOND","ZERO","abs_diff","adapt_into_using","adapt_into_using","add","add","add","add","add_assign","add_assign","add_assign","add_assign","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","as_micros","as_millis","as_nanos","as_secs","as_secs_f32","as_secs_f64","borrow","borrow","borrow_mut","borrow_mut","checked_add","checked_add","checked_div","checked_duration_since","checked_mul","checked_sub","checked_sub","clone","clone","clone_into","clone_into","cmp","cmp","compare","compare","components_from","components_from","default","deref","deref","deref_mut","deref_mut","deserialize","div","div","div_assign","div_duration_f32","div_duration_f64","div_f32","div_f64","downcast","downcast","drop","drop","duration_since","elapsed","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","every","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_micros","from_millis","from_nanos","from_secs","from_secs_f32","from_secs_f64","from_stimulus","from_stimulus","hash","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_zero","mul","mul_assign","mul_f32","mul_f64","new","now","partial_cmp","partial_cmp","partial_cmp","partial_cmp","saturating_add","saturating_duration_since","saturating_mul","saturating_sub","serialize","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","subsec_micros","subsec_millis","subsec_nanos","sum","sum","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_from","try_from_secs_f32","try_from_secs_f64","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Event","Finger","FingerLifted","FingerLost","FingerMoved","FingerPressed","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","id","id","id","id","position","position","position","position","Button","Canvas","Checkbox","Column","ComboBox","Component","Container","Custom","DEFAULT_HEIGHT","DEFAULT_HEIGHT","DEFAULT_PADDING","DEFAULT_SIZE","DEFAULT_SIZE","DEFAULT_SPACING","DEFAULT_WIDTH","Dark","Event","Image","Lazy","Light","MouseArea","PaneGrid","PickList","ProgressBar","QRCode","Radio","Renderer","Responsive","Row","Rule","Scrollable","Shader","Slider","Space","State","Svg","Text","TextEditor","TextInput","Theme","Themer","TinySkia","Toggler","Tooltip","VerticalSlider","Wgpu","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","align_items","align_items","align_x","align_y","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","button","button","canvas","canvas","cell_size","center_x","center_y","checkbox","checkbox","children","children","children","children","children","children","children","children","children","children","children","color","column","column","combo_box","combo_box","component","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","container","container","content_fit","content_fit","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","diff","diff","diff","diff","diff","diff","diff","diff","diff","diff","direction","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","filter_method","fmt","fmt","fmt","fmt","focus_next","focus_previous","font","font","font","font","font","font","font","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_path","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gap","handle","height","height","height","height","height","height","height","height","height","height","height","height","height","highlight","horizontal","horizontal_rule","horizontal_space","icon","icon","icon","id","id","id","image","image","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","keyed","keyed_column","keyed_column","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","lazy","line_height","line_height","max_height","max_width","max_width","mouse_area","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","on_action","on_click","on_close","on_drag","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_input","on_input","on_middle_press","on_middle_release","on_option_hovered","on_paste","on_press","on_press","on_press_maybe","on_release","on_release","on_release","on_resize","on_right_press","on_right_release","on_scroll","on_submit","operate","operate","operate","operate","operate","operate","operate","operate","operate","operate","operate","operate","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","padding","padding","padding","padding","padding","padding","padding","padding","padding","pane_grid","password","pick_list","pick_list","placeholder","progress_bar","progress_bar","push","push","qr_code","radio","radio","responsive","row","row","rule","scrollable","scrollable","shader","shader","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size_hint","slider","slider","snap_within_viewport","space","spacing","spacing","spacing","spacing","spacing","spacing","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","step","step","style","style","style","style","style","style","style","style","style","style","style","style","style","style","style","style","style","svg","svg","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","text","text","text_alignment","text_editor","text_editor","text_input","text_input","text_input_style","text_line_height","text_line_height","text_line_height","text_line_height","text_shaping","text_shaping","text_shaping","text_shaping","text_shaping","text_size","text_size","text_size","text_size","theme","themer","toggler","toggler","tooltip","tooltip","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","vertical","vertical_rule","vertical_slider","vertical_slider","vertical_space","view","width","width","width","width","width","width","width","width","width","width","width","width","width","width","width","width","width","width","width","with_children","with_children","with_height","with_width","Appearance","Button","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","default","default","deref","deref","deref_mut","deref_mut","disabled","downcast","downcast","draw","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","mouse_interaction","new","pressed","shadow","shadow_offset","text_color","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","Bevel","Butt","Cache","Canvas","Event","Fill","Frame","Geometry","Geometry","Gradient","Gradient","Keyboard","LineCap","LineDash","LineJoin","Linear","Miter","Mouse","Path","Program","Renderer","Round","Round","Solid","Square","State","Stroke","Style","Text","TinySkia","TinySkia","Touch","Wgpu","Wgpu","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","center","circle","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","content","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","draw_with","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","event","fill","fill","fill_rectangle","fill_text","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gradient","height","horizontal_alignment","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_geometry","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line","line_cap","line_dash","line_height","line_join","mouse_interaction","new","new","new","offset","pack","path","position","raw","rectangle","rotate","rule","scale","scale_nonuniform","segments","shaping","size","size","stroke","stroke","style","style","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","transform","translate","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","vertical_alignment","width","width","with_clip","with_color","with_line_cap","with_line_join","with_save","with_width","Captured","Event","Ignored","Keyboard","Mouse","Status","Touch","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","merge","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","EvenOdd","Fill","Gradient","NonZero","Rule","Solid","Style","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","rule","style","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Gradient","Linear","Linear","Packed","adapt_into_using","adapt_into_using","add_stop","add_stops","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","end","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_valid_bit_pattern","new","pack","pack","start","stops","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Arc","Builder","Path","adapt_into_using","adapt_into_using","arc","arc","arc_to","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","bezier_curve_to","borrow","borrow","borrow_mut","borrow_mut","build","center","circle","clone","clone_into","close","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","ellipse","end_angle","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line_to","move_to","new","quadratic_curve_to","radius","rectangle","start_angle","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Arc","Elliptical","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","center","center","clone","clone_into","components_from","deref","deref_mut","downcast","drop","end_angle","end_angle","fmt","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","radii","radius","rotation","start_angle","start_angle","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","ArcFlags","AttributeIndex","AttributeSlice","AttributeStore","Attributes","Begin","Begin","Begin","Bevel","Butt","ControlPointId","Cubic","Cubic","Cubic","End","End","End","EndpointId","EvenOdd","Event","EventId","FillRule","INVALID","INVALID","INVALID","IdEvent","IdPolygon","Line","Line","Line","LineCap","LineJoin","Miter","MiterClip","NO_ATTRIBUTES","Negative","Negative","NonZero","Path","PathBuffer","PathBufferSlice","PathCommands","PathCommandsSlice","PathEvent","PathSlice","Polygon","Position","PositionStore","Positive","Positive","Quadratic","Quadratic","Quadratic","Round","Round","Side","Square","Winding","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_slice","as_slice","as_slice","attributes","attributes","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","builder","builder","builder","builder","builder_with_attributes","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closed","closed","commands","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","event","event","event","event","events","first_endpoint","first_endpoint","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_iter","from_iter","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_usize","from_usize","get","get","get","get","get","get","get_control_point","get_control_point","get_control_point","get_control_point","get_endpoint","get_endpoint","get_endpoint","get_endpoint","hash","hash","hash","hash","hash","id_iter","id_iter","id_iter","index","index","index","index","index","indices","indices","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_edge","is_empty","is_empty","is_empty","is_in","is_negative","is_out","is_positive","iter","iter","iter","iter","iter","iter","iter","iter","iter_with_attributes","iter_with_attributes","iterator","large_arc","last_endpoint","last_endpoint","len","len","math","new","new","new","next_event_id_in_path","next_event_id_in_path","next_event_id_in_sub_path","next_event_id_in_sub_path","num_attributes","num_attributes","num_attributes","num_attributes","offset","offset","opposite","path","path_buffer","path_events","path_slice","points","points","polygon","position","reserve","reversed","reversed","svg_builder","sweep","to","to_f32","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_usize","to_usize","to_usize","traits","transformed","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","with_attributes","with_capacity","with_points","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","BorderRadii","Build","Flattened","NoAttributes","PathBuilder","PathType","SvgPathBuilder","Transformed","WithSvg","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add_circle","add_circle","add_ellipse","add_ellipse","add_line_segment","add_line_segment","add_point","add_point","add_polygon","add_polygon","add_polygon","add_rectangle","add_rectangle","add_rounded_rectangle","add_rounded_rectangle","arc","arc_to","arc_to","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","begin","begin","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom_left","bottom_right","build","build","build","build","build","build","build","build","clone","clone","clone_into","clone_into","close","close","close","close","close","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","current_position","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","end","end","end","end","end","eq","eq","event","extend_from_paths","flattened","flattened","flattened","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","horizontal_line_to","horizontal_line_to","init","init","init","init","init","inner","inner_mut","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_inner","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","line_to","line_to","line_to","line_to","line_to","move_to","move_to","move_to","new","new","new","new","new","num_attributes","num_attributes","num_attributes","num_attributes","partial_cmp","path_event","path_event","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","relative_arc_to","relative_arc_to","relative_cubic_bezier_to","relative_cubic_bezier_to","relative_horizontal_line_to","relative_horizontal_line_to","relative_line_to","relative_line_to","relative_move_to","relative_move_to","relative_quadratic_bezier_to","relative_quadratic_bezier_to","relative_vertical_line_to","relative_vertical_line_to","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","set_tolerance","set_transform","set_transform","smooth_cubic_bezier_to","smooth_cubic_bezier_to","smooth_quadratic_bezier_to","smooth_quadratic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_quadratic_bezier_to","smooth_relative_quadratic_bezier_to","to_owned","to_owned","to_smolstr","to_string","top_left","top_right","transformed","transformed","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","vertical_line_to","vertical_line_to","with_capacity","with_svg","with_svg","wrap","CommandsPathSlice","Events","Iter","PathCommands","PathCommandsBuilder","PathCommandsSlice","PointEvents","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","end","events","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_control_point","get_endpoint","index","index","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","iter","line_to","new","next","next","next","points","quadratic_bezier_to","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","with_capacity","Angle","Arc","ArcFlags","Box2D","CubicBezierSegment","DIV_EPSILON","EIGHT","EPSILON","FIVE","FOUR","HALF","Line","LineEquation","LineSegment","MAX","MIN","NINE","ONE","Point","QuadraticBezierSegment","Rotation","SEVEN","SIX","Scalar","Scalar","Scale","Segment","Size","SvgArc","TEN","THREE","TWO","Transform","Translation","Triangle","Vector","ZERO","a","a","ab","ac","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add","add","add_assign","after_split","after_split","after_split","after_split","after_split","after_split","after_split","after_split","after_split","angle","angle_to","approx_epsilon","approx_eq_eps","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","arc","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","b","b","ba","baseline","baseline","bc","before_split","before_split","before_split","before_split","before_split","before_split","before_split","before_split","before_split","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounding_box","bounding_box","bounding_box","bounding_box","bounding_box","bounding_range_x","bounding_range_x","bounding_range_x","bounding_range_x","bounding_range_y","bounding_range_y","bounding_range_y","bounding_range_y","bounding_triangle","c","c","ca","cast","cb","center","circle","clipped","clipped_x","clipped_y","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closest_point","closest_point","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains_point","contains_segment","ctrl","ctrl1","ctrl2","cubic_bezier","cubic_intersections","cubic_intersections_t","default","degrees","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","derivative","derivative","derivative","derivative","derivative","derivative","derivative","distance_to_point","distance_to_point","distance_to_point","distance_to_point","div","div","div_assign","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drag","drag","drag_with_weight","drop","drop","drop","drop","drop","drop","drop","drop","drop","dx","dx","dx","dx","dx","dx","dy","dy","dy","dy","dy","dy","end_angle","epsilon_for","eq","eq","eq","eq","eq","eq","eq","eq","equation","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fast_bounding_box","fast_bounding_box","fast_bounding_box","fast_bounding_range_x","fast_bounding_range_x","fast_bounding_range_x","fast_bounding_range_y","fast_bounding_range_y","fast_bounding_range_y","fat_line","fat_line","flags","flattened","flattened","flattened","flattened_t","flattening_step","flip","flip","flip","flip","flip","flip","flip","flip","flip","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_each_cubic_bezier","for_each_cubic_bezier","for_each_flattened","for_each_flattened","for_each_flattened","for_each_flattened","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_inflection_t","for_each_local_x_extremum_t","for_each_local_x_extremum_t","for_each_local_y_extremum_t","for_each_local_y_extremum_t","for_each_monotonic","for_each_monotonic","for_each_monotonic_range","for_each_monotonic_range","for_each_quadratic_bezier","for_each_quadratic_bezier","for_each_quadratic_bezier","for_each_quadratic_bezier_with_t","for_each_quadratic_bezier_with_t","for_each_quadratic_bezier_with_t","for_each_x_monotonic","for_each_x_monotonic","for_each_x_monotonic_range","for_each_x_monotonic_range","for_each_y_monotonic","for_each_y_monotonic","for_each_y_monotonic_range","for_each_y_monotonic_range","frac_pi_2","frac_pi_3","frac_pi_4","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_svg_arc","get","get_angle","hash","height","horizontal_line_intersection","horizontal_line_intersection_t","init","init","init","init","init","init","init","init","init","intersection","intersection","intersection_t","intersects","intersects","intersects_box","intersects_line","intersects_line_segment","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invert","is_a_point","is_finite","is_horizontal","is_linear","is_linear","is_monotonic","is_monotonic","is_quadratic","is_straight_line","is_vertical","is_x_monotonic","is_x_monotonic","is_y_monotonic","is_y_monotonic","large_arc","length","length","lerp","line_intersection","line_intersection_t","line_intersections","line_intersections","line_intersections_t","line_intersections_t","line_segment_intersections","line_segment_intersections","line_segment_intersections_t","line_segment_intersections_t","local_x_extremum_t","local_y_extremum_t","m11","m12","m21","m22","m31","m32","max","mid_point","min","mul","mul_assign","neg","new","normal","num_quadratics","offset","overlaps_line","overlaps_segment","parallel_line","partial_cmp","pi","point","point","positive","project_point","quadratic_bezier","quadratic_intersections","quadratic_intersections_t","radians","radians","radii","radii","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample_tangent","set_length","signed","signed_distance_to_point","signed_distance_to_point","sin_cos","size","solve_t_for_x","solve_t_for_x","solve_t_for_y","solve_t_for_y","solve_x_for_y","solve_x_for_y","solve_y_for_x","solve_y_for_x","split","split","split","split","split","split","split","split","split","split_at_x","split_range","split_range","split_range","split_range","split_range","split_range","split_range","split_range","split_range","square_distance_to_point","square_distance_to_point","square_distance_to_point","square_length","start_angle","sub","sub_assign","sum","sum","sweep","sweep_angle","tangent","to","to","to","to","to","to","to","to","to","to","to","to","to","to_arc","to_cubic","to_degrees","to_f32","to_f32","to_f32","to_f32","to_f32","to_f64","to_f64","to_f64","to_f64","to_f64","to_line","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_quadratic","to_quadratic_error","to_svg_arc","to_vector","traits","transform","transformed","transformed","transformed","translate","try_cast","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","two_pi","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","utils","value","vector","vector","vertical_line_intersection","vertical_line_intersection_t","width","x","x","x","x","x","x","x","x","x","x","x","x","x_maximum_t","x_maximum_t","x_minimum_t","x_minimum_t","x_rotation","x_rotation","y","y","y","y","y","y","y","y","y","y","y","y","y_maximum_t","y_maximum_t","y_minimum_t","y_minimum_t","zero","Arc","ArcFlags","Flattened","SvgArc","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","center","components_from","deref","deref_mut","downcast","drop","flags","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_iter","into_stimulus","large_arc","next","radii","radii","start_angle","sweep","sweep_angle","to","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","x_rotation","x_rotation","ArrayString","ArrayVec","CapacityError","Drain","IntoIter","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_mut","as_mut_ptr","as_mut_slice","as_mut_str","as_ptr","as_ref","as_ref","as_slice","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","capacity","clear","clear","clone","clone","clone","clone","clone_from","clone_from","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","compare","compare","compare","components_from","components_from","components_from","components_from","components_from","default","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drain","drop","drop","drop","drop","drop","drop","drop","drop","element","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","flush","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_byte_string","from_iter","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_str","ge","ge","ge","gt","gt","gt","hash","hash","init","init","init","init","init","insert","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_inner","into_inner_unchecked","into_iter","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_empty","is_full","is_full","le","le","le","len","len","len","limit_ptr","lt","lt","lt","new","new","new","new_const","new_const","next","next","next_back","next_back","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pop","pop","pop_at","push","push","push_str","push_unchecked","remaining_capacity","remaining_capacity","remove","remove","retain","set_len","set_len","simplify","size_hint","size_hint","start_ptr","swap_pop","swap_remove","take","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","truncate","truncate","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_extend_from_slice","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_insert","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_push","try_push","try_push_str","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","write","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_char","write_str","zero_filled","CubicBezierSegment","Flattened","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","components_into","ctrl1","ctrl2","deref","deref_mut","downcast","drop","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_iter","into_stimulus","next","size_hint","to","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Angle","BoolVector2D","BoolVector3D","Box2D","Box3D","HomogeneousVector","Length","Point2D","Point3D","Rect","RigidTransform3D","Rotation2D","Rotation3D","Scale","SideOffsets2D","Size2D","Size3D","Transform2D","Transform3D","Translation2D","Translation3D","Trig","UnknownUnit","Vector2D","Vector3D","abs","abs","abs","abs","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_size","add_size","all","all","and","and","angle","angle_from_x_axis","angle_to","angle_to","any","any","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_eq","approx_eq","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approxeq","approxord","area","area","area","around_axis","around_x","around_y","around_z","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom","box3d","bvec2","bvec3","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","center","center","center","clamp","clamp","clamp","clamp","clamp","clamp","clamp","clamp_length","clamp_length","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","compare","compare","compare","component_div","component_div","component_mul","component_mul","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","contains","contains","contains","contains","contains_box","contains_box","contains_rect","cos","cross","cross","decompose_reversed","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","degrees_to_radians","depth","depth","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","determinant","determinant","distance_to","distance_to","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_euclid","div_euclid","dot","dot","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equal","equal","equal","equal","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","euler","extend","extend","fast_atan2","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle_and_length","from_array","from_array","from_arrays","from_arrays","from_length_all_same","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_origin_and_size","from_points","from_points","from_points","from_rotation","from_scale","from_size","from_size","from_size","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_translation","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_vectors_inner","from_vectors_outer","get","get","get_angle","greater_than","greater_than","greater_than","greater_than","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","height","height","height","height","height","horizontal","i","identity","identity","identity","identity","identity","identity","identity","identity","inflate","inflate","inflate","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_box","inner_rect","intersection","intersection","intersection","intersection_unchecked","intersection_unchecked","intersects","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","inverse","inverse","inverse","inverse","inverse","inverse","inverse","inverse","is_2d","is_backface_visible","is_empty","is_empty","is_empty","is_empty","is_empty","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_identity","is_identity","is_identity","is_invertible","is_invertible","is_negative","is_negative","is_normalized","is_positive","is_positive","is_zero","j","k","left","length","length","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lower_than","lower_than","lower_than","lower_than","m11","m11","m12","m12","m13","m14","m21","m21","m22","m22","m23","m24","m31","m31","m32","m32","m33","m34","m41","m42","m43","m44","max","max","max","max","max","max","max","max","max","max","max","max_x","max_y","min","min","min","min","min","min","min","min","min","min","min","min_x","min_y","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_s","neg","neg","neg","neg","neg","neg","neg","neg","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_2d","new_all_same","new_from_reversed","none","none","norm","normalize","normalize","normalize","not","not","not_equal","not_equal","not_equal","not_equal","num","one","one","one","or","or","origin","origin","origin","ortho","outer_box","outer_rect","outer_transformed_box","outer_transformed_box2d","outer_transformed_box3d","outer_transformed_rect","outer_transformed_rect","partial_cmp","partial_cmp","partial_cmp","perspective","point2","point3","position","pre_rotate","pre_rotate","pre_scale","pre_scale","pre_translate","pre_translate","project_onto_vector","project_onto_vector","project_to_2d","quaternion","r","radians","radians","radians_to_degrees","rect","reflect","reflect","rem_euclid","rem_euclid","right","robust_normalize","robust_normalize","rotation","rotation","rotation","round","round","round","round","round","round","round","round","round","round","round","round","round","round","round","round_in","round_in","round_in","round_out","round_out","round_out","saturating_add","saturating_sub","scale","scale","scale","scale","scale","select_point","select_point","select_size","select_size","select_vector","select_vector","set_size","sin","size","size","size","size2","size3","skew","slerp","splat","splat","splat","splat","splat","splat","splat","splat","square_length","square_length","square_norm","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","tan","then","then","then","then","then","then_rotate","then_rotate","then_scale","then_scale","then_translate","then_translate","to_2d","to_2d","to_2d","to_3d","to_3d","to_3d","to_3d","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array_4d","to_array_4d","to_array_transposed","to_array_transposed","to_arrays","to_arrays","to_arrays_transposed","to_box2d","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_non_empty","to_non_empty","to_non_empty","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_point","to_point","to_point2d","to_point3d","to_rect","to_size","to_transform","to_transform","to_transform","to_transform","to_transform","to_transform","to_transform","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple_4d","to_tuple_4d","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u64","to_u64","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_vector","to_vector","to_vector","to_vector","to_vector","to_vector","top","transform_box","transform_box2d","transform_box2d","transform_box3d","transform_box3d","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point2d","transform_point2d","transform_point2d","transform_point2d_homogeneous","transform_point3d","transform_point3d","transform_point3d","transform_point3d","transform_point3d_homogeneous","transform_rect","transform_rect","transform_rect","transform_size","transform_size","transform_size","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector2d","transform_vector2d","transform_vector3d","transform_vector3d","translate","translate","translate","translation","translation","translation","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_normalize","try_normalize","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","union","union","unit_quaternion","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","vec2","vec3","vector_part","vertical","volume","volume","w","width","width","width","width","width","with_destination","with_destination","with_length","with_max_length","with_max_length","with_min_length","with_min_length","with_source","with_source","x","x","x","x","x","x","x","x","x","x_range","x_range","x_range","xy","xy","xy","xy_area","xz","xz","xz","xz_area","y","y","y","y","y","y","y","y","y","y_range","y_range","y_range","yx","yx","yz","yz","yz","yz_area","z","z","z","z","z","z_range","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","ApproxEq","approx_epsilon","approx_eq","approx_eq_eps","max","min","Box2D","Box3D","HomogeneousVector","Length","Point2D","Point3D","Rect","RigidTransform3D","Rotation2D","Rotation3D","Scale","SideOffsets2D","Size2D","Size3D","Transform2D","Transform3D","Translation2D","Translation3D","Vector2D","Vector3D","angle","bottom","depth","height","height","i","j","k","left","m11","m11","m12","m12","m13","m14","m21","m21","m22","m22","m23","m24","m31","m31","m32","m32","m33","m34","m41","m42","m43","m44","max","max","min","min","origin","r","right","rotation","size","top","translation","w","width","width","x","x","x","x","x","x","x","y","y","y","y","y","y","y","z","z","z","z","Ceil","Floor","One","Round","Zero","ceil","floor","one","round","zero","Flattened","FlattenedT","FlatteningParameters","QuadraticBezierSegment","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","components_from","components_from","components_from","ctrl","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","new","next","next","size_hint","size_hint","to","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","Scalar","Segment","Transformation","after_split","approximate_length","before_split","derivative","dx","dy","flip","for_each_flattened_with_t","from","sample","split","split_range","to","transform_point","transform_vector","x","y","cubic_polynomial_roots","directed_angle","directed_angle2","min_max","normalized_tangent","tangent","Flattened","FromPolyline","NoAttributes","PathIterator","Transformed","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","closed","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","drop","drop","drop","drop","flattened","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","new","new","next","next","next","next","open","size_hint","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","with_attributes","Angle","Box2D","Point","Rotation","Scale","Size","Transform","Translation","Vector","angle","height","m11","m12","m21","m22","m31","m32","max","min","point","radians","size","vector","width","x","x","x","y","y","y","Builder","BuilderImpl","BuilderWithAttributes","IdIter","Iter","IterWithAttributes","Path","PathSlice","Reversed","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","build","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","end","end","end","extend_from_paths","extend_from_paths","fmt","for_each_flattened","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_path","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","new","new","next","next","next","next","num_attributes","num_attributes","num_attributes","points","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","reserve","reserve","reserve","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","with_capacity","with_svg","Builder","BuilderWithAttributes","Iter","PathBuffer","PathBufferSlice","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","begin","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","build","build","build","build","clone","clone_into","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","end","end","end","end","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","line_to","new","next","next_back","num_attributes","num_attributes","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","reserve","reserve","reserve","reserve","size_hint","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","with_attributes","IdPolygon","IdPolygonIter","PathEvents","Polygon","PolygonIdIter","PolygonIter","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","closed","closed","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","drop","drop","drop","drop","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","next","next","next","next","par_bridge","points","points","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","Build","PathBuilder","PathIterator","PathType","SvgPathBuilder","add_circle","add_ellipse","add_line_segment","add_point","add_polygon","add_polygon","add_rectangle","add_rounded_rectangle","arc_to","begin","build","close","close","cubic_bezier_to","cubic_bezier_to","end","event","flattened","flattened","horizontal_line_to","line_to","line_to","move_to","num_attributes","path_event","quadratic_bezier_to","quadratic_bezier_to","relative_arc_to","relative_cubic_bezier_to","relative_horizontal_line_to","relative_line_to","relative_move_to","relative_quadratic_bezier_to","relative_vertical_line_to","reserve","reserve","smooth_cubic_bezier_to","smooth_quadratic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_quadratic_bezier_to","transformed","transformed","vertical_line_to","with_svg","Bevel","Butt","Gradient","LineCap","LineDash","LineJoin","Miter","Round","Round","Solid","Square","Stroke","Style","line_cap","line_dash","line_join","offset","segments","style","width","Appearance","Checkbox","Icon","Style","StyleSheet","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","code_point","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","fmt","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered","icon_color","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line_height","shaping","size","text_color","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","ComboBox","State","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","build_matchers","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","search","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","with_selection","Appearance","Container","Id","Style","StyleSheet","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","draw_background","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","new","shadow","text_color","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","unique","upcast","upcast","visible_bounds","with_background","with_border","FilterMethod","Handle","Image","Linear","Nearest","Viewer","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","components_from","data","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","draw","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_memory","from_path","from_pixels","from_stimulus","from_stimulus","from_stimulus","hash","hash","height","id","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","max_scale","min_scale","mouse_interaction","new","on_event","padding","scale_step","size","state","tag","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","viewer","viewer","width","State","Viewer","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","default","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","image_size","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","is_cursor_grabbed","new","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Column","adapt_into_using","align_items","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","children","column","components_from","default","deref","deref_mut","diff","downcast","draw","drop","from","from_angle","from_stimulus","height","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","max_width","mouse_interaction","new","on_event","operate","overlay","padding","push","size","spacing","state","tag","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","width","with_children","Column","menu","Appearance","Menu","State","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","fmt","fmt","font","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","new","new","overlay","padding","selected_background","selected_text_color","style","text_color","text_line_height","text_shaping","text_size","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","width","All","Appearance","Axis","Bottom","Canceled","Center","Configuration","Content","Contents","Direction","Down","DragEvent","Draggable","Dropped","Edge","Edge","Edge","Horizontal","Left","Left","Line","Maximized","Node","Pane","Pane","Pane","Pane","PaneGrid","Picked","Region","ResizeEvent","Right","Right","Split","Split","Split","State","Style","StyleSheet","Target","TitleBar","Top","Up","Vertical","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adjacent","always_show_controls","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","can_be_dragged_at","can_be_dragged_at","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","close","cmp","cmp","color","compare","compare","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","controls","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get","get_mut","hash","hash","hash","hash","hovered_region","hovered_split","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","internal","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_over_pick_area","iter","iter","iter_mut","layout","layout","layout","len","maximize","maximized","mouse_interaction","move_to_edge","new","new","new","padding","pane_regions","panes","partial_cmp","partial_cmp","picked_split","ratio","resize","restore","split","split","split","split_line_bounds","split_regions","split_with","splits","state","style","style","swap","title_bar","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","width","with_configuration","a","axis","b","ratio","pane","pane","pane","target","a","axis","b","id","ratio","Action","Clicking","Dragging","Idle","Internal","Resizing","State","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clicked_pane","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","fmt","fmt","from","from","from_angle","from_angle","from_configuration","from_stimulus","from_stimulus","init","init","internal","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","panes","picked_pane","picked_split","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","axis","origin","origin","pane","pane","split","Appearance","Arrow","Dynamic","Handle","Icon","None","PickList","State","Static","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","code_point","components_from","components_from","components_from","components_from","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","eq","eq","fmt","fmt","fmt","fmt","font","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","handle_color","hovered","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","line_height","mouse_interaction","overlay","placeholder_color","shaping","size","text_color","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","update","closed","open","size","Appearance","ProgressBar","Style","StyleSheet","adapt_into_using","appearance","arrays_from","arrays_into","as_any","as_any_mut","background","bar","border_radius","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","DataTooLong","Error","ErrorCorrection","High","InvalidCharacter","InvalidEciDesignator","InvalidVersion","Low","Medium","Micro","Normal","QRCode","Quartile","State","UnsupportedCharacterSet","Version","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","drop","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","with_error_correction","with_version","Appearance","Radio","Style","StyleSheet","active","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","background","border_color","border_width","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","dot_color","downcast","drop","fmt","from","from_angle","from_stimulus","hovered","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Appearance","AsymmetricPadding","FillMode","Full","Padded","Percent","Rule","Style","StyleSheet","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","fill","fill_mode","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","radius","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","AbsoluteOffset","Alignment","Both","Direction","END","End","Horizontal","Id","Properties","RelativeOffset","START","Scrollable","Scrollbar","Scroller","Start","State","Style","StyleSheet","Vertical","Viewport","absolute_offset","absolute_offset_reversed","active","active_horizontal","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","alignment","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","content_bounds","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","dragging","dragging_horizontal","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","horizontal","hovered","hovered_horizontal","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","margin","mouse_interaction","new","new","new","relative_offset","scroll","scroll_to","scroll_to","scroll_to","scroll_x_to","scroll_y_to","scroller","scroller_width","scrollers_grabbed","snap_to","snap_to","snap_to","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unique","unsnap","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","vertical","width","x","x","y","y","horizontal","vertical","Event","Keyboard","Mouse","Primitive","Primitive","Program","RedrawRequested","Shader","State","Storage","Touch","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","drop","drop","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","get","get_mut","has","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","mouse_interaction","prepare","render","store","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","ADDRESS_MODE_CLAMP_TO_BORDER","ADDRESS_MODE_CLAMP_TO_ZERO","ALL","ALLOW_UNDERLYING_NONCOMPLIANT_ADAPTER","ALPHA","ALPHA_BLENDING","ANISOTROPIC_FILTERING","AccelerationStructure","Adapter","AdapterInfo","Add","AddressMode","All","Always","Astc","AstcBlock","AstcChannel","Auto","AutoNoVsync","AutoVsync","Automatic","B10x10","B10x5","B10x6","B10x8","B12x10","B12x12","B4x4","B5x4","B5x5","B6x5","B6x6","B8x5","B8x6","B8x8","BASE_VERTEX","BGRA8UNORM_STORAGE","BLACK","BLENDABLE","BLUE","BLUE","BROWSER_WEBGPU","BUFFER_BINDINGS_NOT_16_BYTE_ALIGNED","BUFFER_BINDING_ARRAY","Back","Backend","Backends","Bc1RgbaUnorm","Bc1RgbaUnormSrgb","Bc2RgbaUnorm","Bc2RgbaUnormSrgb","Bc3RgbaUnorm","Bc3RgbaUnormSrgb","Bc4RSnorm","Bc4RUnorm","Bc5RgSnorm","Bc5RgUnorm","Bc6hRgbFloat","Bc6hRgbUfloat","Bc7RgbaUnorm","Bc7RgbaUnormSrgb","Bgra8Unorm","Bgra8UnormSrgb","BindGroup","BindGroupDescriptor","BindGroupEntry","BindGroupLayout","BindGroupLayoutDescriptor","BindGroupLayoutEntry","BindingResource","BindingType","BlendComponent","BlendFactor","BlendOperation","BlendState","BrowserWebGpu","Buffer","Buffer","Buffer","BufferAddress","BufferArray","BufferAsyncError","BufferBinding","BufferBindingType","BufferDescriptor","BufferSize","BufferSlice","BufferUsages","BufferView","BufferViewMut","CLEAR_TEXTURE","CLIPPER_INVOCATIONS","CLIPPER_PRIMITIVES_OUT","COLOR","COMPARISON_SAMPLERS","COMPUTE","COMPUTE_SHADERS","COMPUTE_SHADER_INVOCATIONS","CONSERVATIVE_RASTERIZATION","COPY_BUFFER_ALIGNMENT","COPY_BYTES_PER_ROW_ALIGNMENT","COPY_DST","COPY_DST","COPY_SRC","COPY_SRC","CUBE_ARRAY_TEXTURES","Ccw","ClampToBorder","ClampToEdge","Clear","Color","ColorTargetState","ColorWrites","CommandBuffer","CommandBufferDescriptor","CommandEncoder","CommandEncoderDescriptor","CompareFunction","Comparison","CompositeAlphaMode","ComputePass","ComputePassDescriptor","ComputePassTimestampWrites","ComputePipeline","ComputePipelineDescriptor","Constant","Cpu","CreateSurfaceError","Cube","CubeArray","Cw","D1","D1","D2","D2","D2Array","D3","D3","DEBUG","DEPTH32FLOAT_STENCIL8","DEPTH_BIAS_CLAMP","DEPTH_CLIP_CONTROL","DEPTH_TEXTURE_AND_BUFFER_COPIES","DISCARD_HAL_LABELS","DUAL_SOURCE_BLENDING","DX12","DecrementClamp","DecrementWrap","Depth","Depth16Unorm","Depth24Plus","Depth24PlusStencil8","Depth32Float","Depth32FloatStencil8","DepthBiasState","DepthOnly","DepthStencilState","Destroyed","Device","DeviceDescriptor","DeviceLostReason","DeviceType","Discard","DiscreteGpu","DisplayP3","DownlevelCapabilities","DownlevelFlags","Dst","DstAlpha","Dx12","Dx12Compiler","Dxc","DynamicOffset","EacR11Snorm","EacR11Unorm","EacRg11Snorm","EacRg11Unorm","Empty","Equal","Error","ErrorFilter","Etc2Rgb8A1Unorm","Etc2Rgb8A1UnormSrgb","Etc2Rgb8Unorm","Etc2Rgb8UnormSrgb","Etc2Rgba8Unorm","Etc2Rgba8UnormSrgb","Extent3d","FILTERABLE","FLOAT32_FILTERABLE","FRAGMENT","FRAGMENT_SHADER_INVOCATIONS","FRAGMENT_STORAGE","FRAGMENT_WRITABLE_STORAGE","FULL_DRAW_INDEX_UINT32","Face","Features","Fifo","FifoRelaxed","Fill","FilterMode","Filtering","Float","Float16x2","Float16x4","Float32","Float32x2","Float32x3","Float32x4","Float64","Float64x2","Float64x3","Float64x4","FragmentState","Front","FrontFace","Fxc","GL","GREEN","GREEN","Gl","Gles3MinorVersion","Good","Greater","GreaterEqual","Hdr","HighPerformance","IGNORE","INDEPENDENT_BLEND","INDEX","INDIRECT","INDIRECT_EXECUTION","INDIRECT_FIRST_INSTANCE","INVALID_TIMESTAMP","Id","ImageCopyBuffer","ImageCopyBufferBase","ImageCopyTexture","ImageCopyTextureBase","ImageCopyTextureTagged","ImageCopyTextureTaggedBase","ImageDataLayout","ImageSubresourceRange","Immediate","IncrementClamp","IncrementWrap","IndexFormat","Inherit","Instance","Instance","InstanceDescriptor","InstanceFlags","IntegratedGpu","Invert","Keep","Label","Less","LessEqual","Limits","Line","LineList","LineStrip","Linear","Load","LoadOp","Lost","Lost","LowPower","MAPPABLE_PRIMARY_BUFFERS","MAP_ALIGNMENT","MAP_READ","MAP_WRITE","METAL","MULTISAMPLED_SHADING","MULTISAMPLE_RESOLVE","MULTISAMPLE_X16","MULTISAMPLE_X2","MULTISAMPLE_X4","MULTISAMPLE_X8","MULTIVIEW","MULTI_DRAW_INDIRECT","MULTI_DRAW_INDIRECT_COUNT","Mailbox","Maintain","MaintainBase","MaintainResult","MapMode","Max","Metal","Min","MirrorRepeat","MultisampleState","NONBLOCKING_QUERY_RESOLVE","NONE","NON_POWER_OF_TWO_MIPMAPPED_TEXTURES","NV12","Nearest","Never","NonFiltering","None","None","NotEqual","OVER","Occlusion","Ok","One","OneMinusConstant","OneMinusDst","OneMinusDstAlpha","OneMinusSrc","OneMinusSrc1","OneMinusSrc1Alpha","OneMinusSrcAlpha","Opaque","OpaqueBlack","OpaqueWhite","Operations","Origin2d","Origin3d","Other","OutOfMemory","OutOfMemory","OutOfMemory","Outdated","Outdated","PARTIALLY_BOUND_BINDING_ARRAY","PIPELINE_STATISTICS_QUERY","POLYGON_MODE_LINE","POLYGON_MODE_POINT","PREMULTIPLIED_ALPHA_BLENDING","PRIMARY","PUSH_CONSTANTS","PUSH_CONSTANT_ALIGNMENT","PipelineLayout","PipelineLayoutDescriptor","PipelineStatistics","PipelineStatisticsTypes","Plane0","Plane1","Plane2","Point","PointList","Poll","Poll","PolygonMode","PostMultiplied","PowerPreference","PreMultiplied","PredefinedColorSpace","PresentMode","PresentationTimestamp","PrimitiveState","PrimitiveTopology","PushConstantRange","QUERY_RESOLVE","QUERY_RESOLVE_BUFFER_ALIGNMENT","QUERY_SET_MAX_QUERIES","QUERY_SIZE","QuerySet","QuerySetDescriptor","QueryType","Queue","QueueWriteBufferView","R16Float","R16Sint","R16Snorm","R16Uint","R16Unorm","R32Float","R32Sint","R32Uint","R8Sint","R8Snorm","R8Uint","R8Unorm","RAY_QUERY","RAY_TRACING_ACCELERATION_STRUCTURE","READ_ONLY_DEPTH_STENCIL","RED","RED","RENDER_ATTACHMENT","REPLACE","REPLACE","RG11B10UFLOAT_RENDERABLE","RawHandle","Read","ReadOnly","ReadWrite","RenderBundle","RenderBundleDepthStencil","RenderBundleDescriptor","RenderBundleEncoder","RenderBundleEncoderDescriptor","RenderPass","RenderPassColorAttachment","RenderPassDepthStencilAttachment","RenderPassDescriptor","RenderPassTimestampWrites","RenderPipeline","RenderPipelineDescriptor","Repeat","Replace","RequestAdapterOptions","RequestAdapterOptionsBase","RequestDeviceError","ReverseSubtract","Rg11b10Float","Rg16Float","Rg16Sint","Rg16Snorm","Rg16Uint","Rg16Unorm","Rg32Float","Rg32Sint","Rg32Uint","Rg8Sint","Rg8Snorm","Rg8Uint","Rg8Unorm","Rgb10a2Uint","Rgb10a2Unorm","Rgb9e5Ufloat","Rgba16Float","Rgba16Sint","Rgba16Snorm","Rgba16Uint","Rgba16Unorm","Rgba32Float","Rgba32Sint","Rgba32Uint","Rgba8Sint","Rgba8Snorm","Rgba8Uint","Rgba8Unorm","Rgba8UnormSrgb","SAMPLED_TEXTURE_AND_STORAGE_BUFFER_ARRAY_NON_UNIFORM_INDEXING","SECONDARY","SHADER_EARLY_DEPTH_TEST","SHADER_F16","SHADER_F64","SHADER_I16","SHADER_PRIMITIVE_INDEX","SHADER_UNUSED_VERTEX_OUTPUT","SPIRV_SHADER_PASSTHROUGH","STORAGE","STORAGE_BINDING","STORAGE_READ_WRITE","STORAGE_RESOURCE_BINDING_ARRAY","SURFACE_VIEW_FORMATS","Sampler","Sampler","Sampler","SamplerArray","SamplerBindingType","SamplerBorderColor","SamplerDescriptor","ShaderLocation","ShaderModel","ShaderModule","ShaderModuleDescriptor","ShaderModuleDescriptorSpirV","ShaderSource","ShaderStages","Sint","Sint16x2","Sint16x4","Sint32","Sint32x2","Sint32x3","Sint32x4","Sint8x2","Sint8x4","Sm2","Sm4","Sm5","Snorm16x2","Snorm16x4","Snorm8x2","Snorm8x4","Some","Src","Src1","Src1Alpha","SrcAlpha","SrcAlphaSaturated","Srgb","Stencil8","StencilFaceState","StencilOnly","StencilOperation","StencilState","Storage","StorageTexture","StorageTextureAccess","Store","StoreOp","SubmissionIndex","SubmissionQueueEmpty","Suboptimal","Subtract","Surface","SurfaceCapabilities","SurfaceConfiguration","SurfaceError","SurfaceStatus","SurfaceTarget","SurfaceTargetUnsafe","SurfaceTexture","TEXTURE_ADAPTER_SPECIFIC_FORMAT_FEATURES","TEXTURE_BINDING","TEXTURE_BINDING_ARRAY","TEXTURE_COMPRESSION_ASTC","TEXTURE_COMPRESSION_ASTC_HDR","TEXTURE_COMPRESSION_BC","TEXTURE_COMPRESSION_ETC2","TEXTURE_FORMAT_16BIT_NORM","TEXTURE_FORMAT_NV12","TIMESTAMP_QUERY","TIMESTAMP_QUERY_INSIDE_PASSES","TRANSPARENT","Texture","Texture","TextureAspect","TextureDescriptor","TextureDimension","TextureFormat","TextureFormatFeatureFlags","TextureFormatFeatures","TextureSampleType","TextureUsages","TextureView","TextureView","TextureViewArray","TextureViewDescriptor","TextureViewDimension","Timeout","Timeout","Timestamp","TransparentBlack","TriangleList","TriangleStrip","UNIFORM","UNIFORM_BUFFER_AND_STORAGE_TEXTURE_ARRAY_NON_UNIFORM_INDEXING","UNRESTRICTED_EXTERNAL_TEXTURE_COPIES","UNRESTRICTED_INDEX_BUFFER","Uint","Uint16","Uint16x2","Uint16x4","Uint32","Uint32","Uint32x2","Uint32x3","Uint32x4","Uint8x2","Uint8x4","UncapturedErrorHandler","Uniform","Unknown","Unorm","Unorm16x2","Unorm16x4","Unorm8x2","Unorm8x4","UnormSrgb","VALIDATION","VERTEX","VERTEX","VERTEX_AND_INSTANCE_INDEX_RESPECTS_RESPECTIVE_FIRST_VALUE_IN_INDIRECT_DRAW","VERTEX_ATTRIBUTE_64BIT","VERTEX_FRAGMENT","VERTEX_SHADER_INVOCATIONS","VERTEX_STORAGE","VERTEX_STRIDE_ALIGNMENT","VERTEX_WRITABLE_STORAGE","VIEW_FORMATS","VULKAN","Validation","Validation","Version0","Version1","Version2","Vertex","VertexAttribute","VertexBufferLayout","VertexFormat","VertexState","VertexStepMode","VirtualGpu","Vulkan","WEBGPU_TEXTURE_FORMAT_SUPPORT","WHITE","Wait","Wait","WaitForSubmissionIndex","WaitForSubmissionIndex","WasmNotSend","WasmNotSendSync","WasmNotSync","Wgsl","Window","WindowHandle","Write","WriteOnly","ZERO","ZERO","Zero","Zero","Zero","a","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add_srgb_suffix","address_mode_u","address_mode_v","address_mode_w","all","all","all","all","all","all","all","all","all","all","all_native_mask","all_webgpu_mask","allowed_usages","alpha","alpha_mode","alpha_modes","alpha_to_coverage_enabled","anisotropy_clamp","any_backend_feature_enabled","array_layer_count","array_layer_count","array_stride","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_entire_binding","as_entire_buffer_binding","as_hal","as_hal","as_hal","as_hal","as_hal","as_image_copy","as_mut","as_mut","as_ref","aspect","aspect","aspect","aspect","aspect","aspect","aspect_specific_format","attributes","b","back","backend","backends","base_array_layer","base_array_layer","base_mip_level","base_mip_level","begin_compute_pass","begin_occlusion_query","begin_pipeline_statistics_query","begin_pipeline_statistics_query","begin_render_pass","beginning_of_pass_write_index","beginning_of_pass_write_index","bias","bind_group_layouts","binding","binding","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","blend","block_copy_size","block_dimensions","block_size","border_color","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer","buffer","buffer","buffers","bytes_per_row","check_limits","check_limits_with_fail_fn","clamp","clear_buffer","clear_texture","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","color","color_attachments","color_formats","color_space","color_space","compare","compare","compare","compare","compare","compare","compatible_surface","compatible_surface","compatible_texture_dimension","complement","complement","complement","complement","complement","complement","complement","complement","complement","complement","compliant","components","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_with_aspect","configure","conservative","constant","contains","contains","contains","contains","contains","contains","contains","contains","contains","contains","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","copy_buffer_to_buffer","copy_buffer_to_texture","copy_texture_to_buffer","copy_texture_to_texture","count","count","count","create_adapter_from_hal","create_bind_group","create_bind_group_layout","create_buffer","create_buffer_from_hal","create_buffer_init","create_command_encoder","create_compute_pipeline","create_device_from_hal","create_pipeline_layout","create_query_set","create_render_bundle_encoder","create_render_pipeline","create_sampler","create_shader_module","create_shader_module_spirv","create_shader_module_unchecked","create_surface","create_surface_unsafe","create_texture","create_texture_from_hal","create_texture_with_data","create_view","cull_mode","debugging","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","depth_compare","depth_fail_op","depth_ops","depth_or_array_layers","depth_or_array_layers","depth_read_only","depth_stencil","depth_stencil","depth_stencil_attachment","depth_write_enabled","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","desired_maximum_frame_latency","destroy","destroy","destroy","device","device_type","difference","difference","difference","difference","difference","difference","difference","difference","difference","difference","dimension","dimension","dimension","dispatch_workgroups","dispatch_workgroups_indirect","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downlevel_defaults","downlevel_webgl2_defaults","draw","draw","draw","draw","draw_indexed","draw_indexed","draw_indexed","draw_indexed","draw_indexed_indirect","draw_indexed_indirect","draw_indexed_indirect","draw_indexed_indirect","draw_indirect","draw_indirect","draw_indirect","draw_indirect","driver","driver_info","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dst_factor","dx12_shader_compiler","empty","empty","empty","empty","empty","empty","empty","empty","empty","empty","end_occlusion_query","end_of_pass_write_index","end_of_pass_write_index","end_pipeline_statistics_query","end_pipeline_statistics_query","entries","entries","entry_point","entry_point","entry_point","enumerate_adapters","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","execute_bundles","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","fail_op","features","features","finish","finish","flags","flags","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","force_fallback_adapter","force_fallback_adapter","format","format","format","format","format","format","format","format","formats","fragment","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_build_config","from_core","from_hal","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_plane","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_window","front","front_face","g","generate_report","get_bind_group_layout","get_bind_group_layout","get_capabilities","get_current_texture","get_default_config","get_downlevel_capabilities","get_info","get_mapped_range","get_mapped_range_mut","get_presentation_timestamp","get_texture_format_features","get_timestamp_period","gles_minor_version","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","guaranteed_format_features","has_color_aspect","has_depth_aspect","has_dynamic_offset","has_stencil_aspect","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","height","height","height","include_spirv_raw","include_wgsl","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert_debug_marker","insert_debug_marker","insert_debug_marker","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_combined_depth_stencil_format","is_compressed","is_depth_enabled","is_depth_read_only","is_depth_stencil_component","is_depth_stencil_format","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_enabled","is_enabled","is_full_resource","is_invalid","is_multi_planar_format","is_queue_empty","is_read_only","is_read_only","is_read_only","is_srgb","is_stencil_read_only","is_strip","is_surface_supported","is_wait","is_webgpu_compliant","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","label","label","label","label","label","label","label","label","label","label","label","label","label","label","label","label","label","label","label","layer_range","layout","layout","layout","layout","layout","limits","limits","limits","load","lod_max_clamp","lod_min_clamp","mag_filter","map_async","map_index","map_label","mapped_at_creation","mask","max_bind_groups","max_bindings_per_bind_group","max_buffer_size","max_compute_invocations_per_workgroup","max_compute_workgroup_size_x","max_compute_workgroup_size_y","max_compute_workgroup_size_z","max_compute_workgroup_storage_size","max_compute_workgroups_per_dimension","max_dynamic_storage_buffers_per_pipeline_layout","max_dynamic_uniform_buffers_per_pipeline_layout","max_inter_stage_shader_components","max_mips","max_non_sampler_bindings","max_push_constant_size","max_sampled_textures_per_shader_stage","max_samplers_per_shader_stage","max_storage_buffer_binding_size","max_storage_buffers_per_shader_stage","max_storage_textures_per_shader_stage","max_texture_array_layers","max_texture_dimension_1d","max_texture_dimension_2d","max_texture_dimension_3d","max_uniform_buffer_binding_size","max_uniform_buffers_per_shader_stage","max_vertex_attributes","max_vertex_buffer_array_stride","max_vertex_buffers","min_filter","min_storage_buffer_offset_alignment","min_uniform_buffer_offset_alignment","mip_level","mip_level","mip_level","mip_level","mip_level_count","mip_level_count","mip_level_count","mip_level_count","mip_level_size","mip_range","mipmap_filter","module","module","module","multi_draw_indexed_indirect","multi_draw_indexed_indirect_count","multi_draw_indirect","multi_draw_indirect_count","multisample","multiview","multiview","name","needs_ref_value","needs_ref_value","needs_ref_value","new","not","not","not","not","not","not","not","not","not","not","occlusion_query_set","offset","offset","offset","on_submitted_work_done","on_uncaptured_error","operation","ops","origin","origin","origin","origin","panic_on_timeout","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pass_op","physical_size","planes","poll","poll_all","polygon_mode","pop_debug_group","pop_debug_group","pop_debug_group","pop_error_scope","power_preference","power_preference","premultiplied_alpha","premultiplied_alpha","present","present_mode","present_modes","primitive","push_constant_ranges","push_debug_group","push_debug_group","push_debug_group","push_error_scope","query_set","query_set","r","range","read_mask","ref_second_blend_source","remove","remove","remove","remove","remove","remove","remove","remove","remove","remove","remove_srgb_suffix","request_adapter","request_device","required_features","required_features","required_limits","resolve_query_set","resolve_target","resource","rows_per_image","sample_count","sample_count","sample_count","sample_count_supported","sample_type","set","set","set","set","set","set","set","set","set","set","set_bind_group","set_bind_group","set_bind_group","set_bind_group","set_bind_group","set_blend_constant","set_device_lost_callback","set_index_buffer","set_index_buffer","set_index_buffer","set_index_buffer","set_pipeline","set_pipeline","set_pipeline","set_pipeline","set_pipeline","set_push_constants","set_push_constants","set_push_constants","set_push_constants","set_push_constants","set_scissor_rect","set_stencil_reference","set_vertex_buffer","set_vertex_buffer","set_vertex_buffer","set_vertex_buffer","set_viewport","shader_location","shader_model","size","size","size","size","size","size","size_multiple_requirement","slice","slope_scale","source","source","source","source","source","src_factor","stages","start_capture","stencil","stencil_ops","stencil_read_only","step_mode","stop_capture","store","strip_index_format","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","submit","suboptimal","supported_sample_counts","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","targets","texture","texture","texture","texture","texture","timestamp_writes","timestamp_writes","to_2d","to_3d","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_str","to_string","to_string","to_string","to_string","to_string","to_tagged","to_untagged","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","topology","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unclipped_depth","union","union","union","union","union","union","union","union","union","union","unmap","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","usage","usage","usage","usage","usage","usages","uses_constant","using_alignment","using_resolution","util","vendor","vertex","vertex_attr_array","view","view","view_formats","view_formats","visibility","wait","wait_for","width","width","width","with_env","write_buffer","write_buffer_with","write_mask","write_mask","write_texture","write_timestamp","write_timestamp","write_timestamp","x","x","y","y","z","access","format","has_dynamic_offset","min_binding_size","multisampled","sample_type","ty","view_dimension","view_dimension","read_only","dxc_path","dxil_path","description","source","source","raw_display_handle","raw_window_handle","block","channel","filterable","Label","MAX_BIND_GROUPS","MAX_COLOR_ATTACHMENTS","MAX_VERTEX_BUFFERS","None","RawString","Some","any_surface","api","binding_model","command","device","error","gfx_if_dx12","gfx_if_dx12_hidden","gfx_if_empty","gfx_if_empty_hidden","gfx_if_gles","gfx_if_gles_hidden","gfx_if_metal","gfx_if_metal_hidden","gfx_if_vulkan","gfx_if_vulkan_hidden","gfx_select","global","hal_api","hal_label","hub","id","identity","instance","pipeline","present","registry","resource","storage","validation","AnySurface","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","backend","borrow","borrow_mut","components_from","deref","deref_mut","downcast","downcast_ref","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","take","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Empty","Gles","Vulkan","ArrayUnsupported","BindError","BindGroup","BindGroupDescriptor","BindGroupDynamicBindingData","BindGroupEntry","BindGroupLayout","BindGroupLayoutDescriptor","BindGroupLayoutEntryError","BindGroupLayouts","BindingArrayLengthMismatch","BindingArrayPartialLengthMismatch","BindingArrayZeroLength","BindingRangeTooLarge","BindingResource","BindingSizeTooSmall","BindingTypeMaxCountError","BindingTypeMaxCountErrorKind","BindingZeroSize","BindingZone","BindingsNumMismatch","Buffer","BufferArray","BufferBinding","BufferRangeTooLarge","ConflictBinding","CreateBindGroupError","CreateBindGroupLayoutError","CreatePipelineLayoutError","DepthStencilAspect","Device","Device","Device","DuplicateBinding","DynamicBindingOutOfBounds","DynamicStorageBuffers","DynamicUniformBuffers","Entry","GetBindGroupLayoutError","InvalidBindGroupLayout","InvalidBindingIndex","InvalidBuffer","InvalidGroupIndex","InvalidLayout","InvalidPipeline","InvalidSampler","InvalidStorageTextureFormat","InvalidStorageTextureMipLevelCount","InvalidTexture","InvalidTextureDimension","InvalidTextureMultisample","InvalidTextureSampleType","InvalidTextureView","InvalidVisibility","LateMinBufferBindingSizeMismatch","MisalignedPushConstantRange","MismatchedDynamicOffsetCount","MissingBindingDeclaration","MissingBufferUsage","MissingDownlevelFlags","MissingFeatures","MissingFeatures","MissingStages","MissingTextureUsage","MoreThanOnePushConstantRangePerStage","PartialRangeMatch","Pipeline","PipelineLayout","PipelineLayoutDescriptor","PushConstantRangeTooLarge","PushConstantUploadError","ResourceUsageConflict","SampleTypeFloatFilterableBindingMultisampled","SampledTextures","Sampler","SamplerArray","Samplers","SingleBindingExpected","Stage","StorageBuffers","StorageReadNotSupported","StorageTextureCube","StorageTextureReadWrite","StorageTextures","TextureView","TextureViewArray","TooLarge","TooManyBindings","TooManyBindings","TooManyGroups","Unaligned","UnalignedBufferOffset","UnalignedDynamicBinding","UniformBuffers","UnmatchedStages","WrongBindingType","WrongSamplerComparison","WrongSamplerFiltering","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info","as_info","as_info_mut","as_info_mut","as_info_mut","bind_group_layouts","binding","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bound_size","buffer_id","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","compact_index","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","components_into","count","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","entries","entries","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_pretty","fmt_pretty","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","group_index","hash","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","kind","label","label","label","label","layout","limit","offset","push_constant_ranges","resource","shader_size","size","source","source","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","zone","actual","alignment","binding","binding","binding_range","buffer_size","expected","group","group","group","idx","idx","limit_name","maximum_dynamic_offset","offset","offset","actual","actual","actual","actual","actual","binding","binding","binding","binding","binding","binding","binding","binding","binding","buffer","buffer","expected","expected","expected","expected","given","layout_cmp","layout_dimension","layout_flt","layout_format","layout_multisampled","layout_sample_type","limit","min","mip_level_count","range","sampler_cmp","sampler_flt","size","view_dimension","view_format","view_format","view_samples","binding","binding","error","maximum","actual","bound","index","index","index","intersected","max","max","provided","range","actual","actual","actual","end_offset","idx","idx","idx","matched","missing","offset","range","unmatched","AlreadyStarted","AlreadyStopped","AttachmentErrorLocation","AttachmentSampleCountMismatch","AttachmentsDimensionMismatch","BakedCommands","BasePassRef","BeginOcclusionQuery","BeginPipelineStatisticsQuery","Beginning","Bind","Bind","BindGroupIndexOutOfRange","BindGroupIndexOutOfRange","BindingSizeTooSmall","BindingSizeTooSmall","BufferOffsetAlignment","BufferOverrun","BufferOverrun","BufferOverrun","Bundle","Clear","ClearError","Color","ColorAttachment","ColorAttachment","ColorAttachmentError","CommandBuffer","CommandBufferMutable","CommandEncoderError","ComputePass","ComputePassDescriptor","ComputePassError","ComputePassErrorInner","ComputePassTimestampWrites","CopyAspectNotOne","CopyDstMissingAspects","CopyError","CopyFromForbiddenTextureFormat","CopySide","CopySrcMissingAspects","CopyToForbiddenTextureFormat","CreateRenderBundleError","Depth","Destination","DestroyedBuffer","DestroyedBuffer","Device","Device","Device","Device","Device","Discard","Dispatch","Dispatch","DispatchError","Draw","Draw","DrawError","Encoder","Encoder","Encoder","Encoder","End","EndOcclusionQuery","EndPipelineStatisticsQuery","ExecuteBundle","ExecutionError","ExternalCopyToForbiddenTextureFormat","ImageCopyBuffer","ImageCopyTexture","ImageCopyTextureTagged","IncompatibleBindGroup","IncompatibleBindGroup","IncompatibleBundleReadOnlyDepthStencil","IncompatibleBundleTargets","IncompatiblePipelineRods","IncompatiblePipelineTargets","IncompatibleType","IndexBeyondLimit","IndirectBufferOverrun","IndirectBufferOverrun","IndirectCountBufferOverrun","InstanceBeyondLimit","Invalid","InvalidAttachment","InvalidBindGroup","InvalidBindGroup","InvalidBindGroup","InvalidBindGroup","InvalidBuffer","InvalidBuffer","InvalidBuffer","InvalidBuffer","InvalidBytesPerRow","InvalidCommandEncoder","InvalidCopySize","InvalidDepthOps","InvalidDepthStencilAttachmentFormat","InvalidDepthTextureExtent","InvalidDevice","InvalidDevice","InvalidDevice","InvalidDimensionExternal","InvalidDynamicOffsetCount","InvalidFormat","InvalidGroupSize","InvalidIndirectBuffer","InvalidMipLevel","InvalidPipeline","InvalidPipeline","InvalidPopDebugGroup","InvalidPopDebugGroup","InvalidQuerySet","InvalidQuerySet","InvalidQuerySet","InvalidQuerySet","InvalidRenderBundle","InvalidResolveSampleCounts","InvalidRowsPerImage","InvalidSampleCount","InvalidSampleCount","InvalidScissorRect","InvalidStencilOps","InvalidTexture","InvalidTexture","InvalidTextureAspect","InvalidTextureLayerRange","InvalidTextureLevelRange","InvalidTextureMipLevel","InvalidValuesOffset","InvalidViewportDepth","InvalidViewportRect","Load","LoadOp","MemoryInitFailure","MismatchedResolveTextureFormat","MissingAttachments","MissingBlendConstant","MissingBufferUsage","MissingBufferUsage","MissingBufferUsage","MissingClearTextureFeature","MissingCopyDstUsageFlag","MissingCopyDstUsageFlag","MissingCopySrcUsageFlag","MissingDownlevelFlags","MissingDownlevelFlags","MissingDownlevelFlags","MissingFeatures","MissingFeatures","MissingIndexBuffer","MissingOcclusionQuerySet","MissingPipeline","MissingPipeline","MissingRenderAttachmentUsageFlag","MissingTextureAspect","MissingTextureUsage","MissingVertexBuffer","MultiViewDimensionMismatch","MultiViewMismatch","NoValidTextureClearMode","NotRecording","Occlusion","OutOfBounds","OutOfMemory","Pass","PassChannel","PassErrorScope","PipelineStatistics","PopDebugGroup","PushConstants","PushConstants","QueryError","QueryOverrun","QueryReset","QueryUse","QueryUse","QueryUseError","Rect","RenderBundle","RenderBundleDescriptor","RenderBundleEncoder","RenderBundleEncoderDescriptor","RenderBundleError","RenderCommand","RenderCommandError","RenderPass","RenderPassColorAttachment","RenderPassDepthStencilAttachment","RenderPassDescriptor","RenderPassError","RenderPassErrorInner","RenderPassTimestampLocation","RenderPassTimestampWrites","Resolve","ResolveError","ResourceUsageConflict","ResourceUsageConflict","SameSourceDestinationBuffer","SetBindGroup","SetIndexBuffer","SetPipelineCompute","SetPipelineRender","SetPushConstant","SetScissorRect","SetVertexBuffer","SetViewport","SimplifiedQueryType","Source","Store","StoreOp","SurfaceTextureDropped","TextureFormatsNotCopyCompatible","TextureOverrun","TextureViewIsNotRenderable","Timestamp","TooMany","Transfer","TransferError","UnalignedBufferOffset","UnalignedBufferOffset","UnalignedBufferOffset","UnalignedBytesPerRow","UnalignedCopyHeight","UnalignedCopyOriginX","UnalignedCopyOriginY","UnalignedCopySize","UnalignedCopyWidth","UnalignedFillSize","Unimplemented","Unimplemented","UnmatchedIndexFormats","UnspecifiedBytesPerRow","UnspecifiedRowsPerImage","UnsupportedResolveTargetFormat","UsageConflict","Use","UsedTwiceInsideRenderpass","VertexBeyondLimit","VertexBufferIndexOutOfRange","WriteTimestamp","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info","as_info_mut","as_info_mut","aspect","aspect","beginning_of_pass_write_index","beginning_of_pass_write_index","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer","bundle_ffi","channel","clear_value","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color_attachments","color_formats","color_space","commands","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","components_into","components_into","compute_ffi","default","default","default","default","depth","depth_stencil","depth_stencil_attachment","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dummy","dynamic_offsets","end_of_pass_write_index","end_of_pass_write_index","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","h","hash","hash","hash","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_finished","label","label","label","label","label","label","layout","load_op","mip_level","mip_level","multiview","new","new","new","occlusion_query_set","origin","origin","parent","parent_id","parent_id","premultiplied_alpha","push_constant_data","query_set","query_set","read_only","render_ffi","resolve_target","sample_count","scope","scope","scope","set_index_buffer","set_index_buffer","source","source","source","source","source","source","source","source","source","source","source","source","source","source","stencil","store_op","string_data","texture","texture","timestamp_writes","timestamp_writes","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","view","view","w","x","y","index","resolve","buffer_size","end_offset","start_offset","subresource_array_layer_count","subresource_base_array_layer","subresource_base_mip_level","subresource_mip_level_count","subresource_range_aspects","texture_format","texture_layer_range","texture_level_range","given","limit","buffer_size","end_offset","index","max","offset","current","diff","index","limit","buffer","diff","index","index","index_limit","instance_limit","last_index","last_instance","last_vertex","pipeline","slot","slot","vertex_limit","indexed","indirect","indirect","pipeline","pipeline","active_query_index","new_query_index","query_index","query_index","query_set_size","query_type","set_type","actual","expected","index","index","max","max","actual_extent","actual_location","actual_location","actual_samples","begin_count_offset","buffer_size","bundle_depth","bundle_stencil","count","count_buffer_size","dst","dst","end_count_offset","end_offset","expected_extent","expected_location","expected_location","expected_samples","format","location","location","location","location","offset","pass_depth","pass_stencil","reason","src","src","buffer_end_offset","buffer_size","buffer_start_offset","end_query","end_query","query_set_size","start_query","start_query","stride","aspect","aspect","aspect","buffer_size","count","dimension","dst_format","end_offset","end_offset","format","format","format","level","requested","sample_count","side","side","src_format","start_offset","start_offset","texture_size","total","wgpu_render_bundle_draw","wgpu_render_bundle_draw_indexed","wgpu_render_bundle_draw_indexed_indirect","wgpu_render_bundle_draw_indirect","wgpu_render_bundle_insert_debug_marker","wgpu_render_bundle_pop_debug_group","wgpu_render_bundle_push_debug_group","wgpu_render_bundle_set_bind_group","wgpu_render_bundle_set_index_buffer","wgpu_render_bundle_set_pipeline","wgpu_render_bundle_set_push_constants","wgpu_render_bundle_set_vertex_buffer","wgpu_compute_pass_begin_pipeline_statistics_query","wgpu_compute_pass_dispatch_workgroups","wgpu_compute_pass_dispatch_workgroups_indirect","wgpu_compute_pass_end_pipeline_statistics_query","wgpu_compute_pass_insert_debug_marker","wgpu_compute_pass_pop_debug_group","wgpu_compute_pass_push_debug_group","wgpu_compute_pass_set_bind_group","wgpu_compute_pass_set_pipeline","wgpu_compute_pass_set_push_constant","wgpu_compute_pass_write_timestamp","wgpu_render_pass_begin_occlusion_query","wgpu_render_pass_begin_pipeline_statistics_query","wgpu_render_pass_draw","wgpu_render_pass_draw_indexed","wgpu_render_pass_draw_indexed_indirect","wgpu_render_pass_draw_indirect","wgpu_render_pass_end_occlusion_query","wgpu_render_pass_end_pipeline_statistics_query","wgpu_render_pass_execute_bundles","wgpu_render_pass_insert_debug_marker","wgpu_render_pass_multi_draw_indexed_indirect","wgpu_render_pass_multi_draw_indexed_indirect_count","wgpu_render_pass_multi_draw_indirect","wgpu_render_pass_multi_draw_indirect_count","wgpu_render_pass_pop_debug_group","wgpu_render_pass_push_debug_group","wgpu_render_pass_set_bind_group","wgpu_render_pass_set_blend_constant","wgpu_render_pass_set_index_buffer","wgpu_render_pass_set_pipeline","wgpu_render_pass_set_push_constants","wgpu_render_pass_set_scissor_rect","wgpu_render_pass_set_stencil_reference","wgpu_render_pass_set_vertex_buffer","wgpu_render_pass_set_viewport","wgpu_render_pass_write_timestamp","BufferMapPendingClosure","Device","Device","DeviceDescriptor","DeviceError","DeviceLostCallback","DeviceLostClosure","DeviceLostClosureC","DeviceLostClosureRust","DeviceLostInvocation","HostMap","ImplicitPipelineContext","ImplicitPipelineIds","IncompatibleColorAttachment","IncompatibleDepthStencilAttachment","IncompatibleMultiview","IncompatibleSampleCount","Invalid","InvalidDevice","InvalidQueueId","Lost","MissingDownlevelFlags","MissingFeatures","OutOfMemory","Read","RenderBundle","RenderPassCompatibilityCheckType","RenderPassCompatibilityError","RenderPipeline","ResourceCreationFailed","SHADER_STAGE_COUNT","StuckGpu","UserClosures","WaitIdleError","Write","WrongDevice","WrongSubmissionIndex","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","any_device","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","callback","callback","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","create_buffer_from_hal","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","device_lost_invocations","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_c","from_rust","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","global","group_ids","group_ids","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_valid","label","mappings","queue","required_features","required_limits","resource","root_id","root_id","source","submissions","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","user_data","actual","actual","actual","actual","expected","expected","expected","expected","indices","ty","ty","ty","ty","AnyDevice","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","downcast","downcast_clone","downcast_ref","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Buffer","BufferStillMapped","DestroyedBuffer","DestroyedBuffer","DestroyedTexture","DestroyedTexture","InvalidQueue","MemoryInitFailure","Queue","Queue","Queue","QueueSubmitError","QueueWriteError","StagingBuffer","StuckGpu","SubmittedWorkDoneClosure","SubmittedWorkDoneClosureC","SurfaceOutputDropped","SurfaceUnconfigured","TempResource","Texture","Transfer","Unmap","WrappedSubmissionIndex","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","callback","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","device","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_c","from_rust","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","index","info","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","queue_id","raw","source","source","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","user_data","CreateDeviceError","Device","FailedToCreateZeroBuffer","OutOfMemory","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","fmt","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","source","to_owned","to_smolstr","to_string","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","ContextError","ErrorFormatter","PrettyError","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","bind_group_label","bind_group_layout_label","borrow","borrow","borrow_mut","borrow_mut","buffer_label","buffer_label_with_key","cause","command_buffer_label","components_from","components_from","compute_pipeline_label","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","error","fmt","fmt","fmt_pretty","fmt_pretty","format_pretty_any","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","label","label","label_key","note","query_set_label","render_pipeline_label","sampler_label","source","string","texture_label","texture_label_with_key","texture_view_label","texture_view_label_with_key","to_smolstr","to_string","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Global","GlobalReport","adapt_into_using","adapt_into_using","adapter_as_hal","adapter_downlevel_capabilities","adapter_drop","adapter_features","adapter_get_info","adapter_get_presentation_timestamp","adapter_get_texture_format_features","adapter_is_surface_supported","adapter_limits","adapter_request_device","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","bind_group_drop","bind_group_label","bind_group_layout_drop","bind_group_layout_label","borrow","borrow","borrow_mut","borrow_mut","buffer_destroy","buffer_drop","buffer_get_mapped_range","buffer_label","buffer_map_async","buffer_unmap","clear_backend","command_buffer_drop","command_buffer_label","command_encoder_clear_buffer","command_encoder_clear_texture","command_encoder_copy_buffer_to_buffer","command_encoder_copy_buffer_to_texture","command_encoder_copy_texture_to_buffer","command_encoder_copy_texture_to_texture","command_encoder_drop","command_encoder_finish","command_encoder_insert_debug_marker","command_encoder_pop_debug_group","command_encoder_push_debug_group","command_encoder_resolve_query_set","command_encoder_run_compute_pass","command_encoder_run_render_pass","command_encoder_write_timestamp","components_from","components_from","compute_pipeline_drop","compute_pipeline_get_bind_group_layout","compute_pipeline_label","create_adapter_from_hal","create_buffer_error","create_buffer_from_hal","create_device_from_hal","create_render_bundle_error","create_texture_error","create_texture_from_hal","deref","deref","deref_mut","deref_mut","device_as_hal","device_create_bind_group","device_create_bind_group_layout","device_create_buffer","device_create_command_encoder","device_create_compute_pipeline","device_create_pipeline_layout","device_create_query_set","device_create_render_bundle_encoder","device_create_render_pipeline","device_create_sampler","device_create_shader_module","device_create_shader_module_spirv","device_create_texture","device_destroy","device_downlevel_properties","device_drop","device_features","device_fence_as_hal","device_label","device_limits","device_mark_lost","device_poll","device_set_device_lost_closure","device_start_capture","device_stop_capture","downcast","downcast","drop","drop","drop","enumerate_adapters","eq","equivalent","equivalent","equivalent","fmt","from","from","from_angle","from_angle","from_hal_instance","from_instance","from_stimulus","from_stimulus","generate_report","gl","hub_report","init","init","instance","instance_as_hal","instance_create_surface","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","pipeline_layout_drop","pipeline_layout_label","poll_all_devices","query_set_drop","query_set_label","queue_create_staging_buffer","queue_drop","queue_get_timestamp_period","queue_on_submitted_work_done","queue_submit","queue_validate_write_buffer","queue_write_buffer","queue_write_staging_buffer","queue_write_texture","render_bundle_drop","render_bundle_encoder_finish","render_bundle_label","render_pipeline_drop","render_pipeline_get_bind_group_layout","render_pipeline_label","request_adapter","sampler_drop","sampler_label","shader_module_drop","shader_module_label","surface_as_hal","surface_configure","surface_drop","surface_get_capabilities","surface_get_current_texture","surface_present","surface_texture_discard","surfaces","surfaces","surfaces","texture_as_hal","texture_create_view","texture_destroy","texture_drop","texture_label","texture_view_drop","texture_view_label","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","vulkan","HalApi","VARIANT","create_instance_from_hal","get_surface","hub","instance_as_hal","Hub","HubReport","Hubs","adapt_into_using","adapt_into_using","adapt_into_using","adapters","adapters","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","bind_group_layouts","bind_group_layouts","bind_groups","bind_groups","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","buffers","buffers","command_buffers","command_buffers","components_from","components_from","components_from","components_into","compute_pipelines","compute_pipelines","deref","deref","deref","deref_mut","deref_mut","deref_mut","devices","devices","downcast","downcast","downcast","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","generate_report","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","is_empty","pipeline_layouts","pipeline_layouts","query_sets","query_sets","queues","queues","render_bundles","render_bundles","render_pipelines","render_pipelines","samplers","samplers","shader_modules","shader_modules","staging_buffers","texture_views","texture_views","textures","textures","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","AdapterId","BindGroupId","BindGroupLayoutId","BufferId","CommandBufferId","CommandEncoderId","ComputePassEncoderId","ComputePipelineId","DeviceId","EPOCH_MASK","Id","PipelineLayoutId","QuerySetId","QueueId","RenderBundleEncoderId","RenderBundleId","RenderPassEncoderId","RenderPipelineId","SamplerId","ShaderModuleId","StagingBufferId","SurfaceId","TextureId","TextureViewId","TypedId","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","backend","borrow","borrow_mut","clone","clone_into","cmp","compare","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from","from_angle","from_raw","from_stimulus","hash","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_raw","into_raw","into_stimulus","partial_cmp","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","unzip","unzip","upcast","zip","zip","GlobalIdentityHandlerFactory","IdentityHandlerFactory","IdentityManager","IdentityManagerFactory","Input","Input","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","autogenerate_ids","autogenerate_ids","borrow","borrow","borrow_mut","borrow_mut","components_from","components_from","components_into","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","fmt","fmt","free","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","input_to_id","input_to_id","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","mark_as_used","new","process","spawn","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Adapter","AdapterInputs","DeviceLost","FailedLimit","GetSurfaceSupportError","HalSurface","IdSet","Instance","Internal","InvalidAdapter","InvalidAdapter","InvalidAdapter","InvalidAdapter","InvalidSurface","InvalidSurface","InvalidSurface","IsSurfaceSupportedError","LimitsExceeded","Mask","NoGraphicsQueue","NotFound","OutOfMemory","RequestAdapterError","RequestAdapterOptions","RequestDeviceError","Surface","Unsupported","UnsupportedFeature","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info","as_info_mut","as_info_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","compatible_surface","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","force_fallback_adapter","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_capabilities","gl","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_surface_supported","label","name","new","parse_backends_from_comma_list","power_preference","raw","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","vulkan","ABSTRACT_FLOAT","ABSTRACT_INT","ABSTRACT_WIDTH","Abs","AbstractFloat","AbstractFloat","AbstractInt","AbstractInt","AccelerationStructure","Access","AccessIndex","Acos","Acosh","Add","Add","AddressSpace","All","And","And","Any","Arena","Array","ArrayLength","ArraySize","As","Asin","Asinh","Atan","Atan2","Atanh","Atomic","Atomic","AtomicCompareExchangeWeakResult","AtomicFunction","AtomicResult","Auto","BOOL","BOOL_WIDTH","Barrier","Barrier","BaseInstance","BaseVertex","Bgra8Unorm","Bi","Bias","Binary","BinaryOperator","Binding","BindingArray","BitwiseNot","Block","Block","Bool","Bool","Break","BuiltIn","BuiltIn","ByName","ByNameOrId","Bytes","Call","CallResult","Ceil","Center","Centroid","Clamp","ClipDistance","Coarse","Compose","Compute","ConservativeDepth","Constant","Constant","Constant","Continue","Cos","Cosh","CountLeadingZeros","CountOneBits","CountTrailingZeros","Cross","Cube","CullDistance","D1","D2","D3","Default","Degrees","Depth","Derivative","DerivativeAxis","DerivativeControl","Determinant","Distance","Divide","Dot","Dynamic","EarlyDepthTest","Emit","EntryPoint","Equal","Exact","Exchange","ExclusiveOr","ExclusiveOr","Exp","Exp2","Expression","ExtractBits","F32","F32","F64","F64","FaceForward","FastHashMap","FastHashSet","FastIndexMap","FastIndexSet","FindLsb","FindMsb","Fine","Flat","Float","Floor","Fma","Fract","FragDepth","Fragment","Frexp","FrexpResult","FrontFacing","Function","Function","FunctionArgument","FunctionArgument","FunctionResult","GlobalInvocationId","GlobalVariable","GlobalVariable","Gradient","Greater","GreaterEqual","GreaterEqual","Handle","Handle","I32","I32","I32","I64","I64","If","Image","ImageClass","ImageDimension","ImageLoad","ImageQuery","ImageQuery","ImageSample","ImageStore","InclusiveOr","InclusiveOr","Initialize","InsertBits","InstanceIndex","Interpolation","Inverse","InverseSqrt","IsInf","IsNan","Kill","LOAD","Ldexp","Length","Less","LessEqual","LessEqual","Linear","Literal","Literal","Load","LocalInvocationId","LocalInvocationIndex","LocalVariable","LocalVariable","Location","Log","Log2","LogicalAnd","LogicalNot","LogicalOr","Loop","Math","MathFunction","Matrix","Max","Max","Min","Min","Mix","Modf","ModfResult","Module","Modulo","Multiply","Negate","None","None","Normalize","NotEqual","NumLayers","NumLevels","NumSamples","NumWorkGroups","Outer","Override","Pack2x16float","Pack2x16snorm","Pack2x16unorm","Pack4x8snorm","Pack4x8unorm","Perspective","PointCoord","PointSize","Pointer","Position","Pow","PredeclaredType","PrimitiveIndex","Private","Proceed","PushConstant","Quad","R16Float","R16Sint","R16Snorm","R16Uint","R16Unorm","R32Float","R32Sint","R32Uint","R8Sint","R8Snorm","R8Uint","R8Unorm","Radians","Range","RayQuery","RayQuery","RayQueryFunction","RayQueryGetIntersection","RayQueryProceedResult","Reflect","Refract","Relational","RelationalFunction","ResourceBinding","Return","ReverseBits","Rg11b10Float","Rg16Float","Rg16Sint","Rg16Snorm","Rg16Uint","Rg16Unorm","Rg32Float","Rg32Sint","Rg32Uint","Rg8Sint","Rg8Snorm","Rg8Uint","Rg8Unorm","Rgb10a2Uint","Rgb10a2Unorm","Rgba16Float","Rgba16Sint","Rgba16Snorm","Rgba16Uint","Rgba16Unorm","Rgba32Float","Rgba32Sint","Rgba32Uint","Rgba8Sint","Rgba8Snorm","Rgba8Uint","Rgba8Unorm","Round","STORAGE","STORE","Sample","SampleIndex","SampleLevel","SampleMask","Sampled","Sampler","Sampling","Saturate","Scalar","Scalar","ScalarKind","Select","ShaderStage","ShiftLeft","ShiftRight","Sign","Sin","Sinh","Sint","Size","SmoothStep","SourceLocation","Span","SpanContext","SpecialTypes","Splat","Sqrt","Statement","Step","Storage","Storage","StorageAccess","StorageFormat","Store","Struct","StructMember","Subtract","Subtract","Switch","SwitchCase","SwitchValue","Swizzle","SwizzleComponent","Tan","Tanh","Terminate","Transpose","Tri","Trunc","Type","TypeInner","U32","U32","U32","UNDEFINED","Uint","Unary","UnaryOperator","Unchanged","Uniform","UniqueArena","Unpack2x16float","Unpack2x16snorm","Unpack2x16unorm","Unpack4x8snorm","Unpack4x8unorm","ValuePointer","Vector","VectorSize","Vertex","VertexIndex","ViewIndex","W","WORK_GROUP","Width","WithSpan","WorkGroup","WorkGroupId","WorkGroupSize","WorkGroupUniformLoad","WorkGroupUniformLoadResult","X","X","XYZW","Y","Y","Z","Zero","ZeroValue","access","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","all","and_then","append","append","apply_default_interpolation","argument_count","arguments","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_inner","automatic_conversion_combine","automatically_converts_to","back","binding","binding","binding","binding","binding","bitand","bitand","bitand_assign","bitand_assign","bitor","bitor","bitor_assign","bitor_assign","bits","bits","bits","bits","bitxor","bitxor","bitxor_assign","bitxor_assign","body","body","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","canonical_form","check_contains_handle","check_contains_handle","check_contains_range","clear","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","compact","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","complement","complement","component_type","components","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","conservative","const_expressions","constants","contains","contains","cull","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","difference","difference","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","early_depth_test","emit_to_stderr","emit_to_stderr_with_path","emit_to_string","emit_to_string_with_path","empty","empty","entry_points","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expressions","extend","extend","extend","extend_block","fall_through","fetch_if","fetch_if_or_append","fetch_or_append","first_and_last","float","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_index","from_iter","from_iter","from_name","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_vec","from_zero_based_index_range","front","function","functions","generate_predeclared_type","generate_ray_desc_type","generate_ray_intersection_type","get","get_handle","get_mut","get_span","get_span","global_variables","group","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","implicit_derivatives","index","index","index","index","index","index_mut","indexable_length","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","insert","insert","insert","intersection","intersection","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_inner","into_inner","into_iter","into_iter","into_iter","into_iter","into_other","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_abstract","is_all","is_all","is_atomic_pointer","is_defined","is_dynamic_index","is_dynamically_sized","is_empty","is_empty","is_empty","is_empty","is_empty","is_mipmapped","is_multisampled","is_numeric","is_terminator","iter","iter","iter","iter","iter_mut","iter_names","iter_names","keywords","kind","len","len","len","length","line_number","line_position","local_variables","location","location","name","name","name","name","name","name","name","name","named_expressions","needs_pre_emit","new","new","new","new","new","new","new_from_bounds","next","not","not","offset","offset","one","originating_global","override","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pointer_space","predeclared_types","proc","push","range_from","ray_desc","ray_intersection","remove","remove","replace","result","scalar","scalar","scalar_kind","scalar_kind","scalar_width","set","set","size","source","space","span_iter","span_iter_mut","spans","special_types","splice","stage","sub","sub","sub_assign","sub_assign","subsume","symmetric_difference","symmetric_difference","to_built_in","to_ctx","to_hlsl_str","to_indexable_length","to_inner_atomic","to_inner_scalar","to_inner_vector","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_range","to_smolstr","to_string","to_wgsl","to_wgsl","to_wgsl","to_wgsl","toggle","toggle","total_span","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_get","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","ty","ty","ty","ty","ty","ty_inner","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","types","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","union","until","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","valid","value","width","width","with_capacity","with_context","with_span","workgroup_size","zero","zero_based_index_range","access","compare","interpolation","location","sampling","second_blend_source","invariant","accept","arg","arg1","arg2","arg3","argument","array_index","array_index","axis","base","base","committed","comparison","components","condition","convert","coordinate","coordinate","ctrl","depth_ref","expr","expr","expr","fun","fun","gather","image","image","image","index","index","kind","left","level","level","offset","op","op","pattern","pointer","query","query","reject","right","sample","sampler","size","size","ty","ty","ty","value","vector","access","format","kind","multi","multi","level","size","size","width","width","acceleration_structure","descriptor","result","x","y","accept","arguments","array_index","body","break_if","cases","condition","continuing","coordinate","fun","fun","function","image","pointer","pointer","pointer","query","reject","result","result","result","selector","value","value","value","value","arrayed","base","base","base","class","columns","comparison","dim","members","rows","scalar","scalar","scalar","size","size","size","size","space","space","span","stride","CULL_BACK_FACING","CULL_FRONT_FACING","CULL_NO_OPAQUE","CULL_OPAQUE","NO_OPAQUE","OPAQUE","RayFlag","SKIP_AABBS","SKIP_CLOSEST_HIT_SHADER","SKIP_TRIANGLES","TERMINATE_ON_FIRST_HIT","adapt_into_using","all","arrays_from","arrays_into","as_any","as_any_mut","bitand","bitand_assign","bitor","bitor_assign","bits","bits","bitxor","bitxor_assign","borrow","borrow_mut","clone","clone_into","complement","components_from","contains","default","deref","deref_mut","difference","downcast","drop","empty","eq","equivalent","equivalent","equivalent","extend","fmt","fmt","fmt","fmt","fmt","from","from_angle","from_bits","from_bits_retain","from_bits_retain","from_bits_truncate","from_iter","from_name","from_stimulus","glsl","hlsl","init","insert","intersection","intersects","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_iter","into_stimulus","is_all","is_empty","iter","iter_names","msl","not","remove","set","spv","sub","sub_assign","symmetric_difference","to_owned","toggle","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","union","upcast","ADJUST_COORDINATE_SPACE","ARRAY_OF_ARRAYS","BUFFER_STORAGE","BindingMap","CLIP_DISTANCE","COMPUTE_SHADER","CONSERVATIVE_DEPTH","CUBE_TEXTURES_ARRAY","CULL_DISTANCE","Custom","DOUBLE_TYPE","DRAW_PARAMETERS","DUAL_SOURCE_BLENDING","DYNAMIC_ARRAY_SIZE","Desktop","Embedded","EntryPointNotFound","Error","FIRST_INSTANCE_BINDING","FORCE_POINT_SIZE","FULL_IMAGE_FORMATS","Features","FmtError","IMAGE_LOAD_STORE","IMAGE_SIZE","INCLUDE_UNUSED_ITEMS","INSTANCE_INDEX","ImageMultipleSamplers","MULTISAMPLED_TEXTURES","MULTISAMPLED_TEXTURE_ARRAYS","MULTI_VIEW","MissingFeatures","MultiplePushConstants","NOPERSPECTIVE_QUALIFIER","Options","PipelineOptions","PushConstantItem","ReflectionInfo","SAMPLE_QUALIFIER","SAMPLE_VARIABLES","SUPPORTED_CORE_VERSIONS","SUPPORTED_ES_VERSIONS","TEXTURE_LEVELS","TEXTURE_SAMPLES","TEXTURE_SHADOW_LOD","TextureMapping","UnsupportedExternal","UnsupportedScalar","VaryingLocation","Version","VersionNotSupported","Writer","WriterFlags","access_path","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","all","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","binding_map","bitand","bitand","bitand_assign","bitand_assign","bitor","bitor","bitor_assign","bitor_assign","bits","bits","bits","bits","bitxor","bitxor","bitxor_assign","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","complement","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","contains","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","difference","difference","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","empty","entry_point","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_iter","from_iter","from_name","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","index","init","init","init","init","init","init","init","init","init","init","init","insert","insert","intersection","intersection","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_all","is_empty","is_empty","iter","iter","iter_names","iter_names","location","multiview","new","new_gles","not","not","offset","partial_cmp","push_constant_items","remove","remove","sampler","set","set","shader_stage","source","sub","sub","sub_assign","sub_assign","symmetric_difference","symmetric_difference","texture","texture_mapping","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","toggle","toggle","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uniforms","union","union","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","varying","version","write","writer_flags","zero_initialize_workgroup_memory","is_webgl","version","BindTarget","BindingMap","Custom","EntryPointError","Error","IoError","MissingBinding","Options","ReflectionInfo","ShaderModel","Unimplemented","UnsupportedScalar","V5_0","V5_1","V6_0","Writer","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","binding_array_size","binding_map","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","entry_point_names","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fake_missing_bindings","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","partial_cmp","push_constants_target","register","shader_model","source","space","special_constants_binding","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_str","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","write","zero_initialize_workgroup_memory","BindSamplerTarget","BindTarget","BindingMap","CapabilityNotSupported","EntryPointError","EntryPointResourceMap","EntryPointResources","Error","FeatureNotImplemented","Format","Inline","InlineSamplerIndex","MissingBindTarget","MissingBinding","MissingPushConstants","MissingSizesBuffer","Options","PipelineOptions","Resource","Slot","TranslationInfo","UnimplementedBindTarget","UnsupportedArrayOf","UnsupportedArrayOfType","UnsupportedAttribute","UnsupportedBinaryOp","UnsupportedBuiltIn","UnsupportedCall","UnsupportedCompose","UnsupportedFunction","UnsupportedRWStorageTexture","UnsupportedRayTracing","UnsupportedWriteableStorageBuffer","UnsupportedWriteableStorageTexture","Validation","Writer","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","allow_and_force_point_size","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","binding_array_size","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds_check_policies","buffer","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","entry_point_names","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fake_missing_bindings","finish","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","hash","hash","init","init","init","init","init","init","init","init","init","inline_samplers","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","lang_version","mutable","new","per_entry_point_map","push_constant_buffer","resources","sampler","sampler","sizes_buffer","source","spirv_cross_compatibility","texture","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","write","write_string","zero_initialize_workgroup_memory","Address","Always","BorderColor","ClampToBorder","ClampToEdge","ClampToZero","CompareFunc","Coord","Equal","Filter","Greater","GreaterEqual","InlineSampler","Less","LessEqual","Linear","MirroredRepeat","Nearest","Never","Normalized","NotEqual","OpaqueBlack","OpaqueWhite","Pixel","Repeat","TransparentBlack","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","address","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_str","as_str","as_str","as_str","as_str","border_color","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","compare_func","components_from","components_from","components_from","components_from","components_from","components_from","coord","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","hash","hash","hash","init","init","init","init","init","init","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","lod_clamp","mag_filter","max_anisotropy","min_filter","mip_filter","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","ADJUST_COORDINATE_SPACE","ARRAYED","Addresses","ArbitraryPrecisionFixedPointINTEL","ArbitraryPrecisionFloatingPointINTEL","ArbitraryPrecisionIntegersINTEL","AsmINTEL","AtomicFloat16AddEXT","AtomicFloat16MinMaxEXT","AtomicFloat32AddEXT","AtomicFloat32MinMaxEXT","AtomicFloat64AddEXT","AtomicFloat64MinMaxEXT","AtomicStorage","AtomicStorageOps","BFloat16ConversionINTEL","BindingInfo","BindingMap","BindlessTextureNV","BitInstructions","BlockingPipesINTEL","CLAMP_FRAG_DEPTH","CacheControlsINTEL","Capability","ClipDistance","ComputeDerivativeGroupLinearNV","ComputeDerivativeGroupQuadsNV","CooperativeMatrixKHR","CooperativeMatrixNV","CoreBuiltinsARM","CullDistance","DEBUG","DEPTH","DebugInfo","DebugInfoModuleINTEL","DemoteToHelperInvocation","DemoteToHelperInvocationEXT","DenormFlushToZero","DenormPreserve","DerivativeControl","DeviceEnqueue","DeviceGroup","DisplacementMicromapNV","DotProduct","DotProductInput4x8Bit","DotProductInput4x8BitKHR","DotProductInput4x8BitPacked","DotProductInput4x8BitPackedKHR","DotProductInputAll","DotProductInputAllKHR","DotProductKHR","DrawParameters","EntryPointNotFound","Error","ExpectAssumeKHR","FORCE_POINT_SIZE","FPFastMathModeINTEL","FPGAArgumentInterfacesINTEL","FPGABufferLocationINTEL","FPGAClusterAttributesINTEL","FPGADSPControlINTEL","FPGAInvocationPipeliningAttributesINTEL","FPGAKernelAttributesINTEL","FPGAKernelAttributesv2INTEL","FPGALatencyControlINTEL","FPGALoopControlsINTEL","FPGAMemoryAccessesINTEL","FPGAMemoryAttributesINTEL","FPGARegINTEL","FPMaxErrorINTEL","FeatureNotImplemented","Float16","Float16Buffer","Float16ImageAMD","Float64","FloatingPointModeINTEL","FragmentBarycentricKHR","FragmentBarycentricNV","FragmentDensityEXT","FragmentFullyCoveredEXT","FragmentMaskAMD","FragmentShaderPixelInterlockEXT","FragmentShaderSampleInterlockEXT","FragmentShaderShadingRateInterlockEXT","FragmentShadingRateKHR","FunctionFloatControlINTEL","FunctionPointersINTEL","GenericPointer","Geometry","GeometryPointSize","GeometryShaderPassthroughNV","GeometryStreams","GlobalVariableFPGADecorationsINTEL","GlobalVariableHostAccessINTEL","GroupNonUniform","GroupNonUniformArithmetic","GroupNonUniformBallot","GroupNonUniformClustered","GroupNonUniformPartitionedNV","GroupNonUniformQuad","GroupNonUniformRotateKHR","GroupNonUniformShuffle","GroupNonUniformShuffleRelative","GroupNonUniformVote","GroupUniformArithmeticKHR","Groups","IOPipesINTEL","Image1D","ImageBasic","ImageBuffer","ImageCubeArray","ImageFootprintNV","ImageGatherBiasLodAMD","ImageGatherExtended","ImageMSArray","ImageMipmap","ImageQuery","ImageReadWrite","ImageReadWriteLodAMD","ImageRect","ImageTypeFlags","IndirectReferencesINTEL","InputAttachment","InputAttachmentArrayDynamicIndexing","InputAttachmentArrayDynamicIndexingEXT","InputAttachmentArrayNonUniformIndexing","InputAttachmentArrayNonUniformIndexingEXT","Int16","Int64","Int64Atomics","Int64ImageEXT","Int8","IntegerFunctions2INTEL","InterpolationFunction","Kernel","KernelAttributesINTEL","LABEL_VARYINGS","Linkage","LiteralSampler","LongConstantCompositeINTEL","LoopFuseINTEL","MULTISAMPLED","Matrix","MemoryAccessAliasingINTEL","MeshShadingEXT","MeshShadingNV","MinLod","MissingCapabilities","MultiView","MultiViewport","NamedBarrier","Native","None","OptNoneINTEL","Options","PerViewAttributesNV","PhysicalStorageBufferAddresses","PhysicalStorageBufferAddressesEXT","PipeStorage","PipelineOptions","Pipes","Polyfill","RayCullMaskKHR","RayQueryKHR","RayQueryPositionFetchKHR","RayQueryProvisionalKHR","RayTracingDisplacementMicromapNV","RayTracingKHR","RayTracingMotionBlurNV","RayTracingNV","RayTracingOpacityMicromapEXT","RayTracingPositionFetchKHR","RayTracingProvisionalKHR","RayTraversalPrimitiveCullingKHR","RoundToInfinityINTEL","RoundingModeRTE","RoundingModeRTZ","RuntimeAlignedAttributeINTEL","RuntimeDescriptorArray","RuntimeDescriptorArrayEXT","SAMPLED","SampleMaskOverrideCoverageNV","SampleMaskPostDepthCoverage","SampleRateShading","Sampled1D","SampledBuffer","SampledCubeArray","SampledImageArrayDynamicIndexing","SampledImageArrayNonUniformIndexing","SampledImageArrayNonUniformIndexingEXT","SampledRect","Shader","ShaderClockKHR","ShaderEnqueueAMDX","ShaderInvocationReorderNV","ShaderLayer","ShaderNonUniform","ShaderNonUniformEXT","ShaderSMBuiltinsNV","ShaderStereoViewNV","ShaderViewportIndex","ShaderViewportIndexLayerEXT","ShaderViewportIndexLayerNV","ShaderViewportMaskNV","ShadingRateNV","SignedZeroInfNanPreserve","SparseResidency","SplitBarrierINTEL","StencilExportEXT","StorageBuffer16BitAccess","StorageBuffer8BitAccess","StorageBufferArrayDynamicIndexing","StorageBufferArrayNonUniformIndexing","StorageBufferArrayNonUniformIndexingEXT","StorageImageArrayDynamicIndexing","StorageImageArrayNonUniformIndexing","StorageImageArrayNonUniformIndexingEXT","StorageImageExtendedFormats","StorageImageMultisample","StorageImageReadWithoutFormat","StorageImageWriteWithoutFormat","StorageInputOutput16","StoragePushConstant16","StoragePushConstant8","StorageTexelBufferArrayDynamicIndexing","StorageTexelBufferArrayDynamicIndexingEXT","StorageTexelBufferArrayNonUniformIndexing","StorageTexelBufferArrayNonUniformIndexingEXT","StorageUniform16","StorageUniformBufferBlock16","SubgroupAvcMotionEstimationChromaINTEL","SubgroupAvcMotionEstimationINTEL","SubgroupAvcMotionEstimationIntraINTEL","SubgroupBallotKHR","SubgroupBufferBlockIOINTEL","SubgroupDispatch","SubgroupImageBlockIOINTEL","SubgroupImageMediaBlockIOINTEL","SubgroupShuffleINTEL","SubgroupVoteKHR","Tessellation","TessellationPointSize","TextureBlockMatchQCOM","TextureBoxFilterQCOM","TextureSampleWeightedQCOM","TileImageColorReadAccessEXT","TileImageDepthReadAccessEXT","TileImageStencilReadAccessEXT","TransformFeedback","USMStorageClassesINTEL","UniformAndStorageBuffer16BitAccess","UniformAndStorageBuffer8BitAccess","UniformBufferArrayDynamicIndexing","UniformBufferArrayNonUniformIndexing","UniformBufferArrayNonUniformIndexingEXT","UniformDecoration","UniformTexelBufferArrayDynamicIndexing","UniformTexelBufferArrayDynamicIndexingEXT","UniformTexelBufferArrayNonUniformIndexing","UniformTexelBufferArrayNonUniformIndexingEXT","UnstructuredLoopControlsINTEL","UnsupportedVersion","Validation","VariableLengthArrayINTEL","VariablePointers","VariablePointersStorageBuffer","Vector16","VectorAnyINTEL","VectorComputeINTEL","VulkanMemoryModel","VulkanMemoryModelDeviceScope","VulkanMemoryModelDeviceScopeKHR","VulkanMemoryModelKHR","WorkgroupMemoryExplicitLayout16BitAccessKHR","WorkgroupMemoryExplicitLayout8BitAccessKHR","WorkgroupMemoryExplicitLayoutKHR","Writer","WriterFlags","ZeroInitializeWorkgroupMemoryMode","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","all","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","binding_array_size","binding_map","bitand","bitand","bitand_assign","bitand_assign","bitor","bitor","bitor_assign","bitor_assign","bits","bits","bits","bits","bitxor","bitxor","bitxor_assign","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds_check_policies","capabilities","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","compare","complement","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","contains","debug_info","decorate_non_uniform_binding_array_access","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","difference","difference","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","empty","entry_point","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","extend","file_name","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_iter","from_iter","from_name","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_str","from_u32","get_capabilities_used","hash","hash","hash","hash","init","init","init","init","init","init","init","init","init","init","insert","insert","intersection","intersection","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_all","is_empty","is_empty","iter","iter","iter_names","iter_names","lang_version","new","not","not","partial_cmp","remove","remove","set","set","shader_stage","source_code","sub","sub","sub_assign","sub_assign","symmetric_difference","symmetric_difference","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","toggle","toggle","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","union","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","write","write_vec","zero_initialize_workgroup_memory","compact","SymbolTable","Typifier","adapt_into_using","adapt_into_using","add","add_root","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","components_from","components_from","default","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","get","grow","index","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","invalidate","lookup","new","pop_scope","push_scope","register_type","reset","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","wgsl","Frontend","ParseError","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","emit_to_stderr","emit_to_stderr_with_path","emit_to_string","emit_to_string_with_path","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","labels","location","message","new","parse","parse_str","source","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","wgsl","RESERVED","Alignment","ArrayLength","ArrayLengthDynamic","Atomic","AutomaticConversionFloatToInt","AutomaticConversionLossy","BoundsCheckPolicies","BoundsCheckPolicy","Call","Constant","ConstantEvaluator","ConstantEvaluatorError","Derivative","DivisionByZero","Dynamic","EIGHT","Emitter","EntryPoint","EntryPointArgument","EntryPointIndex","EntryPointLocal","ExpressionConstnessTracker","FOUR","Function","FunctionArg","FunctionArgument","FunctionArgumentNotFound","FunctionLocal","FunctionNotDefined","FunctionReturnsVoid","GlobalCtx","GlobalVariable","GlobalVariable","Handle","ImageExpression","IncompatibleOperands","IndexableLength","IndexableLengthError","InvalidAccess","InvalidAccessBase","InvalidAccessIndex","InvalidAccessIndexTy","InvalidArrayElementType","InvalidArrayLength","InvalidArrayLengthArg","InvalidBinaryOpArgs","InvalidCastArg","InvalidClamp","InvalidImage","InvalidMathArg","InvalidMathArgCount","InvalidPointer","InvalidScalar","InvalidStructMemberType","InvalidSubAccess","InvalidUnaryOpArg","InvalidVector","Known","LayoutError","LayoutErrorInner","Layouter","Literal","Load","LocalVariable","MIN_UNIFORM","MissingSpecialType","NameKey","Namer","NonPowerOfTwoWidth","NotImplemented","ONE","OutOfBoundsIndex","Overflow","POINTER_SPAN","RayQueryExpression","ReadZeroSkipWrite","RemainderByZero","ResolveContext","ResolveError","Restrict","SIXTEEN","ShiftedMoreThan32Bits","SplatScalarOnly","StructMember","SubexpressionsAreNotConstant","SwizzleOutOfBounds","SwizzleVectorOnly","TWO","Type","TypeLayout","TypeNotConstructible","TypeNotIndexable","TypeResolution","Unchecked","Value","WorkGroupUniformLoadResult","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","alignment","arguments","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","binding_array","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer","call","call_or","cast","cast_array","choose_policy","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","compare","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","const_expressions","constants","constants","contains","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","ensure_block_returns","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","finish","flatten_compose","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_glsl_function","for_glsl_module","for_wgsl_function","for_wgsl_module","force_non_const","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_arena","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_width","functions","global_vars","handle","hash","hash","hash","hash","hash","image_load","image_store","index","index","index","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","inner_with","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_aligned","is_const","is_running","local_vars","mul","mul","new","new","partial_cmp","reset","resolve","round_up","size","source","special_types","start","to_ctx","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_stride","to_string","to_string","to_string","to_string","to_string","to_string","to_wgsl","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_eval_and_append","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","types","types","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","with_locals","from","to","to_type","to_type","value","expr","expr","index","indexed","indexed","name","ty","BoundsCheckPolicies","BoundsCheckPolicy","Dynamic","Expression","GuardedIndex","IndexableLength","IndexableLengthError","InvalidArrayLength","Known","Known","ReadZeroSkipWrite","Restrict","TypeNotIndexable","Unchecked","access_needs_check","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","binding_array","borrow","borrow_mut","buffer","clone","clone_into","components_from","deref","deref_mut","downcast","drop","find_checked_indexes","fmt","from","from_angle","from_stimulus","image_load","image_store","index","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","ARGUMENT","Alignment","Argument","Argument","ArgumentCount","ArgumentType","ArrayStride","BINDINGS","BLOCKS","BindingArrayBaseTypeNotStruct","BindingCollision","BindingCollision","BreakOutsideOfLoopOrSwitch","CLIP_DISTANCE","COMPUTE","CONSTANTS","CONSTRUCTIBLE","CONTROL_FLOW_UNIFORMITY","COPY","CUBE_ARRAY_TEXTURES","CULL_DISTANCE","CallError","Capabilities","ComparisonSamplingMismatch","ComponentCount","ComponentType","Compose","Compose","ComposeError","Conflict","ConflictingCaseType","ConflictingSwitchCase","ConstExpression","ConstExpressionError","Constant","ConstantError","ContinueOutsideOfLoop","Corrupted","DATA","DERIVATIVE","DUAL_SOURCE_BLENDING","Disalignment","DoesntExist","DuplicateBuiltIn","EARLY_DEPTH_TEST","EXPRESSIONS","EmptyStruct","EntryPoint","EntryPointError","ExpectedBindingArrayType","ExpectedGlobalOrArgument","ExpectedGlobalVariable","ExpectedImageType","ExpectedSamplerType","Expression","ExpressionAlreadyInScope","ExpressionError","ExpressionInfo","ExpressionMismatch","FLOAT64","FRAGMENT","ForbiddenStageOperations","Function","Function","FunctionArgumentDoesntExist","FunctionError","FunctionInfo","GlobalUse","GlobalVariable","GlobalVariableError","HOST_SHAREABLE","IMPLICIT_LEVEL","IO_SHAREABLE","IndexMustBeConstant","IndexOutOfBounds","IndexableLength","Infinity","InitializerNotAllowed","InitializerType","InitializerType","InstructionsAfterReturn","InvalidAccelerationStructure","InvalidArgumentPointerSpace","InvalidArgumentType","InvalidArgumentType","InvalidArrayBaseType","InvalidArrayStride","InvalidArrayType","InvalidAtomic","InvalidAtomicResultType","InvalidAtomicWidth","InvalidAttributeInStage","InvalidBaseType","InvalidBinaryOperandTypes","InvalidBinding","InvalidBooleanVector","InvalidBuiltInStage","InvalidBuiltInType","InvalidCall","InvalidCastArgument","InvalidData","InvalidDepthReference","InvalidDepthSampleLevel","InvalidDerivative","InvalidDynamicArray","InvalidFloatArgument","InvalidGatherComponent","InvalidGatherDimension","InvalidGatherLevel","InvalidGlobalUsage","InvalidHandle","InvalidIfType","InvalidImageArrayIndex","InvalidImageArrayIndexType","InvalidImageClass","InvalidImageCoordinateType","InvalidImageOtherIndex","InvalidImageOtherIndexType","InvalidImageStore","InvalidIndexType","InvalidInputAttributeInStage","InvalidIntegerInterpolation","InvalidInterpolation","InvalidLocationAttributeCombination","InvalidLocationsWhileDualSourceBlending","InvalidPointerBase","InvalidPointerToUnsized","InvalidPointerType","InvalidRayDescriptor","InvalidRayQueryExpression","InvalidRayQueryType","InvalidRayQueryType","InvalidReturnSpot","InvalidReturnType","InvalidSampleLevelBiasType","InvalidSampleLevelExactType","InvalidSampleLevelGradientType","InvalidSampleOffset","InvalidSelectTypes","InvalidSplatType","InvalidSplatType","InvalidStorePointer","InvalidStoreTypes","InvalidStoreValue","InvalidSwitchType","InvalidSwizzleComponent","InvalidType","InvalidType","InvalidType","InvalidType","InvalidUnaryOperandType","InvalidUsage","InvalidVectorType","InvalidWorkGroupUniformLoadResultType","LastCaseFallTrough","Layouter","Literal","Literal","LiteralError","LocalVariable","LocalVariableError","MULTISAMPLED_SHADING","MULTIVIEW","MatrixElementNotFloat","MemberMissingBinding","MemberOffset","MemberOffsetAfterStruct","MemberOutOfBounds","MemberOverlap","MissingBinding","MissingCapabilities","MissingCapability","MissingDefaultCase","MissingInterpolation","MissingTypeFlags","MissingVertexOutputPosition","ModuleInfo","MoreThanOnePushConstantUsed","MultipleDefaultCases","NaN","NegativeIndex","NonConst","NonConstInitializer","NonConstructibleReturnType","NonConstructibleType","NonHostShareable","NonUniformControlFlow","NonUniformWorkgroupUniformLoad","NotIOShareableType","NotInScope","OutOfRangeWorkgroupSize","PRIMITIVE_INDEX","PUSH_CONSTANT","PipelineInputRegularFunction","PipelineOutputRegularFunction","QUERY","RAY_QUERY","READ","Result","ResultAlreadyInScope","ResultValue","SAMPLED_TEXTURE_AND_STORAGE_BUFFER_ARRAY_NON_UNIFORM_INDEXING","SAMPLER_NON_UNIFORM_INDEXING","SIZED","STORAGE_TEXTURE_16BIT_NORM_FORMATS","STRUCT_LAYOUTS","ShaderStages","StorageAddressSpaceWriteOnlyNotSupported","StructSpan","Type","Type","Type","Type","TypeError","TypeFlags","UNIFORM_BUFFER_AND_STORAGE_TEXTURE_ARRAY_NON_UNIFORM_INDEXING","UnexpectedEarlyDepthTest","UnexpectedWorkgroupSize","Uniformity","UniformityRequirements","UnsizedMember","UnsupportedCapability","UnsupportedCapability","UnsupportedSpecializedArrayLength","VERTEX","ValidationError","ValidationFlags","Validator","VaryingError","WORK_GROUP_BARRIER","WRITE","Width","Width","WidthError","WorkgroupUniformLoadExpressionMismatch","WorkgroupUniformLoadInvalidPointer","WrongArgumentCount","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","all","all","all","all","all","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","available_stages","bitand","bitand","bitand","bitand","bitand","bitand","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitor","bitor","bitor","bitor","bitor","bitor","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_literal_value","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","complement","complement","complement","complement","complement","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","contains","contains","contains","contains","contains","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","difference","difference","difference","difference","difference","difference","dominates_global_use","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dual_source_blending","empty","empty","empty","empty","empty","empty","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expression_count","extend","extend","extend","extend","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_name","from_name","from_name","from_name","from_name","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_entry_point","global_variable_count","index","index","index","index","index","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert","insert","insert","insert","insert","intersection","intersection","intersection","intersection","intersection","intersection","intersects","intersects","intersects","intersects","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_all","is_all","is_all","is_all","is_all","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","iter","iter","iter","iter","iter","iter","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","may_kill","new","non_uniform_result","not","not","not","not","not","not","ref_count","remove","remove","remove","remove","remove","remove","requirements","reset","sampling_set","set","set","set","set","set","set","source","source","source","source","source","source","source","source","source","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","toggle","toggle","toggle","toggle","toggle","toggle","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uniformity","uniformity","union","union","union","union","union","union","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","validate","validate_literal","index","index","required","required","seen","seen_expression","source","expected","given","index","alignment","alignment","alignment","expected","index","index","index","offset","offset","span","stride","location","location_mask","has_ref","image","sampler","error","function","handle","handle","index","index","name","name","name","name","pointer","source","source","space","value","required","seen","base","expected","index","index","offset","offset","size","space","span","stride","handle","handle","handle","handle","handle","name","name","name","name","name","source","source","source","source","source","source","stage","attribute","location","location","BLEND_CONSTANT","BindGroup","BlendFactorOnUnsupportedTarget","ColorAttachment","ColorState","ColorStateError","ComputePipeline","ComputePipelineDescriptor","ConservativeRasterizationNonFillPolygonMode","CreateComputePipelineError","CreateRenderPipelineError","CreateShaderModuleError","DepthStencilState","DepthStencilStateError","Device","Device","Device","FormatNotBlendable","FormatNotColor","FormatNotDepth","FormatNotRenderable","FormatNotRenderable","FormatNotStencil","FragmentState","Generation","Implicit","Implicit","ImplicitBindGroupCount","ImplicitLayoutError","IncompatibleFormat","Internal","Internal","InvalidGroupIndex","InvalidLayout","InvalidLayout","InvalidMinMaxBlendFactors","InvalidSampleCount","InvalidSampleCount","InvalidSampleCount","InvalidVertexAttributeOffset","InvalidWriteMask","MissingDownlevelFlags","MissingDownlevelFlags","MissingFeatures","MissingFeatures","MissingIds","Naga","Parsing","Pipeline","PipelineExpectsShaderToUseDualSourceBlending","PipelineFlags","ProgrammableStageDescriptor","ReflectionError","RenderPipeline","RenderPipelineDescriptor","STENCIL_REFERENCE","ShaderError","ShaderExpectsPipelineToUseDualSourceBlending","ShaderLocationClash","ShaderModule","ShaderModuleDescriptor","ShaderModuleSource","Stage","Stage","StripIndexFormatForNonStripTopology","TooManyVertexAttributes","TooManyVertexBuffers","UnalignedShader","UnalignedVertexStride","Validation","VertexBufferLayout","VertexState","VertexStep","VertexStrideTooLarge","WRITES_DEPTH","WRITES_STENCIL","Wgsl","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","array_stride","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info","as_info","as_info_mut","as_info_mut","as_info_mut","attributes","bitand","bitand_assign","bitor","bitor_assign","bits","bits","bitxor","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffers","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","components_into","contains","default","depth_stencil","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","difference","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","entry_point","eq","equivalent","equivalent","equivalent","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fragment","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits_retain","from_bits_retain","from_bits_truncate","from_iter","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","insert","intersection","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_empty","iter","iter_names","label","label","label","label","label","layout","layout","location","mode","module","multisample","multiview","not","primitive","remove","set","shader_bound_checks","source","source","source","source","source","source","stage","stage","stage","step_mode","stride","sub","sub_assign","symmetric_difference","targets","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","toggle","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","vertex","pipeline","shader","binding","error","error","factor","given","given","given","group","index","index","limit","limit","limit","location","offset","size","stage","stage","stride","strip_index_format","target","topology","bind","group","limit","AlreadyAcquired","ConfigureSurfaceError","Device","Device","Invalid","InvalidSurface","InvalidViewFormat","MissingDownlevelFlags","NotConfigured","PreviousOutputExists","StillReferenced","StuckGpu","SurfaceError","SurfaceOutput","TooLarge","UnsupportedAlphaMode","UnsupportedFormat","UnsupportedPresentMode","UnsupportedQueueFamily","UnsupportedUsage","ZeroArea","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","source","source","status","texture_id","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","available","available","available","height","max_texture_dimension_2d","requested","requested","requested","width","Registry","RegistryReport","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_into","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","element_size","eq","equivalent","equivalent","equivalent","fmt","fmt","force_replace","force_replace_with_error","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_empty","label_for_resource","num_allocated","num_error","num_kept_from_user","num_released_from_user","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","unregister_locked","upcast","upcast","Aborted","AccessError","AlreadyDestroyed","AlreadyMapped","AlreadyMapped","ArrayLayerCount","Aspects","Buffer","BufferAccessError","BufferAccessResult","BufferCopy","BufferDescriptor","BufferMapAsyncStatus","BufferMapCallback","BufferMapCallbackC","BufferMapOperation","ContextLost","CreateBufferError","CreateQuerySetError","CreateSamplerError","CreateTextureError","CreateTextureView","CreateTextureViewError","DestroyError","Destroyed","DestroyedBuffer","DestroyedTexture","Device","Device","Device","Device","Device","Dimension","Err","Error","Failed","FormatReinterpretation","HeightNotMultipleOf","Invalid","Invalid","Invalid","InvalidAlignment","InvalidAnisotropy","InvalidArrayLayerCount","InvalidAspect","InvalidCompressedDimension","InvalidCubeTextureViewSize","InvalidCubemapArrayTextureDepth","InvalidCubemapTextureDepth","InvalidDepthDimension","InvalidDimension","InvalidDimensionUsages","InvalidFilterModeWithAnisotropy","InvalidFormatUsages","InvalidLodMaxClamp","InvalidLodMinClamp","InvalidMipLevelCount","InvalidMultisampledFormat","InvalidMultisampledStorageBinding","InvalidMultisampledTextureViewDimension","InvalidRange","InvalidSampleCount","InvalidSampleCount","InvalidTexture","InvalidTextureViewDimension","InvalidUsage","InvalidUsage","InvalidUsageFlags","InvalidViewFormat","LimitExceeded","MagFilter","MapAborted","MapAlreadyPending","MapAlreadyPending","MaxBufferSize","MinFilter","MipLevelCount","MipmapFilter","MissingBufferUsage","MissingDownlevelFlags","MissingDownlevelFlags","MissingFeatures","MissingFeatures","MissingFeatures","MultisampledDepthOrArrayLayer","MultisampledNotRenderAttachment","NegativeRange","None","NotMapped","NotMultipleOfBlockHeight","NotMultipleOfBlockWidth","Ok","OutOfBoundsOverrun","OutOfBoundsUnderrun","OutOfMemory","QuerySet","QuerySetDescriptor","RenderPass","Resource","ResourceInfo","Sampler","SamplerDescriptor","SamplerFilterErrorType","StagingBuffer","Success","Surface","TYPE","Texture","TextureClearMode","TextureDescriptor","TextureDimensionError","TextureErrorDimension","TextureView","TextureViewDescriptor","TextureViewDestroyError","TextureViewNotRenderableReason","TooManyArrayLayers","TooManyMipLevels","TooManyObjects","TooManyQueries","UnalignedOffset","UnalignedRange","UnalignedRangeSize","UnalignedSize","Usage","UsageMismatch","WidthNotMultipleOf","X","Y","Z","Zero","ZeroArrayLayerCount","ZeroCount","ZeroMipLevelCount","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","address_modes","anisotropy_clamp","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info","as_info","as_info","as_info","as_info","as_info","as_info_mut","as_info_mut","as_info_mut","as_info_mut","as_info_mut","as_info_mut","as_info_mut","border_color","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","callback","callback","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","compare","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","count","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dimension","dimension","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_c","from_rust","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","host","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_equal","is_unique","label","label","label","label","label","label","label","label","label","lod_max_clamp","lod_min_clamp","mag_filter","mapped_at_creation","min_filter","mip_level_count","mipmap_filter","range","ref_count","sample_count","size","size","source","source","source","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","usage","usage","user_data","view_formats","end","index","index","max","min","offset","range_size","start","maximum","requested","count","maximum","anisotropic_clamp","filter_mode","filter_type","lod_max_clamp","lod_min_clamp","maximum","requested","depth","depth","dim","requested","requested","requested","requested_aspect","texture","texture","texture_format","total","total","view","view","clear_view","clear_views","is_color","block_height","block_width","dim","format","format","format","format","given","height","height","limit","multiple","multiple","width","width","Storage","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","components_into","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","index","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","BadStorageFormat","Binding","BindingError","BindingLayoutSource","Derived","Filtering","FilteringError","Float","InconsistentlyDerivedType","Input","InputError","InputNotConsumed","Integer","Interface","InterfaceVar","InterpolationMismatch","InvalidModule","InvalidWorkgroupSize","Invisible","Missing","Missing","MissingBufferUsageError","MissingEntryPoint","MissingTextureUsageError","NumericType","Provided","SamplingMismatch","StageError","StageIo","TooManyVaryings","UnsupportedTextureStorageAccess","WrongAddressSpace","WrongBufferSize","WrongSamplerComparison","WrongTextureClass","WrongTextureViewDimension","WrongType","WrongType","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_buffer_usage","check_stage","check_texture_format","check_texture_usage","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fragment_uses_dual_source_blending","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","new_derived","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","vertex_attribute","binding","binding","binding","dim","is_array","shader","shader","current","current_total","error","error","limit","limit","location","location","sampler","texture","total","used","var","AABBs","ACCELERATION_STRUCTURE_SCRATCH","ALLOW_COMPACTION","ALLOW_UPDATE","AccelerationStructure","AccelerationStructureAABBs","AccelerationStructureBarrier","AccelerationStructureBuildFlags","AccelerationStructureBuildMode","AccelerationStructureBuildSizes","AccelerationStructureDescriptor","AccelerationStructureEntries","AccelerationStructureFormat","AccelerationStructureGeometryFlags","AccelerationStructureInstances","AccelerationStructureTriangleIndices","AccelerationStructureTriangleTransform","AccelerationStructureTriangles","AccelerationStructureUses","AcquiredSurfaceTexture","Adapter","Adapter","Alignments","Api","Attachment","AttachmentOps","BOTTOM_LEVEL_ACCELERATION_STRUCTURE_INPUT","BUILD_INPUT","BUILD_OUTPUT","BindGroup","BindGroupDescriptor","BindGroupEntry","BindGroupLayout","BindGroupLayoutDescriptor","BindGroupLayoutFlags","BottomLevel","Buffer","BufferBarrier","BufferBinding","BufferCopy","BufferDescriptor","BufferMapping","BufferTextureCopy","BufferUses","Build","BuildAccelerationStructureDescriptor","COLOR","COLOR_ATTACHMENT","COLOR_ATTACHMENT_BLEND","COLOR_TARGET","COMPLEX","COPY_DST","COPY_DST","COPY_DST","COPY_SRC","COPY_SRC","COPY_SRC","Capabilities","ColorAttachment","CommandBuffer","CommandEncoder","CommandEncoder","CommandEncoderDescriptor","Compilation","ComputePassDescriptor","ComputePassTimestampWrites","ComputePipeline","ComputePipelineDescriptor","CopyExtent","DEPTH","DEPTH_STENCIL","DEPTH_STENCIL_ATTACHMENT","DEPTH_STENCIL_READ","DEPTH_STENCIL_WRITE","DebugSource","DepthStencilAttachment","Device","Device","Device","Device","Device","DeviceError","DropGuard","EXCLUSIVE","EXCLUSIVE","EntryPoint","ExposedAdapter","FIRST_VERTEX_INSTANCE","Fence","FenceValue","FormatAspects","GetAccelerationStructureBuildSizesDescriptor","INCLUSIVE","INCLUSIVE","INDEX","INDIRECT","Instance","Instance","InstanceDescriptor","InstanceError","Instances","LOAD","LOW_MEMORY","Label","Linkage","Lost","Lost","MAP_READ","MAP_WRITE","MAX_ANISOTROPY","MAX_BIND_GROUPS","MAX_COLOR_ATTACHMENTS","MAX_CONCURRENT_SHADER_STAGES","MAX_MIP_LEVELS","MAX_VERTEX_BUFFERS","MULTISAMPLE_RESOLVE","MULTISAMPLE_X16","MULTISAMPLE_X2","MULTISAMPLE_X4","MULTISAMPLE_X8","MemoryFlags","MemoryRange","NO_DUPLICATE_ANY_HIT_INVOCATION","NUM_WORK_GROUPS","Naga","NagaShader","None","OPAQUE","ORDERED","ORDERED","OpenDevice","Other","OutOfMemory","Outdated","PARTIALLY_BOUND","PLANE_0","PLANE_1","PLANE_2","PREFER_COHERENT","PREFER_FAST_BUILD","PREFER_FAST_TRACE","PRESENT","PipelineError","PipelineLayout","PipelineLayoutDescriptor","PipelineLayoutFlags","ProgrammableStage","QUERY_RESOLVE","QUERY_SIZE","QuerySet","Queue","Queue","RESOURCE","Rect","RenderPassDescriptor","RenderPassTimestampWrites","RenderPipeline","RenderPipelineDescriptor","ResourceCreationFailed","SAMPLED","SAMPLED_LINEAR","SAMPLED_MINMAX","SHADER_INPUT","STENCIL","STORAGE","STORAGE_ATOMIC","STORAGE_READ","STORAGE_READ","STORAGE_READ_WRITE","STORAGE_READ_WRITE","STORAGE_READ_WRITE","STORE","Sampler","SamplerDescriptor","ShaderError","ShaderInput","ShaderModule","ShaderModuleDescriptor","Some","SpirV","Surface","Surface","SurfaceCapabilities","SurfaceConfiguration","SurfaceError","SurfaceTexture","TOP_LEVEL_ACCELERATION_STRUCTURE_INPUT","TRANSIENT","Texture","TextureBarrier","TextureBinding","TextureCopy","TextureCopyBase","TextureDescriptor","TextureFormatCapabilities","TextureUses","TextureView","TextureViewDescriptor","TopLevel","Triangles","UNIFORM","UNINITIALIZED","UNKNOWN","Update","VALIDATION_CANARY","VERTEX","ValidationCanary","VertexBufferLayout","acceleration_structure_size","acceleration_structures","acquire_texture","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapter","address_modes","alignments","all","all","all","all","all","all","all","all","all","all","all","anisotropy_clamp","array_layer","array_layer_count","array_stride","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","aspect","at_mip_level","attributes","auxil","begin_compute_pass","begin_debug_marker","begin_encoding","begin_query","begin_render_pass","beginning_of_pass_write_index","beginning_of_pass_write_index","bind_group_layouts","binding","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","border_color","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer","buffer","buffer","buffer","buffer","buffer","buffer_copy_offset","buffer_copy_pitch","buffer_layout","buffers","build_acceleration_structures","build_scratch_size","capabilities","clamp_size_to_virtual","clamp_size_to_virtual","clear_buffer","clear_value","clear_value","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color_attachments","color_targets","compare","complement","complement","complement","complement","complement","complement","complement","complement","complement","complement","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","composite_alpha_mode","composite_alpha_modes","configure","contains","contains","contains","contains","contains","contains","contains","contains","contains","contains","contains","contains_invalid_bits","contains_invalid_bits","copy_buffer_to_buffer","copy_buffer_to_texture","copy_extent","copy_query_results","copy_texture_to_buffer","copy_texture_to_texture","count","count","count","count","create_acceleration_structure","create_bind_group","create_bind_group_layout","create_buffer","create_command_encoder","create_compute_pipeline","create_fence","create_pipeline_layout","create_query_set","create_render_pipeline","create_sampler","create_shader_module","create_surface","create_texture","create_texture_view","current_extent","debug_source","default","depth","depth_ops","depth_stencil","depth_stencil_attachment","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","destination_acceleration_structure","destroy_acceleration_structure","destroy_bind_group","destroy_bind_group_layout","destroy_buffer","destroy_command_encoder","destroy_compute_pipeline","destroy_fence","destroy_pipeline_layout","destroy_query_set","destroy_render_pipeline","destroy_sampler","destroy_shader_module","destroy_surface","destroy_texture","destroy_texture_view","device","difference","difference","difference","difference","difference","difference","difference","difference","difference","difference","difference","dimension","dimension","discard_encoding","discard_texture","dispatch","dispatch_indirect","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downlevel","draw","draw_indexed","draw_indexed_indirect","draw_indexed_indirect_count","draw_indirect","draw_indirect_count","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dst_base","dst_offset","dx12_shader_compiler","empty","empty","empty","empty","empty","empty","empty","empty","empty","empty","empty","empty","end","end_compute_pass","end_debug_marker","end_encoding","end_of_pass_write_index","end_of_pass_write_index","end_query","end_render_pass","entries","entries","entries","entries","entry_point","enumerate_adapters","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","exit","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extent","extent","features","file_name","first_vertex","flags","flags","flags","flags","flags","flags","flags","flush_mapped_ranges","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format","format","format","format","formats","fragment_stage","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_acceleration_structure_build_sizes","get_acceleration_structure_device_address","get_and_reset","get_fence_value","get_presentation_timestamp","get_timestamp_period","gles","gles_minor_version","h","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","height","indices","info","info","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert_debug_marker","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invalidate_mapped_ranges","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_coherent","is_cube_compatible","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_one","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","label","label","label","label","label","label","label","label","label","label","label","label","label","label","layout","layout","layout","limits","lod_clamp","mag_filter","map","map_buffer","map_extent_to_copy_size","max_copy_size","maximum_frame_latency","maximum_frame_latency","memory_flags","memory_flags","min","min_filter","mip_level","mip_level_count","mipmap_filter","mode","module","module","multisample","multiview","multiview","name","new","not","not","not","not","not","not","not","not","not","not","not","occlusion_query_set","offset","offset","offset","offset","offset","open","ops","origin","place_acceleration_structure_barrier","present","present_mode","present_modes","primitive","ptr","push_constant_ranges","query_set","query_set","queue","queue","range","range","remove","remove","remove","remove","remove","remove","remove","remove","remove","remove","remove","reset_all","reset_queries","resolve_target","resource_index","runtime_checks","sample_count","sample_count","samplers","scratch_buffer","scratch_buffer_offset","set","set","set","set","set","set","set","set","set","set","set","set_bind_group","set_blend_constants","set_compute_pipeline","set_index_buffer","set_push_constants","set_render_pipeline","set_scissor_rect","set_stencil_reference","set_vertex_buffer","set_viewport","size","size","size","size","size","size","size","source","source","source","source","source_acceleration_structure","source_code","src_base","src_offset","stage","start","start_capture","stencil_ops","step_mode","stop_capture","stride","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","submit","suboptimal","surface_capabilities","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","target","target","texture","texture","texture_base","texture_format_capabilities","textures","timestamp_writes","timestamp_writes","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","transform","transition_buffers","transition_textures","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unconfigure","union","union","union","union","union","union","union","union","union","union","union","unmap_buffer","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update_scratch_size","usage","usage","usage","usage","usage","usage","usage","usage","usage","usage","vertex_buffer","vertex_buffers","vertex_count","vertex_format","vertex_stage","vertex_stride","view","view","view_formats","view_formats","vulkan","w","wait","width","write_timestamp","x","y","MAX_I32_BINDING_SIZE","db","map_naga_stage","amd","apple","arm","broadcom","imgtec","intel","mesa","nvidia","qualcomm","VENDOR","VENDOR","VENDOR","VENDOR","VENDOR","DEVICE_KABY_LAKE_MASK","DEVICE_SKY_LAKE_MASK","VENDOR","VENDOR","VENDOR","VENDOR","Api","Context","Encoder","Resource","acquire_texture","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin_compute_pass","begin_debug_marker","begin_encoding","begin_query","begin_render_pass","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_acceleration_structures","clear_buffer","clone","clone_into","components_from","components_from","components_from","components_from","configure","copy_buffer_to_buffer","copy_buffer_to_texture","copy_query_results","copy_texture_to_buffer","copy_texture_to_texture","create_acceleration_structure","create_bind_group","create_bind_group_layout","create_buffer","create_command_encoder","create_compute_pipeline","create_fence","create_instance_from_hal","create_pipeline_layout","create_query_set","create_render_pipeline","create_sampler","create_shader_module","create_surface","create_texture","create_texture_view","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","destroy_acceleration_structure","destroy_bind_group","destroy_bind_group_layout","destroy_buffer","destroy_command_encoder","destroy_compute_pipeline","destroy_fence","destroy_pipeline_layout","destroy_query_set","destroy_render_pipeline","destroy_sampler","destroy_shader_module","destroy_surface","destroy_texture","destroy_texture_view","discard_encoding","discard_texture","dispatch","dispatch_indirect","downcast","downcast","downcast","downcast","draw","draw_indexed","draw_indexed_indirect","draw_indexed_indirect_count","draw_indirect","draw_indirect_count","drop","drop","drop","drop","end_compute_pass","end_debug_marker","end_encoding","end_query","end_render_pass","enumerate_adapters","exit","flush_mapped_ranges","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_acceleration_structure_build_sizes","get_acceleration_structure_device_address","get_fence_value","get_presentation_timestamp","get_surface","get_timestamp_period","hub","init","init","init","init","init","insert_debug_marker","instance_as_hal","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invalidate_mapped_ranges","map_buffer","open","place_acceleration_structure_barrier","present","reset_all","reset_queries","set_bind_group","set_blend_constants","set_compute_pipeline","set_index_buffer","set_push_constants","set_render_pipeline","set_scissor_rect","set_stencil_reference","set_vertex_buffer","set_viewport","start_capture","stop_capture","submit","surface_capabilities","texture_format_capabilities","to_owned","transition_buffers","transition_textures","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","unconfigure","unmap_buffer","upcast","upcast","upcast","upcast","wait","write_timestamp","Adapter","AdapterContext","AdapterContextLock","Api","BindGroup","BindGroupLayout","Buffer","CommandBuffer","CommandEncoder","ComputePipeline","DefaultRenderbuffer","Device","Fence","PipelineLayout","QuerySet","Queue","RenderPipeline","Renderbuffer","Sampler","ShaderModule","Texture","Texture","TextureFormatDesc","TextureInner","TextureView","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapter_context","array_layer_count","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin_compute_pass","begin_debug_marker","begin_encoding","begin_query","begin_render_pass","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_acceleration_structures","clear_buffer","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","context","copy_buffer_to_buffer","copy_buffer_to_texture","copy_query_results","copy_size","copy_texture_to_buffer","copy_texture_to_texture","create_acceleration_structure","create_bind_group","create_bind_group_layout","create_buffer","create_command_encoder","create_compute_pipeline","create_fence","create_instance_from_hal","create_pipeline_layout","create_query_set","create_render_pipeline","create_sampler","create_shader_module","create_texture","create_texture_view","data_type","default","default_framebuffer","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","destroy_acceleration_structure","destroy_bind_group","destroy_bind_group_layout","destroy_buffer","destroy_command_encoder","destroy_compute_pipeline","destroy_fence","destroy_pipeline_layout","destroy_query_set","destroy_render_pipeline","destroy_sampler","destroy_shader_module","destroy_texture","destroy_texture_view","discard_encoding","dispatch","dispatch_indirect","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw_indexed","draw_indexed_indirect","draw_indexed_indirect_count","draw_indirect","draw_indirect_count","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_guard","egl_instance","egl_version","end_compute_pass","end_debug_marker","end_encoding","end_query","end_render_pass","exit","external","flush_mapped_ranges","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format_desc","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_acceleration_structure_build_sizes","get_acceleration_structure_device_address","get_fence_value","get_presentation_timestamp","get_surface","get_timestamp_period","get_without_egl_lock","hub","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","insert_debug_marker","instance_as_hal","internal","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invalidate_mapped_ranges","is_owned","lock","map_buffer","mip_level_count","new_external","open","place_acceleration_structure_barrier","present","raw_context","raw_display","reset_all","reset_queries","set_bind_group","set_blend_constants","set_compute_pipeline","set_index_buffer","set_push_constants","set_render_pipeline","set_scissor_rect","set_stencil_reference","set_vertex_buffer","set_viewport","start_capture","stop_capture","submit","surface_capabilities","texture_format_capabilities","texture_from_raw","texture_from_raw_renderbuffer","to_owned","to_owned","to_owned","to_owned","to_owned","transition_buffers","transition_textures","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unmap_buffer","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","wait","write_timestamp","raw","raw","target","AccelerationStructure","Adapter","Api","BindGroup","BindGroupLayout","Buffer","CommandBuffer","CommandEncoder","ComputePipeline","DebugUtilsCreateInfo","DebugUtilsMessengerUserData","Device","EMPTY_RESOLVE_ATTACHMENT_LISTS","FORCE_FILL_BUFFER_WITH_SIZE_GREATER_4096_ALIGNED_OFFSET_16","Fence","FencePool","Instance","InstanceShared","Intermediate","PipelineLayout","QuerySet","Queue","Raw","RenderPipeline","SEPARATE_ENTRY_POINTS","Sampler","ShaderModule","Surface","SurfaceTexture","Texture","TextureView","TimelineSemaphore","Workarounds","acquire_texture","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin_compute_pass","begin_debug_marker","begin_encoding","begin_query","begin_render_pass","bitand","bitand_assign","bitor","bitor_assign","bits","bits","bitxor","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer_from_raw","build_acceleration_structures","clear_buffer","clone","clone","clone_into","clone_into","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","configure","contains","copy_buffer_to_buffer","copy_buffer_to_texture","copy_query_results","copy_texture_to_buffer","copy_texture_to_texture","create_acceleration_structure","create_bind_group","create_bind_group_layout","create_buffer","create_command_encoder","create_compute_pipeline","create_fence","create_instance_from_hal","create_pipeline_layout","create_query_set","create_render_pipeline","create_sampler","create_shader_module","create_surface","create_texture","create_texture_view","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","desired_extensions","destroy_acceleration_structure","destroy_bind_group","destroy_bind_group_layout","destroy_buffer","destroy_command_encoder","destroy_compute_pipeline","destroy_fence","destroy_pipeline_layout","destroy_query_set","destroy_render_pipeline","destroy_sampler","destroy_shader_module","destroy_surface","destroy_texture","destroy_texture_view","device_from_raw","difference","discard_encoding","discard_texture","dispatch","dispatch_indirect","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw_indexed","draw_indexed_indirect","draw_indexed_indirect_count","draw_indirect","draw_indirect_count","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","enabled_device_extensions","end_compute_pass","end_debug_marker","end_encoding","end_query","end_render_pass","entry","enumerate_adapters","eq","equivalent","equivalent","equivalent","exit","expose_adapter","extend","extensions","flush_mapped_ranges","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits_retain","from_bits_retain","from_bits_truncate","from_iter","from_name","from_raw","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_acceleration_structure_build_sizes","get_acceleration_structure_device_address","get_fence_value","get_presentation_timestamp","get_surface","get_timestamp_period","hash","hub","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert_debug_marker","instance_api_version","instance_as_hal","intersection","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invalidate_mapped_ranges","is_all","is_empty","iter","iter_names","map_buffer","not","open","physical_device_capabilities","physical_device_features","place_acceleration_structure_barrier","present","queue_family_index","queue_index","raw_device","raw_handle","raw_instance","raw_physical_device","raw_physical_device","raw_queue","remove","required_device_extensions","reset_all","reset_queries","set","set_bind_group","set_blend_constants","set_compute_pipeline","set_index_buffer","set_push_constants","set_render_pipeline","set_scissor_rect","set_stencil_reference","set_vertex_buffer","set_viewport","shared_instance","shared_instance","shared_instance","start_capture","stop_capture","sub","sub_assign","submit","surface_capabilities","symmetric_difference","texture_format_capabilities","texture_from_raw","to_owned","to_owned","toggle","transition_buffers","transition_textures","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unconfigure","union","unmap_buffer","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","wait","write_timestamp","active","free","last_completed","naga_shader","runtime_checks","Android","AndroidDisplayHandle","AndroidNdk","AndroidNdkWindowHandle","AppKit","AppKit","AppKitDisplayHandle","AppKitWindowHandle","DisplayHandle","Drm","Drm","DrmDisplayHandle","DrmWindowHandle","Gbm","Gbm","GbmDisplayHandle","GbmWindowHandle","Haiku","Haiku","HaikuDisplayHandle","HaikuWindowHandle","HandleError","HasDisplayHandle","HasRawDisplayHandle","HasRawWindowHandle","HasWindowHandle","NotSupported","Orbital","Orbital","OrbitalDisplayHandle","OrbitalWindowHandle","RawDisplayHandle","RawWindowHandle","UiKit","UiKit","UiKitDisplayHandle","UiKitWindowHandle","Unavailable","Wayland","Wayland","WaylandDisplayHandle","WaylandWindowHandle","Web","Web","WebCanvas","WebCanvasWindowHandle","WebDisplayHandle","WebOffscreenCanvas","WebOffscreenCanvasWindowHandle","WebWindowHandle","Win32","Win32WindowHandle","WinRt","WinRtWindowHandle","WindowHandle","Windows","WindowsDisplayHandle","Xcb","Xcb","XcbDisplayHandle","XcbWindowHandle","Xlib","Xlib","XlibDisplayHandle","XlibWindowHandle","a_native_window","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_raw","as_raw","as_ref","as_ref","b_direct_window","b_window","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_raw","borrow_raw","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","connection","core_window","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","display","display","display_handle","display_handle","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fd","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gbm_device","gbm_surface","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hinstance","hwnd","id","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","ns_view","obj","obj","plane","raw_display_handle","raw_display_handle","raw_window_handle","raw_window_handle","screen","screen","surface","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","ui_view","ui_view_controller","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","visual_id","visual_id","window","window","window","window_handle","window_handle","BufferInitDescriptor","DeviceExt","DispatchIndirectArgs","DownloadBuffer","DrawIndexedIndirectArgs","DrawIndirectArgs","LayerMajor","MipMajor","RenderEncoder","StagingBelt","TextureDataOrder","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","align_to","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_bytes","as_bytes","as_bytes","backend_bits_from_env","base_vertex","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contents","create_buffer_init","create_texture_with_data","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw_indexed","draw_indexed_indirect","draw_indirect","drop","drop","drop","drop","drop","drop","drop","dx12_shader_compiler_from_env","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","finish","first_index","first_instance","first_instance","first_vertex","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gles_minor_version_from_env","hash","hash","index_count","init","init","init","init","init","init","init","initialize_adapter_from_env","initialize_adapter_from_env_or_default","instance_count","instance_count","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","label","make_spirv_raw","new","parse_backends_from_comma_list","power_preference_from_env","read_buffer","recall","set_bind_group","set_index_buffer","set_pipeline","set_push_constants","set_vertex_buffer","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","usage","vertex_count","write_buffer","x","y","z","Appearance","Circle","Handle","HandleShape","Rail","Rectangle","Slider","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","border_color","border_radius","border_width","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","colors","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","dragging","draw","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","handle","hovered","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","mouse_interaction","new","rail","shape","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","width","border_radius","radius","width","Space","Appearance","Handle","Style","StyleSheet","Svg","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","data","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_memory","from_path","from_stimulus","from_stimulus","hash","hovered","id","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Absolute","Advanced","Appearance","Basic","LineHeight","Relative","Shaping","State","Style","StyleSheet","Text","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","default","default","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","to_absolute","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","Action","Appearance","Backspace","Click","Content","Delete","DocumentEnd","DocumentStart","Down","Drag","Edit","Edit","End","Enter","Home","Insert","Left","Motion","Move","PageDown","PageUp","Paste","Right","Scroll","Select","SelectLine","SelectWord","Style","StyleSheet","TextEditor","Up","WordLeft","WordRight","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","cursor_position","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","direction","disabled","disabled_color","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","focused","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hovered","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_edit","line","line_count","lines","new","perform","placeholder_color","selection","selection_color","text","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","value_color","widen","with_text","lines","Appearance","Cursor","DEFAULT_PADDING","Icon","Id","Left","Right","Side","State","Style","StyleSheet","TextInput","Value","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","code_point","components_from","components_from","components_from","components_from","components_from","components_from","components_from","cursor","cursor","default","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","disabled","disabled_color","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","focus","focus","focus","focused","focused","font","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hovered","icon_color","init","init","init","init","init","init","init","insert","insert_many","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_focused","is_focused","layout","len","mouse_interaction","move_cursor_to","move_cursor_to","move_cursor_to","move_cursor_to_end","move_cursor_to_end","move_cursor_to_end","move_cursor_to_front","move_cursor_to_front","move_cursor_to_front","new","new","new","next_end_of_word","placeholder_color","previous_start_of_word","remove","remove_many","secure","select","select_all","select_all","select_all","selection","selection_color","side","size","spacing","state","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unfocus","unfocus","unique","until","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","value_color","Cursor","Index","Selection","State","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","end","start","Application","Box","Button","Checkbox","Color","Container","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Danger","Danger","Dark","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Destructive","Light","Menu","Palette","PaneGrid","PickList","Positive","Primary","Primary","Primary","ProgressBar","Radio","Rule","Scrollable","Secondary","Secondary","Slider","Success","Success","Svg","Text","Text","TextEditor","TextInput","Theme","Toggler","Transparent","background","danger","palette","primary","success","text","Background","Danger","EXTENDED_DARK","EXTENDED_LIGHT","Extended","Pair","Palette","Primary","Secondary","Success","background","background","base","base","base","base","base","color","danger","danger","is_dark","primary","primary","secondary","strong","strong","strong","strong","strong","success","success","text","text","weak","weak","weak","weak","weak","Appearance","Style","StyleSheet","Toggler","active","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","background","background_border","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","foreground","foreground_border","from","from_angle","from_stimulus","hovered","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Bottom","FollowCursor","Left","Position","Right","Tooltip","Top","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Appearance","Circle","Handle","HandleShape","Rectangle","State","Style","StyleSheet","VerticalSlider","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","border_color","border_width","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","dragging","draw","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","handle","hovered","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","mouse_interaction","new","rail","shape","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","update","border_radius","radius","width","Action","AlwaysOnBottom","AlwaysOnTop","At","Centered","ChangeIcon","ChangeLevel","ChangeMode","Close","CloseRequested","Closed","Critical","Default","Drag","Event","FetchId","FetchMaximized","FetchMinimized","FetchMode","FetchSize","FileDropped","FileHovered","FilesHoveredLeft","Focused","Fullscreen","GainFocus","Hidden","Icon","Icon","Id","Informational","Level","MAIN","Maximize","Minimize","Mode","Move","Moved","NextFrame","Normal","Opened","Position","RedrawRequest","RedrawRequested","RequestUserAttention","Resize","Resized","Screenshot","Screenshot","Settings","Spawn","Specific","ToggleDecorations","ToggleMaximize","Unfocused","UserAttention","Windowed","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bytes","change_icon","change_level","change_mode","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","close","cmp","cmp","compare","compare","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","crop","decorations","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drag","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","exit_on_close_request","fetch_id","fetch_maximized","fetch_minimized","fetch_mode","fetch_size","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","frames","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gain_focus","hash","icon","icon","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_raw","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","level","map","max_size","maximize","min_size","minimize","move_to","new","partial_cmp","partial_cmp","platform_specific","position","request_user_attention","resizable","resize","screenshot","screenshot","settings","size","size","spawn","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","toggle_decorations","toggle_maximize","transparent","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unique","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","visible","height","position","size","width","x","y","Error","Icon","ImageError","InvalidError","OsError","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","downcast","drop","fmt","fmt","from","from","from","from","from_angle","from_file","from_file_data","from_rgba","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","source","to_smolstr","to_string","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","CropError","OutOfBounds","Screenshot","Zero","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","bytes","components_from","deref","deref_mut","downcast","drop","fmt","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","size","to_smolstr","to_string","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","PlatformSpecific","Settings","adapt_into_using","application_id","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","decorations","default","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","exit_on_close_request","fmt","from","from_angle","from_stimulus","icon","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","level","max_size","min_size","platform_specific","position","resizable","size","to_owned","transparent","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","visible"],"q":[[0,"iced"],[1199,"iced::advanced"],[1406,"iced::advanced::image"],[1504,"iced::advanced::image::Data"],[1507,"iced::advanced::layout"],[1615,"iced::advanced::layout::flex"],[1652,"iced::advanced::mouse"],[1724,"iced::advanced::mouse::Event"],[1726,"iced::advanced::mouse::ScrollDelta"],[1730,"iced::advanced::mouse::click"],[1771,"iced::advanced::overlay"],[1868,"iced::advanced::renderer"],[2004,"iced::advanced::subscription"],[2009,"iced::advanced::svg"],[2057,"iced::advanced::text"],[2205,"iced::advanced::text::editor"],[2327,"iced::advanced::text::editor::Action"],[2328,"iced::advanced::text::highlighter"],[2420,"iced::advanced::widget"],[2583,"iced::advanced::widget::operation"],[2643,"iced::advanced::widget::operation::focusable"],[2696,"iced::advanced::widget::operation::scrollable"],[2707,"iced::advanced::widget::operation::text_input"],[2716,"iced::advanced::widget::text"],[2731,"iced::advanced::widget::tree"],[2821,"iced::alignment"],[2915,"iced::application"],[2972,"iced::border"],[3018,"iced::clipboard"],[3020,"iced::command"],[3022,"iced::event"],[3118,"iced::executor"],[3123,"iced::font"],[3369,"iced::gradient"],[3455,"iced::keyboard"],[3686,"iced::keyboard::Event"],[3693,"iced::keyboard::key"],[4048,"iced::mouse"],[4281,"iced::mouse::Event"],[4283,"iced::mouse::ScrollDelta"],[4287,"iced::multi_window"],[4306,"iced::overlay"],[4308,"iced::overlay::menu"],[4319,"iced::settings"],[4365,"iced::subscription"],[4370,"iced::system"],[4418,"iced::theme"],[5136,"iced::theme::palette"],[5440,"iced::time"],[5613,"iced::touch"],[5697,"iced::touch::Event"],[5705,"iced::widget"],[7096,"iced::widget::button"],[7193,"iced::widget::canvas"],[7759,"iced::widget::canvas::event"],[7807,"iced::widget::canvas::fill"],[7856,"iced::widget::canvas::gradient"],[7943,"iced::widget::canvas::path"],[8032,"iced::widget::canvas::path::arc"],[8080,"iced::widget::canvas::path::lyon_path"],[8968,"iced::widget::canvas::path::lyon_path::Event"],[8981,"iced::widget::canvas::path::lyon_path::IdEvent"],[8994,"iced::widget::canvas::path::lyon_path::PathEvent"],[9007,"iced::widget::canvas::path::lyon_path::builder"],[9329,"iced::widget::canvas::path::lyon_path::commands"],[9532,"iced::widget::canvas::path::lyon_path::geom"],[10313,"iced::widget::canvas::path::lyon_path::geom::arc"],[10363,"iced::widget::canvas::path::lyon_path::geom::arrayvec"],[10733,"iced::widget::canvas::path::lyon_path::geom::cubic_bezier"],[10775,"iced::widget::canvas::path::lyon_path::geom::euclid"],[12722,"iced::widget::canvas::path::lyon_path::geom::euclid::approxeq"],[12726,"iced::widget::canvas::path::lyon_path::geom::euclid::approxord"],[12728,"iced::widget::canvas::path::lyon_path::geom::euclid::default"],[12811,"iced::widget::canvas::path::lyon_path::geom::euclid::num"],[12821,"iced::widget::canvas::path::lyon_path::geom::quadratic_bezier"],[12931,"iced::widget::canvas::path::lyon_path::geom::traits"],[12951,"iced::widget::canvas::path::lyon_path::geom::utils"],[12957,"iced::widget::canvas::path::lyon_path::iterator"],[13107,"iced::widget::canvas::path::lyon_path::math"],[13137,"iced::widget::canvas::path::lyon_path::path"],[13394,"iced::widget::canvas::path::lyon_path::path_buffer"],[13534,"iced::widget::canvas::path::lyon_path::polygon"],[13694,"iced::widget::canvas::path::lyon_path::traits"],[13743,"iced::widget::canvas::stroke"],[13763,"iced::widget::checkbox"],[13852,"iced::widget::combo_box"],[13893,"iced::widget::container"],[13988,"iced::widget::image"],[14133,"iced::widget::image::viewer"],[14175,"iced::widget::keyed"],[14229,"iced::widget::keyed::column"],[14230,"iced::widget::overlay"],[14231,"iced::widget::overlay::menu"],[14352,"iced::widget::pane_grid"],[15080,"iced::widget::pane_grid::Configuration"],[15084,"iced::widget::pane_grid::DragEvent"],[15088,"iced::widget::pane_grid::Node"],[15093,"iced::widget::pane_grid::state"],[15180,"iced::widget::pane_grid::state::Action"],[15186,"iced::widget::pick_list"],[15358,"iced::widget::pick_list::Handle"],[15361,"iced::widget::progress_bar"],[15405,"iced::widget::qr_code"],[15580,"iced::widget::radio"],[15627,"iced::widget::rule"],[15714,"iced::widget::scrollable"],[16158,"iced::widget::scrollable::Direction"],[16160,"iced::widget::shader"],[16250,"iced::widget::shader::wgpu"],[23364,"iced::widget::shader::wgpu::BindingType"],[23373,"iced::widget::shader::wgpu::BufferBindingType"],[23374,"iced::widget::shader::wgpu::Dx12Compiler"],[23376,"iced::widget::shader::wgpu::Error"],[23379,"iced::widget::shader::wgpu::SurfaceTargetUnsafe"],[23381,"iced::widget::shader::wgpu::TextureFormat"],[23383,"iced::widget::shader::wgpu::TextureSampleType"],[23384,"iced::widget::shader::wgpu::core"],[23421,"iced::widget::shader::wgpu::core::any_surface"],[23459,"iced::widget::shader::wgpu::core::api"],[23462,"iced::widget::shader::wgpu::core::binding_model"],[24397,"iced::widget::shader::wgpu::core::binding_model::BindError"],[24413,"iced::widget::shader::wgpu::core::binding_model::CreateBindGroupError"],[24451,"iced::widget::shader::wgpu::core::binding_model::CreateBindGroupLayoutError"],[24455,"iced::widget::shader::wgpu::core::binding_model::CreatePipelineLayoutError"],[24465,"iced::widget::shader::wgpu::core::binding_model::PushConstantUploadError"],[24477,"iced::widget::shader::wgpu::core::command"],[26462,"iced::widget::shader::wgpu::core::command::AttachmentErrorLocation"],[26464,"iced::widget::shader::wgpu::core::command::ClearError"],[26475,"iced::widget::shader::wgpu::core::command::ColorAttachmentError"],[26477,"iced::widget::shader::wgpu::core::command::ComputePassErrorInner"],[26482,"iced::widget::shader::wgpu::core::command::DispatchError"],[26486,"iced::widget::shader::wgpu::core::command::DrawError"],[26499,"iced::widget::shader::wgpu::core::command::PassErrorScope"],[26504,"iced::widget::shader::wgpu::core::command::QueryUseError"],[26511,"iced::widget::shader::wgpu::core::command::RenderCommandError"],[26517,"iced::widget::shader::wgpu::core::command::RenderPassErrorInner"],[26546,"iced::widget::shader::wgpu::core::command::ResolveError"],[26555,"iced::widget::shader::wgpu::core::command::TransferError"],[26577,"iced::widget::shader::wgpu::core::command::bundle_ffi"],[26589,"iced::widget::shader::wgpu::core::command::compute_ffi"],[26600,"iced::widget::shader::wgpu::core::command::render_ffi"],[26626,"iced::widget::shader::wgpu::core::device"],[27260,"iced::widget::shader::wgpu::core::device::RenderPassCompatibilityError"],[27273,"iced::widget::shader::wgpu::core::device::any_device"],[27310,"iced::widget::shader::wgpu::core::device::queue"],[27635,"iced::widget::shader::wgpu::core::device::resource"],[27680,"iced::widget::shader::wgpu::core::error"],[27774,"iced::widget::shader::wgpu::core::global"],[27973,"iced::widget::shader::wgpu::core::hal_api"],[27979,"iced::widget::shader::wgpu::core::hub"],[28119,"iced::widget::shader::wgpu::core::id"],[28197,"iced::widget::shader::wgpu::core::identity"],[28279,"iced::widget::shader::wgpu::core::instance"],[28726,"iced::widget::shader::wgpu::core::naga"],[31645,"iced::widget::shader::wgpu::core::naga::AddressSpace"],[31646,"iced::widget::shader::wgpu::core::naga::AtomicFunction"],[31647,"iced::widget::shader::wgpu::core::naga::Binding"],[31651,"iced::widget::shader::wgpu::core::naga::BuiltIn"],[31652,"iced::widget::shader::wgpu::core::naga::Expression"],[31705,"iced::widget::shader::wgpu::core::naga::ImageClass"],[31710,"iced::widget::shader::wgpu::core::naga::ImageQuery"],[31711,"iced::widget::shader::wgpu::core::naga::PredeclaredType"],[31715,"iced::widget::shader::wgpu::core::naga::RayQueryFunction"],[31718,"iced::widget::shader::wgpu::core::naga::SampleLevel"],[31720,"iced::widget::shader::wgpu::core::naga::Statement"],[31746,"iced::widget::shader::wgpu::core::naga::TypeInner"],[31767,"iced::widget::shader::wgpu::core::naga::back"],[31863,"iced::widget::shader::wgpu::core::naga::back::glsl"],[32424,"iced::widget::shader::wgpu::core::naga::back::glsl::Version"],[32426,"iced::widget::shader::wgpu::core::naga::back::hlsl"],[32724,"iced::widget::shader::wgpu::core::naga::back::msl"],[33133,"iced::widget::shader::wgpu::core::naga::back::msl::sampler"],[33425,"iced::widget::shader::wgpu::core::naga::back::spv"],[34195,"iced::widget::shader::wgpu::core::naga::compact"],[34196,"iced::widget::shader::wgpu::core::naga::front"],[34279,"iced::widget::shader::wgpu::core::naga::front::wgsl"],[34363,"iced::widget::shader::wgpu::core::naga::keywords"],[34364,"iced::widget::shader::wgpu::core::naga::keywords::wgsl"],[34365,"iced::widget::shader::wgpu::core::naga::proc"],[35231,"iced::widget::shader::wgpu::core::naga::proc::ConstantEvaluatorError"],[35236,"iced::widget::shader::wgpu::core::naga::proc::ResolveError"],[35243,"iced::widget::shader::wgpu::core::naga::proc::index"],[35300,"iced::widget::shader::wgpu::core::naga::valid"],[36787,"iced::widget::shader::wgpu::core::naga::valid::CallError"],[36794,"iced::widget::shader::wgpu::core::naga::valid::ComposeError"],[36797,"iced::widget::shader::wgpu::core::naga::valid::Disalignment"],[36808,"iced::widget::shader::wgpu::core::naga::valid::EntryPointError"],[36810,"iced::widget::shader::wgpu::core::naga::valid::ExpressionError"],[36813,"iced::widget::shader::wgpu::core::naga::valid::FunctionError"],[36828,"iced::widget::shader::wgpu::core::naga::valid::GlobalVariableError"],[36830,"iced::widget::shader::wgpu::core::naga::valid::TypeError"],[36840,"iced::widget::shader::wgpu::core::naga::valid::ValidationError"],[36857,"iced::widget::shader::wgpu::core::naga::valid::VaryingError"],[36860,"iced::widget::shader::wgpu::core::pipeline"],[37771,"iced::widget::shader::wgpu::core::pipeline::ColorStateError"],[37773,"iced::widget::shader::wgpu::core::pipeline::CreateRenderPipelineError"],[37795,"iced::widget::shader::wgpu::core::pipeline::CreateShaderModuleError"],[37798,"iced::widget::shader::wgpu::core::present"],[37938,"iced::widget::shader::wgpu::core::present::ConfigureSurfaceError"],[37947,"iced::widget::shader::wgpu::core::registry"],[38034,"iced::widget::shader::wgpu::core::resource"],[39260,"iced::widget::shader::wgpu::core::resource::BufferAccessError"],[39268,"iced::widget::shader::wgpu::core::resource::CreateBufferError"],[39270,"iced::widget::shader::wgpu::core::resource::CreateQuerySetError"],[39272,"iced::widget::shader::wgpu::core::resource::CreateSamplerError"],[39277,"iced::widget::shader::wgpu::core::resource::CreateTextureError"],[39279,"iced::widget::shader::wgpu::core::resource::CreateTextureViewError"],[39293,"iced::widget::shader::wgpu::core::resource::TextureClearMode"],[39296,"iced::widget::shader::wgpu::core::resource::TextureDimensionError"],[39311,"iced::widget::shader::wgpu::core::storage"],[39347,"iced::widget::shader::wgpu::core::validation"],[39772,"iced::widget::shader::wgpu::core::validation::BindingError"],[39779,"iced::widget::shader::wgpu::core::validation::StageError"],[39792,"iced::widget::shader::wgpu::hal"],[43494,"iced::widget::shader::wgpu::hal::auxil"],[43497,"iced::widget::shader::wgpu::hal::auxil::db"],[43506,"iced::widget::shader::wgpu::hal::auxil::db::amd"],[43507,"iced::widget::shader::wgpu::hal::auxil::db::apple"],[43508,"iced::widget::shader::wgpu::hal::auxil::db::arm"],[43509,"iced::widget::shader::wgpu::hal::auxil::db::broadcom"],[43510,"iced::widget::shader::wgpu::hal::auxil::db::imgtec"],[43511,"iced::widget::shader::wgpu::hal::auxil::db::intel"],[43514,"iced::widget::shader::wgpu::hal::auxil::db::mesa"],[43515,"iced::widget::shader::wgpu::hal::auxil::db::nvidia"],[43516,"iced::widget::shader::wgpu::hal::auxil::db::qualcomm"],[43517,"iced::widget::shader::wgpu::hal::empty"],[43756,"iced::widget::shader::wgpu::hal::gles"],[44635,"iced::widget::shader::wgpu::hal::gles::TextureInner"],[44638,"iced::widget::shader::wgpu::hal::vulkan"],[45700,"iced::widget::shader::wgpu::hal::vulkan::Fence"],[45703,"iced::widget::shader::wgpu::hal::vulkan::ShaderModule"],[45705,"iced::widget::shader::wgpu::rwh"],[47161,"iced::widget::shader::wgpu::util"],[47475,"iced::widget::slider"],[47578,"iced::widget::slider::HandleShape"],[47581,"iced::widget::space"],[47582,"iced::widget::svg"],[47672,"iced::widget::text"],[47842,"iced::widget::text_editor"],[48077,"iced::widget::text_editor::Action"],[48078,"iced::widget::text_input"],[48412,"iced::widget::text_input::cursor"],[48452,"iced::widget::text_input::cursor::State"],[48454,"iced::widget::theme"],[48527,"iced::widget::theme::palette"],[48565,"iced::widget::toggler"],[48611,"iced::widget::tooltip"],[48658,"iced::widget::vertical_slider"],[48829,"iced::widget::vertical_slider::HandleShape"],[48832,"iced::window"],[49353,"iced::window::Event"],[49359,"iced::window::icon"],[49407,"iced::window::screenshot"],[49449,"iced::window::settings"],[49505,"iced_runtime::command::action"],[49506,"alloc::vec"],[49507,"palette::chromatic_adaptation"],[49508,"core::ops::arith"],[49509,"core::any"],[49510,"core::iter::traits::collect"],[49511,"core::clone"],[49512,"alloc::string"],[49513,"core::ops::function"],[49514,"core::default"],[49515,"num_traits::float"],[49516,"num_traits"],[49517,"core::option"],[49518,"iced_graphics::mesh"],[49519,"core::cmp"],[49520,"core::convert"],[49521,"core::fmt"],[49522,"core::fmt"],[49523,"core::fmt"],[49524,"palette::rgb::rgb"],[49525,"palette::alpha::alpha"],[49526,"core::hash"],[49527,"core::hash"],[49528,"alloc::sync"],[49529,"alloc::rc"],[49530,"alloc::borrow"],[49531,"core::ops::function"],[49532,"core::marker"],[49533,"core::ops::arith"],[49534,"core::cmp"],[49535,"futures_core::stream"],[49536,"core::ops::arith"],[49537,"palette::convert::try_from_into_color"],[49538,"core::any"],[49539,"core::convert"],[49540,"core::pin"],[49541,"core::ops::range"],[49542,"core::ops::function"],[49543,"futures_channel::mpsc"],[49544,"core::cmp"],[49545,"serde::de"],[49546,"time::instant"],[49547,"tokio::time::instant"],[49548,"image::animation"],[49549,"serde::ser"],[49550,"time::error::conversion_range"],[49551,"core::time"],[49552,"alloc::string"],[49553,"iced_wgpu::primitive::pipeline"],[49554,"std::path"],[49555,"core::convert"],[49556,"num_traits::float"],[49557,"core::ops::arith"],[49558,"core::fmt"],[49559,"num_traits::ops::euclid"],[49560,"num_traits::ops::saturating"],[49561,"rayon::iter::par_bridge"],[49562,"alloc::collections::btree::map"],[49563,"std::collections::hash::map"],[49564,"qrcode::types"],[49565,"wgpu_types"],[49566,"wgpu_types"],[49567,"bitflags::iter"],[49568,"core::num::nonzero"],[49569,"wgpu_core::track"],[49570,"wgpu_core::command::draw"],[49571,"wgpu_core::command"],[49572,"core::fmt"],[49573,"naga::arena"],[49574,"naga::arena"],[49575,"core::iter::traits::double_ended"],[49576,"core::iter::traits::exact_size"],[49577,"rustc_hash"],[49578,"core::hash"],[49579,"core::marker"],[49580,"naga::valid::type"],[49581,"naga::valid::function"],[49582,"naga::valid::handles"],[49583,"naga::valid::handles"],[49584,"gpu_alloc::error"],[49585,"ash::vk::enums"],[49586,"gpu_descriptor::allocator"],[49587,"gpu_alloc::error"],[49588,"khronos_egl"],[49589,"khronos_egl"],[49590,"glow::native"],[49591,"lock_api::mutex"],[49592,"core::ffi"],[49593,"wgpu_hal::gles::egl"],[49594,"khronos_egl::egl1_0"],[49595,"core::num::nonzero"],[49596,"ash::entry"],[49597,"core::ffi::c_str"],[49598,"ash::device"],[49599,"ash::vk::definitions"],[49600,"wgpu_hal::vulkan::adapter"],[49601,"wgpu_hal::vulkan::adapter"],[49602,"core::num::nonzero"],[49603,"iced_core::window::icon"],[49604,"image::error"],[49605,"image::image"]],"d":["A list with all the defined themes.","Alignment on the axis of a container.","","The black color.","The background of some element.","A border.","Align at the center of the axis.","A color in the sRGB color space.","A solid color.","A set of asynchronous actions to be performed by some …","Scale as big as it can be without needing to crop or hide …","The strategy used to fit the contents of a widget to its …","Scale the image to cover all of the bounding box, cropping …","A Theme that uses a Custom palette.","A non-monospaced sans-serif font with normal Weight.","The built-in dark variant.","Degrees","A generic widget.","Align at the end of the axis.","Contains the error value","An error that occurred while running an application.","A user interface event.","A type that can run futures.","The futures executor could not be created.","Distort the image so the widget is 100% covered without …","Fill all the remaining space","Fill a portion of the remaining space relative to other …","Fill a fixed amount of space","A font.","A fill which transitions colors progressively along a …","Linearly interpolate between several colors.","The application graphics context could not be created.","A Size with infinite width and height.","A keyboard event","The strategy used to fill space in a specific dimension.","The built-in light variant.","A linear gradient interpolates colors along a direction at …","A monospaced font with normal Weight.","The type of messages your Sandbox will produce.","A mouse event","Don’t resize or scale the image at all.","The origin (i.e. a Point at (0, 0)).","Contains the success value","The amount of radians in half a circle.","An amount of space to pad for each side of a box","An amount of logical pixels.","A platform specific event","A 2D point.","The range of radians of a circle.","Radians","A rectangle.","The default graphics renderer for iced.","The result of running an Application.","A sandboxed Application.","Scale the image down if it’s too big for the space, but …","","A shadow.","Fill the least amount of space","An amount of space in 2 dimensions.","Align at the start of the axis.","A request to listen to external events.","A color with no opacity.","A built-in theme.","","A touch event","A Size with a width and height of 1 unit.","A 2D vector.","The white color.","","A window event","The application window could not be created.","Padding of zero","A Size with zero width and height.","The zero Vector.","Transparency, 0.0 - 1.0","Returns all of the actions of the Command.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Leverage advanced concepts like custom widgets.","Align and position widgets.","","","","","","","","Build interactive cross-platform applications.","Returns the area of the Rectangle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Blue component, 0.0 - 1.0","Creates a Command that performs the actions of all the …","Batches all the provided subscriptions and returns the …","The blur radius of the shadow.","Draw lines around containers.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Bottom padding","Returns the Point at the center of the Rectangle.","Returns the X coordinate of the Point at the center of the …","Returns the Y coordinate of the Point at the center of the …","","Access the clipboard.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The color of the border.","The color of the shadow.","Creates a Color with shorter and cleaner syntax.","Run asynchronous actions.","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the given Point is contained in the …","Creates a new custom Theme from the given Palette.","Creates a new custom Theme from the given Palette, with a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the distance to another Point.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Runs the given closure inside the Executor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Handle events of a user interface.","Choose your preferred executor to power your application.","Expands the Rectangle a given amount.","Expands this Size by the given amount.","Returns the palette::Extended of the Theme.","The Family of the Font.","","Returns the fill factor of the Length.","","","","Attempt to apply the given fit for a content size within …","Fits the Padding between the provided inner and outer Size.","Returns the “fluid” variant of the Length.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Load and use fonts.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Color from its linear RGBA components.","Creates a Subscription from a Recipe describing it.","Creates a Color from its RGB components.","Creates a Color from its RGB8 components.","Creates a Color from its RGBA components.","Creates a Color from its RGB8 components and an alpha …","","","","","","","","","","","","","","","","","","","","","","","","","","Green component, 0.0 - 1.0","Colors that transition progressively.","","","","","Height of the rectangle.","The height.","","Returns the total amount of horizontal Padding.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the intersection with the given Rectangle.","Returns whether the Rectangle intersects with the given …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Converts the Color into its linear values.","Returns the different recipes of the Subscription.","Converts the Color into its RGBA8 equivalent.","","","","","","","","","","","","","","","","","","","","","","","","Returns the inverted Color.","Inverts the Color in-place.","Returns true iff the Length is either Length::Fill or","Returns true if the current Rectangle is completely within …","Listen and react to keyboard events.","Left padding","","Applies a transformation to the result of a Command.","Transforms the Subscription output with the given function.","Returns the maximum of each component of this size and …","Returns the minimum of each component of this size and …","Listen and react to mouse events.","","","","","Adjust the opacity of the gradient by a multiplier applied …","Leverage multi-window support in your application.","Initializes the Sandbox.","Creates a new Executor.","Creates a new Color.","Create a Padding that is equal on all sides","Creates a new Point with the given coordinates.","Creates a new Rectangle with its top-left corner in the …","Creates a new Size with the given width and height.","Creates a new Vector with the given components.","Creates an empty Command.","Returns an empty Subscription that will not produce any …","The offset of the shadow.","Display interactive elements on top of other widgets.","Returns the Palette of the Theme.","","","","Creates a Command that performs the action of the given …","","","","Returns the position of the top left corner of the …","","Red component, 0.0 - 1.0","The radius of the border.","Right padding","Runs the Sandbox.","Runs the Sandbox.","Creates a Command that runs the given stream to completion.","Returns the scale factor of the Sandbox.","Returns the scale factor of the Sandbox.","","","Configure your application.","Creates a Command that performs a single Action.","Returns the Size of the Rectangle.","Snaps the Rectangle to unsigned integer coordinates.","Spawns a future in the Executor.","The Stretch of the Font.","Returns the current style variant of theme::Application.","Returns the current style variant of theme::Application.","The Style of the Font.","","","","","","","","Listen to external events in your application.","Retrieve system information.","Use the built-in theme and styles.","Returns the current Theme of the Sandbox.","Returns the current Theme of the Sandbox.","Listen and react to time.","Returns the current title of the Sandbox.","Calculates the line in which the angle intercepts the …","","","","","","","","","","","","","","","","","","","","","","","","","","Top padding","Listen and react to touch events.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the union with the given Rectangle.","","","","","","","","","","","","","","","","","","","","","","","","Handles a message and updates the state of the Sandbox.","","","Returns the total amount of vertical Padding.","Returns the widgets to display in the Sandbox.","The Weight of the Font.","Use the built-in widgets or create your own.","Creates a Command that performs a widget::Operation.","The width of the border.","Width of the rectangle.","The width.","Configure the window of your application in native …","Adds a value to the Subscription context.","","Creates a non-monospaced Font with the given Family::Name …","Creates a new default Border with the given Radius.","Creates a new Rectangle with its top-left corner at the …","","The X coordinate.","X coordinate of the top-left corner.","The X component of the Vector","The Y coordinate.","Y coordinate of the top-left corner.","The Y component of the Vector","A buffer for short-term storage and transfer within and …","The hasher used to compare layouts.","The bounds of a Node and its children, using absolute …","An interactive component that can be displayed on top of …","A component that can be used by widgets to draw themselves …","A connection to the state of a shell.","A paragraph.","A component that displays information and allows …","","","","","Returns whether the widgets of the current application …","","","","","","","","","","","","","","","","","","","","","","","","","Returns the bounds of the Layout.","The bounds of the paragraph.","Returns the state Tree of the children of the Widget.","Returns an iterator over the Layout of the children of a …","Clears all of the recorded primitives in the Renderer.","","","","","","","","","The content of the paragraph.","","","","","","","","","","Reconciliates the Widget with the provided Tree.","","","","","Draws the Overlay using the associated Renderer.","Draws the Widget using the associated Renderer.","","","","","Fills a Quad with the provided Background.","","","","","The font of the Text.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","The horizontal alignment of the Text.","Load and draw raster graphics.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Invalidates the current application layout.","Invalidates the current application widgets.","Returns true if the Shell contains no published messages","Returns whether the current layout is invalid or not.","Returns true if the cursor is over the Overlay.","Position your widgets properly.","Returns the layout Node of the Overlay.","Returns the layout::Node of the Widget.","The line height of the Text.","Merges the current Shell with another one by applying the …","Handle mouse events.","Returns the current mouse::Interaction of the Overlay.","Returns the current mouse::Interaction of the Widget.","Creates a new Layout for the given Node at the origin.","Creates a new Shell with the provided buffer of messages.","Processes a runtime Event.","Processes a runtime Event.","Applies a widget::Operation to the Overlay.","Applies an Operation to the Widget.","Display interactive elements on top of other widgets.","Returns the nested overlay of the Overlay, if there is any.","Returns the overlay of the Widget, if there is any.","Returns the position of the Layout.","Publish the given Message for an application to process it.","Reads the current content of the Clipboard as text.","Returns the request a redraw should happen, if any.","Write your own renderer.","Requests a new frame to be drawn.","Triggers the given function if the layout is invalid, …","The Shaping strategy of the Text.","Returns the Size of the Widget in lengths.","The size of the Text in logical pixels.","Returns a Size hint for laying out the Widget.","Returns the State of the Widget.","Write your own subscriptions.","Load and draw vector graphics.","Returns the Tag of the Widget.","Draw and interact with text.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The vertical alignment of the Text.","Create custom widgets and operate on them.","Draws the primitives recorded in the given closure in a …","Creates a new Layout for the given Node with the provided …","Applies a translation to the primitives recorded in the …","Writes the given text contents to the Clipboard.","","A wrapper around raw image data.","In-memory data","The data of a raster image.","Image filtering strategy.","A handle of some image data.","The image Handle to be displayed. Iced exposes its own …","Bilinear interpolation.","Nearest neighbor.","File data","A Renderer that can render raster graphics.","Decoded image pixels in RGBA format.","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the dimensions of an image for the given Handle.","","","Draws an image with the given Handle and inside the …","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Creates new Bytes around data.","","","","","","","","","","","","","","","","","","","The height of the image.","The pixels.","The width of the image.","The bounds of a Node and its children, using absolute …","A set of size constraints for layouting.","No limits","The bounds of an element and its children.","","","Aligns the Node in the given space.","Mutable reference version of Self::align.","","","","","","","","","Computes the resulting Node that fits the Limits given …","","","","","Returns the bounds of the Node.","Returns the children of the Node.","","","","","","","Computes the resulting Node that fits the Limits given …","Creates a new Node that wraps a single child with some …","","","","","","","","","","","Distribute elements using a flex-based layout.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Applies a height constraint to the current Limits.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Removes the minimum width constraint for the current Limits…","Returns the maximum Size of the Limits.","Applies a maximum height constraint to the current Limits.","Applies a maximum width constraint to the current Limits.","Returns the minimum Size of the Limits.","Applies a minimum height constraint to the current Limits.","Applies a minimum width constraint to the current Limits.","Moves the Node to the given position.","Mutable reference version of Self::move_to.","Creates new Limits with the given minimum and maximum Size.","Creates a new Node with the given Size.","Produces a Node with two children nodes one right next to …","Computes the Node that fits the Limits given some width, …","Computes a padded Node with a positioning step.","Computes the resulting Size that fits the Limits given …","Shrinks the current Limits by the given Size.","Returns the Size of the Node.","Computes the resulting Node that fits the Limits given …","","","Translates the Node by the given translation.","","","","","","","","","","","","","","","","","Applies a width constraint to the current Limits.","Creates a new Node with the given Size and children.","The main axis of a flex layout.","The horizontal axis","The vertical axis","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Computes the flex layout with the given axis and limits, …","","","","","","","","","The cursor has a defined position.","The back mouse button.","The button of a mouse.","A mouse button was pressed.","A mouse button was released.","A mouse click.","","The mouse cursor state.","The mouse cursor entered the window.","The mouse cursor left the window.","The mouse cursor was moved","A mouse event.","The forward mouse button.","","","","The interaction of a mouse cursor.","The left mouse button.","A line-based scroll movement","The middle (wheel) button.","","Some other button.","A pixel-based scroll movement","","","","The right mouse button.","A scroll movement.","","The cursor is currently unavailable (i.e. out of bounds or …","The mouse wheel was scrolled.","","","","","","","","","Track mouse clicks.","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Returns the Kind of Click.","Creates a new Click with the given position and previous …","Returns the position of the Click.","","","","","","","","","","The scroll movement.","The new position of the mouse cursor","The number of horizontal lines scrolled","The number of horizontal pixels scrolled","The number of vertical lines scrolled","The number of vertical pixels scrolled","A mouse click.","A double click","The kind of mouse click.","A single click","A triple click","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","A generic Overlay.","An Overlay container that displays multiple overlay …","An interactive component that can be displayed on top of …","","","","","","","","","","","","","","","","","","","","","","","","Draws the Overlay using the associated Renderer.","Draws the Element and its children using the given Layout.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns a Group of overlay Element children.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","Returns true if the cursor is over the Element.","","Returns true if the cursor is over the Overlay.","Returns the layout Node of the Overlay.","Computes the layout of the Element in the given bounds.","","Applies a transformation to the produced message of the …","Returns the current mouse::Interaction of the Element.","","Returns the current mouse::Interaction of the Overlay.","Creates a new Element containing the given Overlay.","Creates an empty Group.","Processes a runtime Event.","","Processes a runtime Event.","Applies a widget::Operation to the Element.","","Applies a widget::Operation to the Overlay.","Returns the nested overlay of the Element, if there is any.","Turns the Group into an overlay overlay::Element.","","Returns the nested overlay of the Overlay, if there is any.","Returns the position of the Element.","Adds an overlay::Element to the Group.","Translates the Element.","","","","","","","","","","","","","","","","","Creates a Group with the given elements.","A renderer that does nothing.","A polygon with four sides.","A component that can be used by widgets to draw themselves …","The styling attributes of a Renderer.","","","","","","","","","","","","","","","","The Border of the Quad.","","","","","","","The bounds of the Quad.","Clears all of the recorded primitives in the Renderer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Fills a Quad with the provided Background.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","Creates a new Null renderer.","The Shadow of the Quad.","The text color","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the primitives recorded in the given closure in a …","","Applies a translation to the primitives recorded in the …","","A stream of runtime events.","The events that will be produced by a Subscription with …","The description of a Subscription.","Hashes the Recipe.","Executes the Recipe and produces the stream of events of …","In-memory data","The data of a vectorial image.","A handle of Svg data.","File data","A Renderer that can render vector graphics.","","","","","","","","","","","","","Returns the default dimensions of an SVG for the given …","","Draws an SVG with the given Handle, an optional Color …","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The char representing a ▼ icon in the built-in ICON_FONT.","An absolute height in logical pixels.","Advanced text shaping and font fallback.","No shaping and no font fallback.","A bounds difference.","The char representing a ✔ icon in the ICON_FONT.","The point was within the bounds of the returned character …","The difference detected in some text.","A component that can be used by widgets to edit multi-line …","The Editor of this Renderer.","The font of this Paragraph.","The font of the Editor.","The font type used.","The output of the Highlighter.","A type capable of highlighting text.","The result of hit testing on text.","The icon font of the backend.","The highlight iterator type.","The height of a line of text in a paragraph.","No difference.","A text paragraph.","The Paragraph of this Renderer.","A factor of the size of the text.","A renderer capable of measuring and drawing Text.","The settings to configure the Highlighter.","A shape difference.","The shaping strategy of some text.","A paragraph.","","","","","","","","","","","","","","","Returns the current boundaries of the Editor.","The bounds of the paragraph.","Notifies the Highlighter that the line at the given index …","","","","","Compares the Paragraph with some desired Text and returns …","","","The content of the paragraph.","Returns the current line of the Highlighter.","Returns the current Cursor of the Editor.","Computes the cursor position of the Hit .","Returns the current cursor position of the Editor.","Returns the default Self::Font.","Returns the default size of Text.","","","","","","","","","Edit text.","","","","","","Draws the given Editor at the given position and with the …","Draws the given Paragraph at the given position and with …","Draws the given Text at the given position and with the …","","","The font of the Text.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the distance to the given grapheme index in the …","Runs a text Highlighter in the Editor.","Highlights the given line.","Highlight text.","Tests whether the provided point is within the boundaries …","Returns the horizontal alignment of the Paragraph.","The horizontal alignment of the Text.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns the text of the given line in the Editor, if it …","Returns the amount of lines in the Editor.","The line height of the Text.","Loads a Self::Font from its bytes.","Returns the minimum boundaries that can fit the contents …","Returns the minimum height that can fit the contents of …","Returns the minimum width that can fit the contents of the …","Creates a new Highlighter from its Self::Settings.","Performs an Action on the Editor.","Lays out the Paragraph with some new boundaries.","Returns the current selected text of the Editor.","The Shaping strategy of the Text.","The size of the Text in logical pixels.","","","","","","","","","","","","","","","","","","","Updates the Editor with some new attributes.","Updates the Highlighter with some new Self::Settings.","Updates the Paragraph to match the given Text, if needed.","Returns the vertical alignment of the Paragraph.","The vertical alignment of the Text.","Creates a new Paragraph laid out with the given Text.","Creates a new Editor laid out with the given text.","An interaction with an Editor.","Delete the previous character.","Cursor without a selection","Click the Editor at the given Point.","The cursor of an Editor.","Delete the next character.","A direction in some text.","Move to the end of the text.","Move to the start of the text.","Move down.","Drag the mouse on the Editor to the given Point.","An action that edits text.","Perform an Edit.","A component that can be used by widgets to edit multi-line …","Move to the end of the line.","Break the current line.","The font of the Editor.","Move to the start of the line.","Insert the given character.","Move left.","<-","A cursor movement.","Apply a Motion.","Move to the start of the next window.","Move to the start of the previous window.","Paste the given text.","Move right.","->","Scroll the Editor a certain amount of lines.","Select text with a given Motion.","Select the line at the current cursor.","Select the word at the current cursor.","Cursor selecting a range of text","Move up.","Move to the left boundary of a word.","Move to the right boundary of a word.","","","","","","","","","","","","","","","Returns the current boundaries of the Editor.","","","","","","","Returns the current Cursor of the Editor.","Returns the current cursor position of the Editor.","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Runs a text Highlighter in the Editor.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns the text of the given line in the Editor, if it …","Returns the amount of lines in the Editor.","Performs an Action on the Editor.","Returns the current selected text of the Editor.","","","","","","","","","","","","","","","","","","","Updates the Editor with some new attributes.","Creates a new Editor laid out with the given text.","The amount of lines to scroll.","The format of some text.","The output of the Highlighter.","A type capable of highlighting text.","The highlight iterator type.","A highlighter that highlights nothing.","The settings to configure the Highlighter.","","","","","","","","","","","","","","","Notifies the Highlighter that the line at the given index …","","","","","","The Color of the text.","","","Returns the current line of the Highlighter.","","","","","","","","","","","","","","The Font of the text.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Highlights the given line.","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Creates a new Highlighter from its Self::Settings.","","","","","","","","","","","","","","","","","","","","Updates the Highlighter with some new Self::Settings.","","The identifier of a generic widget.","A piece of logic that can traverse the widget tree of an …","A paragraph of text.","A persistent state widget tree.","A component that displays information and allows …","","","","","","","","","","","","","","","","","","","","","","Returns the state Tree of the children of the Widget.","The children of the root widget of the Tree.","","","","","","","","Operates on a widget that contains other widgets.","Operates on a custom widget with some state.","","","","","","","Reconciliates the Widget with the provided Tree.","Reconciliates the current tree with the provided Widget.","Reconciles the children of the tree with the provided list …","Reconciliates the children of the tree with the provided …","","","","Draws the Widget using the associated Renderer.","","","","","Creates an empty, stateless Tree with no children.","","","","","Finishes the Operation and returns its Outcome.","","","Operates on a widget that can be focused.","Sets the Font of the Text.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","Sets the height of the Text boundaries.","Sets the alignment::Horizontal of the Text.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Returns the layout::Node of the Widget.","","Sets the LineHeight of the Text.","Returns the current mouse::Interaction of the Widget.","Create a new fragment of Text with the given contents.","Creates a new Tree for the provided Widget.","Creates a custom Id.","Processes a runtime Event.","Applies an Operation to the Widget.","Query or update internal widget state.","Returns the overlay of the Widget, if there is any.","Operates on a widget that can be scrolled.","Sets the Shaping strategy of the Text.","Returns the Size of the Widget in lengths.","","Sets the size of the Text.","Returns a Size hint for laying out the Widget.","","Returns the State of the Widget.","The State of the Tree.","Sets the style of the Text.","","Returns the Tag of the Widget.","The tag of the Tree.","Write some text for your users to read.","Operates on a widget that has text input.","","","Store internal widget state in a state tree to ensure …","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","","","","Sets the alignment::Vertical of the Text.","Sets the width of the Text boundaries.","The Operation needs to be followed by another Operation.","The internal state of a widget that can be focused.","The Operation produced no result.","A piece of logic that can traverse the widget tree of an …","The result of an Operation.","The internal state of a widget that can be scrolled.","The Operation produced some result.","The internal state of a widget that has text input.","","","","","","","","","Operates on a widget that contains other widgets.","Operates on a custom widget with some state.","","","","","Finishes the Operation and returns its Outcome.","","Focuses the widget.","Operate on widgets that can be focused.","Operates on a widget that can be focused.","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","Returns whether the widget is focused or not.","Maps the output of an Operation using the given function.","Moves the cursor of the text input to an arbitrary …","Moves the cursor of the text input to the end of the input …","Moves the cursor of the text input to the front of the …","Produces an Operation that applies the given Operation to …","Scroll the widget to the given AbsoluteOffset along the …","Operate on widgets that can be scrolled.","Operates on a widget that can be scrolled.","Selects all the content of the text input.","Snaps the scroll of the widget to the given percentage …","Operate on widgets that have text input.","Operates on a widget that has text input.","","","","","","","","Unfocuses the widget.","","A summary of the focusable widgets present on a widget …","The internal state of a widget that can be focused.","","","","","","","","","","","Produces an Operation that generates a Count and chains it …","","","","","","","","","","Produces an Operation that searches for the current …","","Produces an Operation that focuses the widget with the …","Focuses the widget.","Produces an Operation that searches for the current …","Produces an Operation that searches for the current …","The index of the current focused widget, if any.","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Returns whether the widget is focused or not.","","The total amount of focusable widgets.","","","","","","","","Unfocuses the widget.","","The amount of absolute offset in each direction of a …","The amount of relative offset in each direction of a …","The internal state of a widget that can be scrolled.","Produces an Operation that scrolls the widget with the …","Scroll the widget to the given AbsoluteOffset along the …","Produces an Operation that snaps the widget with the given …","Snaps the scroll of the widget to the given percentage …","The amount of horizontal offset","The amount of horizontal offset","The amount of vertical offset","The amount of vertical offset","The internal state of a widget that has text input.","Produces an Operation that moves the cursor of the widget …","Moves the cursor of the text input to an arbitrary …","Produces an Operation that moves the cursor of the widget …","Moves the cursor of the text input to the end of the input …","Produces an Operation that moves the cursor of the widget …","Moves the cursor of the text input to the front of the …","Produces an Operation that selects all the content of the …","Selects all the content of the text input.","An absolute height in logical pixels.","Advanced text shaping and font fallback.","The apperance of some text.","No shaping and no font fallback.","The height of a line of text in a paragraph.","A factor of the size of the text.","The shaping strategy of some text.","The internal state of a Text widget.","The supported style of the StyleSheet.","The style sheet of some text.","A paragraph of text.","Produces the Appearance of some text.","The Color of the text.","Draws text using the same logic as the Text widget.","Produces the layout::Node of a Text widget.","No meaningful internal state.","Some meaningful internal state.","The internal State of a widget.","The identifier of some widget state.","A persistent state widget tree.","","","","","","","","","","","","","","","The children of the root widget of the Tree.","","","","","","","","","","","Reconciliates the current_children with the provided list …","","","Downcasts the State to T and returns a mutable reference …","Downcasts the State to T and returns a reference to it.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Creates a new State.","Creates a Tag for a state of type T.","","The State of the Tree.","Creates a Tag for a stateless widget.","The tag of the Tree.","","","","","","","","","","","","","","","","","","Alignment on the axis of a container.","Align bottom","Align at the center of the axis.","Horizontally centered","Vertically centered","Align at the end of the axis.","The horizontal Alignment of some resource.","Align left","Align right","Align at the start of the axis.","Align top","The vertical Alignment of some resource.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The appearance of an application.","An interactive cross-platform application.","The Executor that will run commands and subscriptions.","The data needed to initialize your Application.","The type of messages your Application will produce.","The supported style of the StyleSheet.","A set of rules that dictate the style of an application.","The theme of your Application.","","Returns the Appearance of the application for the provided …","","","","","The background Color of the application.","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Initializes the Application with the flags provided to run …","Runs the Application.","Returns the scale factor of the Application.","Returns the current Style of the Theme.","Returns the event Subscription for the current state of the","The default text Color of the application.","Returns the current Theme of the Application.","Returns the current title of the Application.","","","","","","","","","","Handles a message and updates the state of the Application.","Returns the widgets to display in the Application.","A border.","The border radii for the corners of a graphics primitive …","","","","","","","","","","The color of the border.","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","The radius of the border.","","","","","","","","","","The width of the border.","Read the current contents of the clipboard.","Write the given contents to the clipboard.","A set of asynchronous actions to be performed by some …","Creates a Command that produces the Messages published …","The Event was handled and processed by a widget.","A user interface event.","The Event was NOT handled by any widget.","A keyboard event","Describes an event specific to MacOS","A MacOS specific event","A mouse event","A platform specific event","A platform specific event","Triggered when the app receives an URL from the system","The status of an Event after being processed.","A touch event","A window event","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns a Subscription to all the ignored runtime events.","Creates a Subscription that produces a message for every …","Creates a Subscription that listens and filters all the …","","","","","","","","","","","","","","","","","","","A default cross-platform executor.","A type that can run futures.","Runs the given closure inside the Executor.","Creates a new Executor.","Spawns a future in the Executor.","","","","Glyphs in cursive fonts generally use a more informal …","An error while loading a font.","","","","","","A font family.","Fantasy fonts are primarily decorative or expressive fonts …","A font.","","","","The sole criterion of a monospace font is that all glyphs …","The name of a font family of choice.","","","","","Glyphs in sans-serif fonts, as the term is used in CSS, …","","","","Serif fonts represent the formal text style for a script.","The width of some text.","The style of some text.","","","","The weight of some text.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Family of the Font.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Load a font from its bytes.","The Stretch of the Font.","The Style of the Font.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Weight of the Font.","A point along the gradient vector where the specified color…","A fill which transitions colors progressively along a …","A linear gradient.","A linear gradient interpolates colors along a direction at …","","","Adds a new ColorStop, defined by an offset and a color, to …","Adds multiple ColorStops to the gradient.","How the Gradient is angled within its bounds.","","","","","","","","","","","","","","","","","The color of the gradient at the specified offset.","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Creates a new Linear gradient with the given angle in …","Offset along the gradient vector.","ColorStops along the linear gradient path.","","","","","","","","","","","","","","","","","","","The “alt” key.","The “command” key.","The “control” key.","A key string that corresponds to the character typed by …","A keyboard event.","A key on the keyboard.","A keyboard key was pressed.","A keyboard key was released.","The “windows” key on Windows, “command” key on …","The left side of the keyboard.","The location of a key on the keyboard.","The current state of the keyboard modifiers.","The keyboard modifiers have changed.","A key with an established name.","The numpad of the keyboard.","The right side of the keyboard.","The “shift” key.","The standard group of keys on the keyboard.","An unidentified key.","","","","","Returns the set containing all flags.","Returns true if the ALT key is pressed in the Modifiers.","","","","","","","","","","","","","","","","","Convert Key::Character(SmolStr) to Key::Character(&str) so …","Returns the intersection between the two sets of flags.","Disables all flags disabled in the set.","Returns the union of the two sets of flags.","Adds the set of flags.","Returns the raw value of the flags currently stored.","Returns the left flags, but with all the right flags …","Toggles the set of flags.","","","","","","","","","","","","","","","","","","","Returns true if a “command key” is pressed in the …","","","Returns the complement of this set of flags.","","","","","Returns true if all of the flags in other are contained …","Returns true if the CTRL key is pressed in the Modifiers.","","","","","","","","","","Returns the difference between the flags in self and other.","","","","","","","","","Returns an empty set of flags.","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Convert from underlying bit representation, unless that …","Convert from underlying bit representation, dropping any …","Convert from underlying bit representation, preserving all …","","","","","","","","","","","","Inserts the specified flags in-place.","Returns the intersection between the flags in self and …","Returns true if there are flags common to both self and …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if all flags are currently set.","Returns true if no flags are currently stored.","Identify keyboard keys.","Returns true if the LOGO key is pressed in the Modifiers.","Returns the complement of this set of flags.","Listens to keyboard key presses and calls the given …","Listens to keyboard key releases and calls the given …","","","Removes the specified flags in-place.","Inserts or removes the specified flags depending on the …","Returns true if the SHIFT key is pressed in the Modifiers.","Returns the set difference of the two sets of flags.","Disables all flags enabled in the set.","Returns the symmetric difference between the flags in self …","","","","","Toggles the specified flags in-place.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the union of between the flags in self and other.","","","","","The key pressed.","The key released.","The location of the key.","The location of the key.","The state of the modifier keys.","The state of the modifier keys.","The text produced by the key press, if any.","Switch the input mode on an external AVR (audio/video …","Toggle the power on an external AVR (audio/video …","The Accept (Commit, OK) key. Accept current option or …","Redo or repeat an action.","Initate the multi-candidate mode.","","The Alt (Alternative) key.","The Alternate Graphics (AltGr or AltGraph) key.","The Application switch key, which provides a list of …","Navigate or traverse downward. (KEYCODE_DPAD_DOWN)","Navigate or traverse leftward. (KEYCODE_DPAD_LEFT)","Navigate or traverse rightward. (KEYCODE_DPAD_RIGHT)","Navigate or traverse upward. (KEYCODE_DPAD_UP)","The Attention (Attn) key.","Adjust audio balance leftward. (VK_AUDIO_BALANCE_LEFT)","Adjust audio balance rightward. (VK_AUDIO_BALANCE_RIGHT)","Decrease audio bass boost or cycle down through bass boost …","Toggle bass boost on/off. (APPCOMMAND_BASS_BOOST)","Increase audio bass boost or cycle up through bass boost …","Adjust audio fader towards front. (VK_FADER_FRONT)","Adjust audio fader towards rear. (VK_FADER_REAR)","Advance surround audio mode to next available mode. (…","Decrease treble. (APPCOMMAND_TREBLE_DOWN)","Increase treble. (APPCOMMAND_TREBLE_UP)","Decrease audio volume. (APPCOMMAND_VOLUME_DOWN, …","Toggle between muted state and prior volume level. (…","Increase audio volume. (APPCOMMAND_VOLUME_UP, …","Used to remove the character to the left of the cursor. …","The Brightness Down key. Typically controls the display …","The Brightness Up key. Typically controls the display …","Navigate to previous content or page in current history. (…","Open the list of browser favorites. (…","Navigate to next content or page in current history. (…","Go to the user’s preferred home page. (…","Refresh the current page or content. (…","Call up the user’s preferred search page. (…","Stop loading the current page or content. (…","The Call key. (KEYCODE_CALL)","The Camera key. (KEYCODE_CAMERA)","The Camera focus key. (KEYCODE_FOCUS)","","The Caps Lock (Capital) key.","Select next (numerically or logically) lower channel. (…","Select next (numerically or logically) higher channel. (…","A key string that corresponds to the character typed by …","Remove the currently selected input.","Close the current document or message (Note: This …","Toggle the display of Closed Captions. (VK_CC, …","Initiate the Code Input mode to allow characters to be …","General purpose color-coded media function key, as index 0 …","General purpose color-coded media function key, as index 1 …","General purpose color-coded media function key, as index 2 …","General purpose color-coded media function key, as index 3 …","General purpose color-coded media function key, as index 4 …","General purpose color-coded media function key, as index 5 …","The Compose key, also known as “Multi_key” on the X …","Show the application’s context menu. This key is …","The Control or Ctrl key.","Convert the current input method sequence.","Copy the current selection. (APPCOMMAND_COPY)","The Cursor Select key.","Cut the current selection. (APPCOMMAND_CUT)","Select Digital Video Rrecorder. (KEYCODE_DVR)","Used to delete the character to the right of the cursor. …","Adjust brightness of device, by toggling between or …","Swap video sources. (VK_DISPLAY_SWAP)","The Eisu key. This key may close the IME, but its purpose …","Toggle removable media to eject (open) and insert (close) …","The End key, used with keyboard entry to go to the end of …","The End Call key. (KEYCODE_ENDCALL)","The Enter or key. Used to activate current selection …","The Erase to End of Field key. This key deletes all …","The Esc key. This key was originally used to initiate an …","The Extend Selection (Exsel) key.","","Exit the current application. (VK_EXIT)","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key. Usually found at the top of …","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","Clear program or content stored as favorite 0. (…","Clear program or content stored as favorite 1. (…","Clear program or content stored as favorite 2. (…","Clear program or content stored as favorite 3. (…","Select (recall) program or content stored as favorite 0. (…","Select (recall) program or content stored as favorite 1. (…","Select (recall) program or content stored as favorite 2. (…","Select (recall) program or content stored as favorite 3. (…","Store current program or content as favorite 0. (…","Store current program or content as favorite 1. (…","Store current program or content as favorite 2. (…","Store current program or content as favorite 3. (…","The Final Mode Final key used on some Asian keyboards, to …","Open the Find dialog. (APPCOMMAND_FIND)","The Function switch Fn key. Activating this key …","The Function-Lock (FnLock or F-Lock) key. Activating this …","The Back key. (KEYCODE_BACK)","The Home key, which goes to the phone’s main screen. (…","Switch to the first character group. (ISO/IEC 9995)","Switch to the last character group. (ISO/IEC 9995)","Switch to the next character group. (ISO/IEC 9995)","Switch to the previous character group. (ISO/IEC 9995)","Toggle display of program or content guide. (VK_GUIDE, …","If guide is active and displayed, then display next …","If guide is active and displayed, then display previous …","Toggle between Hangul and English modes.","","The (Half-Width) Characters key.","The Headset Hook key. (KEYCODE_HEADSETHOOK)","Open a help dialog or toggle display of help information. (…","The Hibernate key. This key saves the current state of the …","The Hiragana (Japanese Kana characters) key.","The Hiragana/Katakana toggle key. (…","The Home key, used with keyboard entry, to go to start of …","","Toggle display of information about currently selected …","Toggle between text modes for insertion or overtyping. (…","Toggle instant replay. (VK_INSTANT_REPLAY)","","The Kana Mode (Kana Lock) key. This key is used to enter …","The Kanji (Japanese name for ideographic characters of …","The Katakana (Japanese Kana characters) key.","A key on the keyboard.","The 11 key found on media numpads that have buttons from 1 …","The 12 key found on media numpads that have buttons from 1 …","","The first generic “LaunchApplication” key. This is …","The second generic “LaunchApplication” key. This is …","The “Calendar” key. (KEYCODE_CALENDAR)","The “Contacts” key. (KEYCODE_CONTACTS)","The “Mail” key. (APPCOMMAND_LAUNCH_MAIL)","The “Media Player” key. (APPCOMMAND_LAUNCH_MEDIA_SELECT…","","","","","","","","Launch linked content, if available and appropriate. (…","List the current program. (VK_LIST)","Toggle display listing of currently available live content …","Lock or unlock current content or program. (VK_LOCK)","","Open an editor to forward the current message. (…","Open an editor to reply to the current message. (…","Send the current message. (APPCOMMAND_SEND_MAIL)","Toggle between manner mode state: silent, vibrate, ring, …","Show a list of media applications: audio/video players and …","Audio track key. (KEYCODE_MEDIA_AUDIO_TRACK)","Close the current media, for example to close a CD or DVD …","Initiate or continue forward playback at faster than …","Select previously selected channel or media. (VK_LAST, …","Pause the currently playing media. (APPCOMMAND_MEDIA_PAUSE…","Initiate or continue media playback at normal speed, if …","Toggle media between play and pause states. (…","Initiate or resume recording of currently selected media. (…","Initiate or continue reverse playback at faster than …","Skip backward to next content or program. (…","Skip forward to next content or program. (VK_SKIP, …","Step backward to next content or program. (…","Step forward to next content or program. (…","Stop media playing, pausing, forwarding, rewinding, or …","Media top menu. (KEYCODE_MEDIA_TOP_MENU)","Seek to next media or program track. (…","Seek to previous media or program track. (…","","Toggle the microphone on/off. (APPCOMMAND_MIC_ON_OFF_TOGGLE…","Decrease microphone volume. (…","Mute the microphone. (APPCOMMAND_MICROPHONE_VOLUME_MUTE, …","Increase microphone volume. (…","Toggle between or cycle through input modes of IMEs.","A named key.","A key with an established name.","Navigate in. (KEYCODE_NAVIGATE_IN)","Navigate to next key. (KEYCODE_NAVIGATE_NEXT)","Navigate out. (KEYCODE_NAVIGATE_OUT)","Navigate to previous key. (KEYCODE_NAVIGATE_PREVIOUS)","Open a new document or message. (APPCOMMAND_NEW)","","Cycle to next favorite channel (in favorites list). (…","Cycle to next user profile (if there are multiple user …","Accept current input method sequence without conversion in …","The Notification key. (KEYCODE_NOTIFICATION)","The NumLock or Number Lock key. Used to toggle numpad mode …","Access on-demand content or programs. (VK_ON_DEMAND)","Open an existing document or message. (APPCOMMAND_OPEN)","Scroll down or display next page of content.","Scroll up or display previous page of content.","Pairing key to pair devices. (KEYCODE_PAIRING)","The Paste key. (APPCOMMAND_PASTE)","Pause the current state or application (as appropriate).","Move picture-in-picture window down. (VK_PINP_DOWN)","Move picture-in-picture window. (VK_PINP_MOVE)","Toggle display of picture-in-picture window. (…","Move picture-in-picture window up. (VK_PINP_UP)","Play or resume the current state or application (as …","Decrease media playback speed. (VK_PLAY_SPEED_DOWN)","Reset playback to normal speed. (VK_PLAY_SPEED_RESET)","Increase media playback speed. (VK_PLAY_SPEED_UP)","Toggle power state. (KEYCODE_POWER) Note: Note: Some …","The PowerOff key. Sometime called PowerDown.","","Print the current document or message. (APPCOMMAND_PRINT)","Initiate print-screen function.","","The properties (Props) key.","Toggle random media or content shuffle mode. (…","Not a physical key, but this key code is sent when the …","Toggle or cycle between media recording speeds. (…","Redo the last action. (APPCOMMAND_REDO)","Toggle RF (radio frequency) input bypass mode (pass RF …","The Roman characters function key.","Switch the input mode on an external STB (set top box). (…","Toggle the power on an external STB (set top box). (…","Save the current document or message. (APPCOMMAND_SAVE)","Toggle scan channels mode. (VK_SCAN_CHANNELS_TOGGLE)","Advance display screen mode to next available mode. (…","Toggle between scrolling and cursor movement modes.","","Toggle display of device settings screen. (VK_SETTINGS, …","Used to enable shift modifier function for interpreting …","","General purpose virtual function key, as index 1.","General purpose virtual function key, as index 2.","General purpose virtual function key, as index 3.","General purpose virtual function key, as index 4.","Used in text to insert a space between words. Usually …","Show correction list when a word is incorrectly …","Toggle between dictation mode and command/control mode. (…","Spellcheck the current document or selection. (…","Toggle split screen mode. (VK_SPLIT_SCREEN_TOGGLE)","The Standby key. This key turns off the display and places …","Toggle display of subtitles, if available. (VK_SUBTITLE)","Used to enable “super” modifier function for …","The Symbol modifier key (used on some virtual keyboards).","","Switch to viewing TV. (KEYCODE_TV)","TV 3D Mode. (KEYCODE_3D_MODE)","Toggle between antenna and cable input. (…","Audio description. (KEYCODE_TV_AUDIO_DESCRIPTION)","Audio description mixing volume down. (…","Audio description mixing volume up. (…","Contents menu. (KEYCODE_TV_CONTENTS_MENU)","Contents menu. (KEYCODE_TV_DATA_SERVICE)","Switch the input mode on an external TV. (KEYCODE_TV_INPUT)","Switch to component input #1. (KEYCODE_TV_INPUT_COMPONENT_1…","Switch to component input #2. (KEYCODE_TV_INPUT_COMPONENT_2…","Switch to composite input #1. (KEYCODE_TV_INPUT_COMPOSITE_1…","Switch to composite input #2. (KEYCODE_TV_INPUT_COMPOSITE_2…","Switch to HDMI input #1. (KEYCODE_TV_INPUT_HDMI_1)","Switch to HDMI input #2. (KEYCODE_TV_INPUT_HDMI_2)","Switch to HDMI input #3. (KEYCODE_TV_INPUT_HDMI_3)","Switch to HDMI input #4. (KEYCODE_TV_INPUT_HDMI_4)","Switch to VGA input #1. (KEYCODE_TV_INPUT_VGA_1)","Media context menu. (KEYCODE_TV_MEDIA_CONTEXT_MENU)","Toggle network. (KEYCODE_TV_NETWORK)","Number entry. (KEYCODE_TV_NUMBER_ENTRY)","Toggle the power on an external TV. (KEYCODE_TV_POWER)","Radio. (KEYCODE_TV_RADIO_SERVICE)","Satellite. (KEYCODE_TV_SATELLITE)","Broadcast Satellite. (KEYCODE_TV_SATELLITE_BS)","Communication Satellite. (KEYCODE_TV_SATELLITE_CS)","Toggle between available satellites. (…","Analog Terrestrial. (KEYCODE_TV_TERRESTRIAL_ANALOG)","Digital Terrestrial. (KEYCODE_TV_TERRESTRIAL_DIGITAL)","Timer programming. (KEYCODE_TV_TIMER_PROGRAMMING)","The Horizontal Tabulation Tab key.","Toggle display of teletext, if available (VK_TELETEXT, …","Undo the last action. (APPCOMMAND_UNDO)","An unidentified key.","Advance video mode to next available mode. (…","","The WakeUp key. (KEYCODE_WAKEUP)","Cause device to identify itself in some manner, e.g., …","The Zenkaku (Full-Width) Characters key.","The Zenkaku/Hankaku (full-width/half-width) toggle key. (…","The ZoomIn key. (KEYCODE_ZOOM_IN)","The ZoomOut key. (KEYCODE_ZOOM_OUT)","Toggle between full-screen and scaled content, or alter …","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","The cursor has a defined position.","The back mouse button.","The button of a mouse.","A mouse button was pressed.","A mouse button was released.","","The mouse cursor state.","The mouse cursor entered the window.","The mouse cursor left the window.","The mouse cursor was moved","A mouse event.","The forward mouse button.","","","","The interaction of a mouse cursor.","The left mouse button.","A line-based scroll movement","The middle (wheel) button.","","Some other button.","A pixel-based scroll movement","","","","The right mouse button.","A scroll movement.","","The cursor is currently unavailable (i.e. out of bounds or …","The mouse wheel was scrolled.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the Cursor is over the given bounds.","","Returns the absolute position of the Cursor, if available.","Returns the relative position of the Cursor from the given …","Returns the relative position of the Cursor inside the …","Returns the absolute position of the Cursor, if available …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The scroll movement.","The new position of the mouse cursor","The number of horizontal lines scrolled","The number of horizontal pixels scrolled","The number of vertical lines scrolled","The number of vertical pixels scrolled","An interactive cross-platform multi-window application.","The Executor that will run commands and subscriptions.","The data needed to initialize your Application.","The type of messages your Application will produce.","The theme of your Application.","Initializes the Application with the flags provided to run …","Runs the multi-window Application.","Runs the multi-window Application.","Returns the scale factor of the window of the Application.","Returns the scale factor of the window of the Application.","Returns the current Style of the Theme.","Returns the current Style of the Theme.","Returns the event Subscription for the current state of the","Returns the event Subscription for the current state of the","Returns the current Theme of the window of the Application.","Returns the current Theme of the window of the Application.","Returns the current title of the window of the Application.","Handles a message and updates the state of the Application.","Returns the widgets to display in the window of the …","A generic overlay.","Build and show dropdown menus.","The appearance of a menu.","A list of selectable options.","The local state of a Menu.","The supported style of the StyleSheet.","The style sheet of a menu.","Produces the Appearance of a menu.","The Background of the menu.","The Border of the menu.","The background Color of a selected option in the menu.","The text Color of a selected option in the menu.","The text Color of the menu.","The settings of an application.","","If set to true, the renderer will try to perform …","","","","","","","","","","","The default Font to be used.","The text size that will be used by default.","","","","","The data needed to initialize the Application.","","The fonts to load on boot.","Returns the argument unchanged.","","","The identifier of the application.","","Calls U::from(self).","","","","","","","","","","","","","","","","","The window settings.","Initialize Application settings using the given data.","A request to listen to external events.","Creates a Subscription that publishes the events sent from …","Returns a Subscription that will call the given function …","Returns a Subscription that will create and asynchronously …","Returns a Subscription that will create and asynchronously …","Contains informations about the system (e.g. system name, …","","","","","","","","","","","Detailed processor model information","The number of physical cores on the processor","","","","","Query for available system information.","","Returns the argument unchanged.","","","Model information for the active graphics adapter","Underlying graphics backend for rendering","","Calls U::from(self).","","","","","","","","Total RAM size, KB","Memory used by this process, KB","Operating system kernel version","The operating system name","Short operating system version number","Long operating system version","","","","","","","","","","The style of an application.","A simple box.","The style of a button.","The style of a checkbox.","Colored text.","The style of a container.","A Theme with a customized Palette.","A Theme that uses a Custom palette.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","The built-in dark variant of a Palette.","The danger style.","The danger style.","The built-in dark variant.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","No filtering to the rendered SVG.","The default style.","The default style.","The default style.","The default style.","The destructive style.","The built-in light variant of a Palette.","The built-in light variant.","The style of a menu.","A color palette.","The style of a pane grid.","The style of a pick list.","The positive style.","The primary style.","The primary style.","The primary style.","The style of a progress bar.","The style of a radio button.","The style of a rule.","The style of a scrollable.","The secondary style.","The secondary style.","The style of a slider.","The success style.","The success style.","Svg","The style of text.","The text style.","The style of a text input.","The style of a text input.","A built-in theme.","The style of a toggler.","No style.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a custom Button style variant.","Creates a custom Scrollable theme.","Creates a custom Svg style.","The danger Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Custom theme from the given Palette.","Define the colors of a theme.","The primary Color of the Palette.","The success Color of the Palette.","The text Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Custom theme from the given Palette with a …","A set of background colors.","A set of danger colors.","The built-in dark variant of an Extended palette.","The built-in light variant of an Extended palette.","An extended set of colors generated from a Palette.","A pair of background and text colors.","A color palette.","A set of primary colors.","A set of secondary colors.","A set of success colors.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background Color of the Palette.","The set of background colors.","The base background color.","The base primary color.","The base secondary color.","The base success color.","The base danger color.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background color.","","","","","","","","The danger Color of the Palette.","The set of danger colors.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Generates an Extended palette from a simple Palette.","Generates a set of Primary colors from the base, …","Generates a set of Secondary colors from the base and text …","Generates a set of Success colors from the base, …","Generates a set of Danger colors from the base, …","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether the palette is dark or not.","Creates a new Pair from a background Color and some text …","Generates a set of Background colors from the base and …","The primary Color of the Palette.","The set of primary colors.","The set of secondary colors.","A stronger version of the base background color.","A stronger version of the base primary color.","A stronger version of the base secondary color.","A stronger version of the base success color.","A stronger version of the base danger color.","The success Color of the Palette.","The set of success colors.","The text Color of the Palette.","The text color.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A weaker version of the base background color.","A weaker version of the base primary color.","A weaker version of the base secondary color.","A weaker version of the base success color.","A weaker version of the base danger color.","A Duration type to represent a span of time, typically …","A measurement of a monotonically nondecreasing clock. …","The maximum duration.","The duration of one microsecond.","The duration of one millisecond.","The duration of one nanosecond.","The duration of one second.","A duration of zero time.","Computes the absolute difference between self and other.","","","Panics","","","","","","Panics","","","","","","","","","","Returns the total number of whole microseconds contained …","Returns the total number of whole milliseconds contained …","Returns the total number of nanoseconds contained by this …","Returns the number of whole seconds contained by this …","Returns the number of seconds contained by this Duration …","Returns the number of seconds contained by this Duration …","","","","","Returns Some(t) where t is the time self + duration if t …","Checked Duration addition. Computes self + other, …","Checked Duration division. Computes self / other, …","Returns the amount of time elapsed from another instant to …","Checked Duration multiplication. Computes self * other, …","Returns Some(t) where t is the time self - duration if t …","Checked Duration subtraction. Computes self - other, …","","","","","","","","","","","","","","","","","","","","Divide Duration by Duration and return f32.","Divide Duration by Duration and return f64.","Divide Duration by f32.","Divide Duration by f64.","","","","","Returns the amount of time elapsed from another instant to …","Returns the amount of time elapsed since this instant.","","","","","","","","","","","Returns a Subscription that produces messages at a set …","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of whole …","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of …","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns true if this Duration spans no time.","","","Multiplies Duration by f32.","Multiplies Duration by f64.","Creates a new Duration from the specified number of whole …","Returns an instant corresponding to “now”.","","","","","Saturating Duration addition. Computes self + other, …","Returns the amount of time elapsed from another instant to …","Saturating Duration multiplication. Computes self * other, …","Saturating Duration subtraction. Computes self - other, …","","","","Returns the amount of time elapsed from another instant to …","","","Panics","","","Panics","","Returns the fractional part of this Duration, in whole …","Returns the fractional part of this Duration, in whole …","Returns the fractional part of this Duration, in …","","","","","","","","","","The checked version of from_secs_f32.","The checked version of from_secs_f64.","","","","","","","","","","","","","A touch interaction.","A unique identifier representing a finger on a touch …","A touch interaction was ended.","A touch interaction was canceled.","An on-going touch interaction was moved.","A touch interaction was started.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A generic widget that produces a message when pressed.","A widget capable of drawing 2D graphics.","A box that can be checked.","A container that distributes its contents vertically.","A widget for searching and selecting a single value from a …","A reusable, custom widget that uses The Elm Architecture.","An element decorating some content.","A Theme that uses a Custom palette.","The default height of a ProgressBar.","The default height of a Slider.","The default padding of a PickList.","The default size of a Radio button.","The default size of a Toggler.","The default spacing of a Radio button.","The default width of a VerticalSlider.","The built-in dark variant.","The type of event this Component handles internally.","A frame that displays an image while keeping aspect ratio.","A widget that only rebuilds its contents when necessary.","The built-in light variant.","Emit messages on mouse events.","A collection of panes distributed using either vertical or …","A widget for selecting a single value from a list of …","A bar that displays progress.","A type of matrix barcode consisting of squares arranged in …","A circular button representing a choice.","The default graphics renderer for iced.","A widget that is aware of its dimensions.","A container that distributes its contents horizontally.","Display a horizontal or vertical rule for dividing content.","A widget that can vertically display an infinite amount of …","A widget which can render custom shaders with Iced’s wgpu…","An horizontal bar and a handle that selects a single value …","An amount of empty space.","The internal state of this Component.","A vector graphics image.","A paragraph.","A multi-line text input.","A field that can be filled with text.","A built-in theme.","A widget that applies any Theme to its contents.","","A toggler widget.","An element to display a widget over another.","An vertical bar and a handle that selects a single value …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the horizontal alignment of the contents of the Column…","Sets the vertical alignment of the contents of the Row .","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Allow your users to perform actions by pressing a button.","Creates a new Button with the provided content.","Draw 2D graphics for your users.","Creates a new Canvas.","Sets the size of the squares of the grid cell of the QRCode…","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the Container.","Show toggle controls using checkboxes.","Creates a new Checkbox.","","","","","","","","","","","","Sets both the dark and light Colors of the QRCode.","Creates a new Column with the given children.","Creates a Column with the given children.","Display a dropdown list of searchable and selectable …","Creates a new ComboBox.","Turns an implementor of Component into an Element that can …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Decorate content and apply alignment.","Creates a new Container with the provided content.","Sets the ContentFit of the Svg.","Sets the ContentFit of the Image.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the Direction of the Scrollable .","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the TextInput with the given Renderer, overriding its","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the FilterMethod of the Image.","","","","","Focuses the next focusable widget.","Focuses the previous focusable widget.","Sets the Renderer::Font of the text of the Checkbox.","Sets the Renderer::Font of the ComboBox.","Sets the font of the PickList.","Sets the text font of the Radio button.","Sets the Font of the TextEditor.","Sets the Font of the TextInput.","Sets the Renderer::Font of the text of the Toggler","Sets the font of the Tooltip.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new Svg that will display the contents of the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the gap between the content and its Tooltip.","Sets the Handle of the PickList.","Sets the height of the Column.","Sets the height of the Row.","Sets the height of the Button.","Sets the height of the Container.","Sets the height of the PaneGrid.","Sets the height of the ProgressBar.","Sets the height of the Scrollable.","Sets the height of the Slider.","Sets the height of the VerticalSlider.","Set the height of the custom Shader.","Sets the height of the Svg.","Sets the height of the Image boundaries.","Sets the height of the Canvas.","Highlights the TextEditor with the given Highlighter and a …","Creates a horizontal Rule with the given height.","Creates a horizontal Rule with the given height.","Creates a new horizontal Space with the given Length.","Sets the Icon of the Checkbox.","Sets the text_input::Icon of the ComboBox.","Sets the Icon of the TextInput.","Sets the Id of the Container.","Sets the Id of the Scrollable.","Sets the Id of the TextInput.","Display images in your user interface.","Creates a new Image.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Use widgets that can provide hints to ensure continuity.","Creates a new keyed::Column with the given children.","Creates a Column with the given children.","","","","","","","","","","","","","","","","","","Lays out the TextInput, overriding its Value if provided.","","","","","","","","","","","","Creates a new Lazy widget with the given data Dependency …","Sets the LineHeight of the ComboBox.","Sets the text::LineHeight of the TextInput.","Sets the maximum height of the Container.","Sets the maximum width of the Column.","Sets the maximum width of the Container.","A container intercepting mouse events.","","","","","","","","","","","","","","","","","","","","","","","Creates an empty Column.","Creates a MouseArea with the given content.","Creates an empty Row.","Creates an empty Themer that applies the given Theme to …","Creates a new Button with the given content.","Creates a new Checkbox.","Creates a new ComboBox with the given list of options, a …","Creates an empty Container.","Creates a PaneGrid with the given State and view function.","Creates a new PickList with the given list of options, the …","Creates a new ProgressBar.","Creates a new Radio button.","Creates a new Scrollable.","Creates a new Slider.","Creates new TextEditor with the given Content.","Creates a new TextInput.","Creates a new Toggler.","Creates a new Tooltip.","Creates a new VerticalSlider.","Creates a new Responsive widget with a closure that …","Creates a new Lazy widget with the given data Dependency …","Create a new custom Shader.","Creates a new Svg from the given Handle.","Creates an amount of empty Space with the given width and …","Creates a new Image with the given path.","Creates a new Canvas.","Creates a new QRCode with the provided State.","Sets the message that should be produced when some action …","Sets the message that will be produced when a Pane of the …","Sets the message that will be produced when the outside …","Enables the drag and drop interactions of the PaneGrid, …","","","","","","","","","","","","","","","","","","","","","","","Sets the message that should be produced when some text is …","Sets the message that should be produced when some text is …","The message to emit on a middle button press.","The message to emit on a middle button release.","Sets the message that will be produced when an option of …","Sets the message that should be produced when some text is …","The message to emit on a left button press.","Sets the message that will be produced when the Button is …","Sets the message that will be produced when the Button is …","The message to emit on a left button release.","Sets the release message of the Slider. This is called …","Sets the release message of the VerticalSlider. This is …","Enables the resize interactions of the PaneGrid, which will","The message to emit on a right button press.","The message to emit on a right button release.","Sets a function to call when the Scrollable is scrolled.","Sets the message that should be produced when the TextInput…","","","","","","","","","","Update the Component state based on the provided Operation","","","Display interactive elements on top of other widgets.","","","","","","","","","","","","","","Sets the Padding of the Column.","Sets the Padding of the Row.","Sets the Padding of the Button.","Sets the Padding of the ComboBox.","Sets the Padding of the Container.","Sets the Padding of the PickList.","Sets the Padding of the TextEditor.","Sets the Padding of the TextInput.","Sets the padding of the Tooltip.","Let your users split regions of your application and …","Converts the TextInput into a secure password input.","Display a dropdown list of selectable values.","Creates a new PickList.","Sets the placeholder of the PickList.","Provide progress feedback to your users.","Creates a new ProgressBar.","Adds an element to the Column.","Adds an Element to the Row.","Encode and display information in a QR code.","Create choices using radio buttons.","Creates a new Radio.","Creates a new Responsive widget with a closure that …","Creates a new Row with the given children.","Creates a Row with the given children.","Display a horizontal or vertical rule for dividing content.","Navigate an endless amount of content with a scrollbar.","Creates a new Scrollable with the provided content.","A custom shader widget for wgpu applications.","Creates a new Shader.","","","","","","","Sets the size of the Checkbox.","","Sets the text sixe of the ComboBox.","","","","","","Sets the size of the Radio button.","","","","","","Sets the text size of the TextInput.","","Sets the size of the Toggler.","Sets the size of the text of the Tooltip.","","","","","","","","","","","","Display an interactive selector of a single value from a …","Creates a new Slider.","Sets whether the Tooltip is snapped within the viewport.","Distribute content vertically.","Sets the vertical spacing between elements.","Sets the horizontal spacing between elements.","Sets the spacing between the Checkbox and the text.","Sets the spacing between the panes of the PaneGrid.","Sets the spacing between the Radio button and the text.","Sets the spacing between the Toggler and the text.","","","","","","","","","","","","","","","","","","","","","Sets the step size of the Slider.","Sets the step size of the VerticalSlider.","Sets the style variant of this Button.","Sets the style of the Checkbox.","Sets the style of the ComboBox.","Sets the style of the Container.","Sets the style of the PaneGrid.","Sets the style of the PickList.","Sets the style of the ProgressBar.","Sets the style of the Radio button.","Sets the style of the Rule.","Sets the style of the Scrollable .","Sets the style of the Slider.","Sets the style of the TextEditor.","Sets the style of the TextInput.","Sets the style of the Toggler.","Sets the style of the Tooltip.","Sets the style of the VerticalSlider.","Sets the style variant of this Svg.","Display vector graphics in your application.","Creates a new Svg widget from the given Handle.","","","","","","","","","","","","","","","","","","","","","Draw and interact with text.","Creates a new Text widget with the provided content.","Sets the horizontal alignment of the text of the Toggler","Display a multi-line text input for text editing.","Creates a new TextEditor.","Display fields that can be filled with text.","Creates a new TextInput.","Sets the style of the TextInput of the ComboBox.","Sets the text text::LineHeight of the Checkbox.","Sets the text text::LineHeight of the PickList.","Sets the text text::LineHeight of the Radio button.","Sets the text text::LineHeight of the Toggler.","Sets the text::Shaping strategy of the Checkbox.","Sets the text::Shaping strategy of the PickList.","Sets the text::Shaping strategy of the Radio button.","Sets the text::Shaping strategy of the Toggler.","Sets the text::Shaping strategy of the Tooltip.","Sets the text size of the Checkbox.","Sets the text size of the PickList.","Sets the text size of the Radio button.","Sets the text size o the Toggler.","Use the built-in theme and styles.","A widget that applies any Theme to its contents.","Show toggle controls using togglers.","Creates a new Toggler.","Display a widget over another.","Creates a new Tooltip with the provided content, tooltip …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the Component state …","Creates a vertical Rule with the given width.","Creates a vertical Rule with the given width.","Display an interactive selector of a single value from a …","Creates a new VerticalSlider.","Creates a new vertical Space with the given Length.","Produces the widgets of the Component, which may trigger …","Sets the width of the Column.","Sets the width of the Row.","Sets the width of the Button.","Sets the width of the Checkbox.","Sets the width of the ComboBox.","Sets the width of the Container.","Sets the width of the PaneGrid.","Sets the width of the PickList.","Sets the width of the ProgressBar.","Sets the width of the Radio button.","Sets the width of the Scrollable.","Sets the width of the Slider.","Sets the width of the TextInput.","Sets the width of the Toggler.","Sets the width of the VerticalSlider.","Set the width of the custom Shader.","Sets the width of the Svg.","Sets the width of the Image boundaries.","Sets the width of the Canvas.","Creates a Column with the given elements.","Creates a Row with the given elements.","Creates an amount of vertical Space.","Creates an amount of horizontal Space.","The appearance of a button.","A generic widget that produces a message when pressed.","The local state of a Button.","The supported style of the StyleSheet.","A set of rules that dictate the style of a button.","Produces the active Appearance of a button.","","","","","","","","","","","The Background of the button.","The Border of the buton.","","","","","","","","","","","","","","","","","Produces the disabled Appearance of a button.","","","Draws a Button.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Produces the hovered Appearance of a button.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Computes the layout of a Button.","Returns the mouse::Interaction of a Button.","Creates a new State.","Produces the pressed Appearance of a button.","The Shadow of the butoon.","The amount of offset to apply to the shadow of the button.","The text Color of the button.","","","","","","","","","","","","","","","","","","","Processes the given Event and updates the State of a Button","A bevelled corner.","The stroke for each sub-path does not extend beyond its …","A simple cache that stores generated Geometry to avoid …","A widget capable of drawing 2D graphics.","A Canvas event.","The style used to fill geometry.","","","The kind of geometry this renderer can draw.","A fill which linearly interpolates colors along a …","A Gradient color.","A keyboard event.","The shape used at the end of open subpaths when they are …","The dash pattern used when stroking the line.","The shape used at the corners of paths or basic shapes …","A linear gradient interpolates colors along a direction …","A sharp corner.","A mouse event.","An immutable set of points that may or may not be …","The state and logic of a Canvas.","A renderer capable of drawing some Self::Geometry.","At the end of each sub-path, the shape representing the …","A round corner.","A solid Color.","At the end of each sub-path, the shape representing the …","The internal state mutated by the Program.","The style of a stroke.","The coloring style of some drawing.","A bunch of text that can be drawn to a canvas","","","A touch event.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the coordinate of the center of the Frame.","Creates a new Path representing a circle given its center …","Clears the Cache, forcing a redraw the next time it is …","","","","","","","","","","","","","","","","","","","","","The color of the text","","","","","","","","","","","","","","The contents of the text","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the given layers of Self::Geometry.","Draws the state of the Program, producing a bunch of …","Draws Geometry using the provided closure and stores it in …","Computes the Paths of the Text and draws them using the …","","","","","","","","","","","","","","","","","Handle events of a canvas.","Fill Geometry with a certain style.","Draws the given Path on the Frame by filling it with the …","Draws an axis-aligned rectangle given its top-left corner …","Draws the characters of the given Text on the Frame, …","","","","","","","","","","","","The font of the text","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","A gradient that can be used as a fill for some geometry.","Returns the height of the Frame.","The horizontal alignment of the text","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new Path representing a line segment given its …","The shape to be used at the end of open subpaths when they …","The dash pattern used when stroking the line.","The line height of the text.","The shape to be used at the corners of paths or basic …","Returns the current mouse interaction of the Program.","","Creates a new empty Cache.","Creates a new Path with the provided closure.","The offset of LineDash::segments to start the pattern.","Packs the Gradient for use in shader code.","Build different kinds of 2D shapes.","The position of the text relative to the alignment …","Returns the internal lyon_path::Path.","Creates a new Path representing a rectangle given its …","Applies a rotation in radians to the current transform of …","The fill rule defines how to determine what is inside and …","Applies a uniform scaling to the current transform of the …","Applies a non-uniform scaling to the current transform of …","The alternating lengths of lines and gaps which describe …","The shaping strategy of the text.","Returns the dimensions of the Frame.","The size of the text","Create lines from a Path and assigns them various …","Draws the stroke of the given Path on the Frame with the …","The color or gradient of the fill.","The color or gradient of the stroke.","","","","","","","","","","","Returns the current Path with the given transform applied …","Applies a translation to the current transform of the Frame…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Updates the State of the Program.","The vertical alignment of the text","Returns the width of the Frame.","The distance between the two edges of the stroke.","Executes the given drawing operations within a Rectangle …","Sets the color of the Stroke.","Sets the LineCap of the Stroke.","Sets the LineJoin of the Stroke.","Stores the current transform of the Frame and executes the …","Sets the width of the Stroke.","The Event was handled and processed by a widget.","A Canvas event.","The Event was NOT handled by any widget.","A keyboard event.","A mouse event.","The status of an Event after being processed.","A touch event.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Merges two Status into one.","","","","","","","","","","","The style used to fill geometry.","A Gradient color.","","The fill rule defines how to determine what is inside and …","A solid Color.","The coloring style of some drawing.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","The fill rule defines how to determine what is inside and …","The color or gradient of the fill.","","","","","","","","","","A fill which linearly interpolates colors along a …","A linear gradient.","A linear gradient interpolates colors along a direction …","Packed Gradient data for use in shader code.","","","Adds a new ColorStop, defined by an offset and a color, to …","Adds multiple ColorStops to the gradient.","","","","","","","","","","","","","","","","","","","","","","","","","","","The absolute ending position of the gradient.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Creates a new Linear builder.","Creates a new Packed gradient for use in shader code.","Packs the Gradient for use in shader code.","The absolute starting position of the gradient.","ColorStops along the linear gradient direction.","","","","","","","","","","","","","","","","","","","A segment of a differentiable curve.","A Path builder.","An immutable set of points that may or may not be …","","","Build and draw curves.","Adds an Arc to the Path from start_angle to end_angle in a …","Adds a circular arc to the Path with the given control …","","","","","","","","","Adds a cubic Bézier curve to the Path given its two …","","","","","Builds the Path of this Builder.","The center of the arc.","Adds a circle to the Path given its center coordinate and …","","","Closes the current sub-path in the Path with a straight …","","","","","","","","","","","","Adds an ellipse to the Path using a clockwise direction.","The end of the segment’s angle, clockwise rotation from …","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Connects the last point in the Path to the given Point …","Moves the starting point of a new sub-path to the given …","Creates a new Builder.","Adds a quadratic Bézier curve to the Path given its …","The radius of the arc.","Adds a rectangle to the Path given its top-left corner …","The start of the segment’s angle, clockwise rotation …","","","","","","","","","","","","","","","","","","A segment of a differentiable curve.","An elliptical Arc.","","","","","","","","The center of the arc.","The center of the arc.","","","","","","","","The end of the segment’s angle, clockwise rotation from …","The end of the segment’s angle, clockwise rotation from …","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","The radii of the arc’s ellipse. The horizontal and …","The radius of the arc.","The clockwise rotation of the arc’s ellipse.","The start of the segment’s angle, clockwise rotation …","The start of the segment’s angle, clockwise rotation …","","","","","","","","","","Flag parameters for arcs as described by the SVG …","An alias for usize.","A view over a contiguous storage of custom attributes.","Interface for objects storing custom attributes associated …","An alias for a slice of f32 values.","","","","A beveled corner is to be used to join path segments. The …","The stroke for each sub-path does not extend beyond its …","ID of a control point in a path.","","","","","","","ID of an endpoint point in a path.","","Represents an event or edge of path.","Refers to an event in a path.","The fill rule defines how to determine what is inside and …","","","","A path event representing endpoints and control points as …","A view over a sequence of endpoint IDs forming a polygon.","","","","Line cap as defined by the SVG specification.","Line join as defined by the SVG specification.","A sharp corner is to be used to join path segments.","Same as a miter join, but if the miter limit is exceeded, …","An empty attribute slice.","","","","A simple path data structure.","An object that stores multiple paths contiguously.","A view on a PathBuffer.","The commands of a path encoded in a single array using IDs …","A view over PathCommands.","A path event representing endpoints and control points as …","A view on a Path.","A view over a sequence of endpoints forming a polygon.","Interface for types types (typically endpoints and control …","Interface for objects storing endpoints and control points …","","","","","","At each end of each sub-path, the shape representing the …","A round corner is to be used to join path segments.","The positive or negative side of a vector or segment.","At the end of each sub-path, the shape representing the …","The two possible orientations for the edges of a shape to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a view on the path commands.","Returns a view on this Path.","","Returns a slice over an endpoint’s custom attributes.","Returns a slice over an endpoint’s custom attributes.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Path building utilities.","Creates a PathCommandsBuilder to create path commands.","Creates a Builder to build a path.","","Creates a BuilderWithAttributes to build a path with …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A generic representation for paths that allow more control …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns an iterator over the path, with endpoints and …","Returns the first endpoint and its custom attributes if …","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the endpoint’s custom attributes as a slice of …","","","","","","","","","","","","","","","","","","","Iterates over the endpoint and control point ids of the …","Iterates over the endpoint and control point ids of the …","Returns an iterator of IdEvent.","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the path buffer is empty.","Returns whether the path buffer is empty.","","","","","Returns an iterator over the path commands.","Returns an iterator over the path commands.","Iterates over the entire Path, ignoring custom attributes.","Iterates over the path.","","","Returns an iterator of Event<&T>.","","Iterates over the entire Path with custom attributes.","Iterates over the entire Path with custom attributes.","Tools to iterate over paths.","Of the four candidate arc sweeps, two will represent an …","Returns the last endpoint and its custom attributes if any.","","Returns the number of paths in the path buffer.","Returns the number of paths in the path buffer.","f32 version of the lyon_geom types used everywhere. Most …","","Creates an Empty Path.","","Returns the next event id within the path.","Returns the next event id within the path.","Returns the next event id within the sub-path.","Returns the next event id within the path.","Returns the number of float attributes per endpoint.","","","","","","","The default path data structure.","A container to store multiple paths contiguously.","Returns an iterator of PathEvent.","Returns a view on a path made of these commands with …","","","Specific path types for polygons.","","","Returns a reversed version of this path in the form of an …","Returns a reversed version of this path in the form of an …","Creates an WithSvg to build a path with a rich set of …","If sweep is true, then the arc will be drawn in a “…","","","","","","","","","","","","","","","","","","","","","","","","lyon_path traits reexported here for convenience.","","Applies a transform to all endpoints and control points of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The radius of each corner of a rounded rectangle.","Builds a path.","A Builder that approximates curves with successions of …","A convenience wrapper for PathBuilder without custom …","The base path building interface.","The type of object that is created by this builder.","A path building interface that tries to stay close to SVG…","Builds a path with a transformation applied.","Implements an SVG-like building interface on top of a …","","","","","","Adds a sub-path containing a circle.","Adds a sub-path containing a circle.","Adds a sub-path containing an ellipse.","Adds a sub-path containing an ellipse.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single point.","Adds a sub-path containing a single point.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","","Adds an elliptical arc.","","","","","","","","","","","","","","","","","","","","","","Starts a new sub-path at a given position.","","","Starts a new sub-path at a given position.","","","","","","","","","","","","","","Builds a path object, consuming the builder.","","","","","","","Builds a path object, consuming the builder.","","","","","Ends the current sub-path by connecting it back to its …","Closes the current sub path.","","","Closes the current sub path.","","","","","","Adds a cubic bézier curve to the current sub-path.","Adds a cubic bézier segment to the current sub-path.","","","","","","Adds a cubic bézier curve to the current sub-path.","","","","","","","","","","","","","","","","","","","","","","","","Ends the current sub path.","","","Ends the current sub path.","","","","","","Returns a builder that approximates all curves with …","","Returns a builder that approximates all curves with …","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","Adds an horizontal line segment.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Adds a line segment to the current sub-path.","Adds a line segment to the current sub-path.","","","","","","Adds a line segment to the current sub-path.","Start a new sub-path at the given position.","","","","","","","","","","","","","Applies the provided path event.","Applies the provided path event.","Adds a quadratic bézier curve to the current sub-path.","Adds a quadratic bézier segment to the current sub-path.","","","","","","Adds a quadratic bézier curve to the current sub-path.","Equivalent to arc_to in relative coordinates.","","Equivalent to cubic_bezier_to in relative coordinates.","","Adds an horizontal line segment in relative coordinates.","","Equivalent to line_to in relative coordinates.","","Equivalent to move_to in relative coordinates.","","Equivalent to quadratic_bezier_to in relative coordinates.","","Adds a vertical line segment in relative coordinates.","","Hints at the builder that a certain number of endpoints …","Hints at the builder that a certain number of endpoints …","","","","","Hints at the builder that a certain number of endpoints …","","","","","Equivalent to cubic_bezier_to with implicit first control …","","Equivalent to quadratic_bezier_to with implicit control …","","Equivalent to smooth_cubic_bezier_to in relative …","","Equivalent to smooth_quadratic_bezier_to in relative …","","","","","","","","Returns a builder that applies the given transformation to …","","Returns a builder that applies the given transformation to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Adds a vertical line segment.","","","Returns a builder that support SVG commands.","Returns a builder that support SVG commands.","","A view on a PathCommands buffer and two slices for …","An iterator of Event<&Endpoint, &ControlPoint>.","An iterator of Event<&Endpoint, &ControlPoint>.","The commands of a path encoded in a single array using IDs …","Builds path commands.","A view over PathCommands.","An iterator of PathEvent.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Consumes the builder and returns path commands.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over the events of the path using …","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over the events of the path using IDs.","","Creates a builder without allocating memory.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a pre-allocated builder.","An angle in radians","An elliptic arc curve segment.","Flag parameters for arcs as described by the SVG …","","A 2d curve segment defined by four points: the beginning …","","","","","","","An infinite line defined by a point and a vector.","A line defined by the equation …","A linear segment.","","","","","","A 2d curve segment defined by three points: the beginning …","Alias for euclid::default::Rotation2D","","","","","","Common APIs to segment types.","","An elliptic arc curve segment using the SVG’s end-point …","","","","Alias for euclid::default::Transform2D","Alias for euclid::default::Translation2D","A 2D triangle defined by three points a, b and c.","","","","","","","","","","","","","","","","","","","Return the curve after the split point.","","Return the curve after the split point.","Return the curve after the split point.","","Return the segment after the split point.","","","Return the curve after the split point.","Angle in radians","Returns the shortest signed angle between two angles.","","","Compute the length of the segment using a flattened …","","","Compute the length of the segment using a flattened …","","","","Elliptic arc related maths and tools.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the curve before the split point.","","Return the curve before the split point.","","Return the curve before the split point.","Return the segment before the split point.","","Return the curve before the split point.","","","","","","","","","","","","","","","","","","","","Returns a conservative rectangle that contains the curve.","Returns a conservative rectangle that contains the curve.","Return the smallest rectangle containing this segment.","Returns the smallest rectangle the curve is contained in","Returns the smallest rectangle that contains this triangle.","","Returns the smallest range of x that contains this curve.","Returns the smallest range of x that contains this curve.","Returns a conservative range of x that contains this …","","Returns the smallest range of y that contains this curve.","Returns the smallest range of y that contains this curve.","Returns a conservative range of y that contains this …","Returns a triangle containing this curve segment.","","","","Cast from one numeric representation to another.","","","Create simple circle.","Clip this segment against a rectangle.","Horizontally clip this segment against a range of the x …","Vertically clip this segment against a range of the y axis.","","","","","","","","","","","","","","","","","","","Computes the closest point on this segment to p.","Analytic solution to finding the closest point on the …","","","","","","","","","","","","","","","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","","","","","","","","","","","","","","","","","","","","","Sample the derivative at t (expecting t between 0 and 1).","","","Sample the curve’s derivative at t (expecting t between …","","Sample the curve’s derivative at t (expecting t between …","","Computes the distance between this segment and a point.","","","Returns the shortest distance between this segment and a …","","","","","","","","","","","","","","","","","","","","","","","","","Sample x derivative at t (expecting t between 0 and 1).","","Sample the x coordinate of the curve’s derivative at t …","","Sample the x coordinate of the curve’s derivative at t …","","Sample y derivative at t (expecting t between 0 and 1).","Sample the y coordinate of the curve’s derivative at t …","","","Sample the y coordinate of the curve’s derivative at t …","","","Epsilon constants are usually not a good way to deal with …","","","","","","","","","","","","","","","","Returns a conservative rectangle that contains the curve.","Returns a conservative rectangle the curve is contained in.","Returns a conservative rectangle that contains the curve.","","Returns a conservative range of x that contains this curve.","Returns a conservative range of x that contains this curve.","","Returns a conservative range of y that contains this curve.","Returns a conservative range of y that contains this curve.","Computes a “fat line” of this segment.","Computes a “fat line” of this segment.","","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Find the interval of the beginning of the curve that can …","Swap the direction of the segment.","","Swap the direction of the segment.","","Swap the beginning and the end of the segment.","","Returns an inverted version of this segment where the …","","Swap the beginning and the end of the segment.","","","","","","","","","","Approximate the arc with a sequence of cubic bézier …","Approximates the arc with a sequence of cubic bézier …","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","","","Compute a flattened approximation of the curve, invoking a …","","Invokes a callback at each inflection point if any.","","Return local x extrema or None if this curve is monotonic.","","Return local y extrema or None if this curve is monotonic.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Approximate the arc with a sequence of quadratic bézier …","Approximates the arc with a sequence of quadratic bézier …","Approximates the cubic bézier curve with sequence of …","Approximate the arc with a sequence of quadratic bézier …","Approximates the arc with a sequence of quadratic bézier …","Approximates the cubic bézier curve with sequence of …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","","","","Start of the curve.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","Convert from the SVG arc notation.","","Sample the curve’s angle at t (expecting t between 0 and …","","The extent of the element in the U units along the y axis …","","","","","","","","","","","","","","Computes the intersection (if any) between this segment …","","Test for triangle-triangle intersection.","","","Test for triangle-segment intersection.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the curve can be approximated with a …","Returns true if the angle is a finite number.","","Returns true if the curve can be approximated with a …","Returns true if the curve can be approximated with a …","Returns whether this segment is fully monotonic.","Returns whether this segment is fully monotonic.","Returns true if the curve can be safely approximated with …","Per SVG spec, this arc should be rendered as a line_to …","","Returns whether this segment is monotonic on the x axis.","Returns whether this segment is monotonic on the x axis.","Returns whether this segment is monotonic on the y axis.","Returns whether this segment is monotonic on the y axis.","Of the four candidate arc sweeps, two will represent an …","Computes the length of this segment.","Computes the length of this segment.","Linear interpolation between two angles, using the …","","","Computes the intersection points (if any) between this …","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","Computes the intersections (if any) between this segment a …","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","Computes the intersections (if any) between this segment …","Return the x inflection point or None if this curve is …","Return the y inflection point or None if this curve is …","","","","","","","","Computes third mid-point of this segment.","","","","","","","Computes the number of quadratic bézier segments required …","","","","","","","Shorthand for Point::new(x, y).","","Returns this angle in the [0..2*PI[ range.","","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment a …","","","","","Sample the curve at t (expecting t between 0 and 1).","Sample the curve at t (expecting t between 0 and 1).","","","Sample the curve at t (expecting t between 0 and 1).","Sample the segment at t (expecting t between 0 and 1).","","Sample the curve at t (expecting t between 0 and 1).","","Sample the curve’s tangent at t (expecting t between 0 …","Changes the segment’s length, moving destination point.","Returns this angle in the ]-PI..PI] range.","","","Returns (sin(self), cos(self)).","Shorthand for Size::new(x, y).","Return the parameter values corresponding to a given x …","","Return the parameter values corresponding to a given y …","","","","","","Split this curve into two sub-curves.","Split this curve into two sub-curves.","","Split this curve into two sub-curves.","","Split this curve into two sub-segments.","","","Split this curve into two sub-curves.","","Return the curve inside a given range of t.","","Return the sub-curve inside a given range of t.","Return the sub-curve inside a given range of t.","","","Return the sub-segment inside a given range of t.","","Return the sub-curve inside a given range of t.","Computes the squared distance between this segment and a …","Returned the squared distance to a point.","Returns the shortest squared distance between this segment …","Computes the squared length of this segment.","","","","","","If sweep is true, then the arc will be drawn in a “…","","","End of the curve.","","","","","","","","","","","","","Converts this arc from endpoints to center notation.","Elevate this curve to a third order bézier.","","","","","","Cast angle to f32.","","","","","Cast angle f64.","Returns the line containing this segment.","","","","","","","","","","Approximate the curve with a single quadratic bézier …","Evaluates an upper bound on the maximum distance between …","Convert to the SVG arc notation.","Returns the vector between this segment’s from and to …","","[Not implemented] Applies the transform to this triangle …","Applies the transform to this curve and returns the …","Applies the transform to this segment and returns the …","Applies the transform to this curve and returns the …","","Fallible cast from one numeric representation to another.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Shorthand for Vector::new(x, y).","","","","The extent of the element in the U units along the x axis …","Sample x at t (expecting t between 0 and 1).","","","","Sample the x coordinate of the curve at t (expecting t …","","Sample the x coordinate of the segment at t (expecting t …","","Sample the x coordinate of the curve at t (expecting t …","","","The x (traditionally, horizontal) coordinate.","Find the advancement of the x-most position in the curve.","Find the advancement of the x-most position in the curve.","Find the x-least position in the curve.","Find the advancement of the x-least position in the curve.","","","Sample y at t (expecting t between 0 and 1).","","","Sample the y coordinate of the curve at t (expecting t …","","","Sample the y coordinate of the segment at t (expecting t …","Sample the y coordinate of the curve at t (expecting t …","","","","The y (traditionally, vertical) coordinate.","Find the advancement of the y-most position in the curve.","Find the advancement of the y-most position in the curve.","Find the advancement of the y-least position in the curve.","Find the advancement of the y-least position in the curve.","","An elliptic arc curve segment.","Flag parameters for arcs as described by the SVG …","Flattening iterator for arcs.","An elliptic arc curve segment using the SVG’s end-point …","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","Of the four candidate arc sweeps, two will represent an …","","","","","If sweep is true, then the arc will be drawn in a “…","","","","","","","","","","","","","A string with a fixed capacity.","A vector with a fixed capacity.","Error value indicating insufficient capacity","A draining iterator for ArrayVec.","By-value iterator for ArrayVec.","","","","","","","","","","","","","","","","","","","","","","","","","","","Return a raw mutable pointer to the vector’s buffer.","Return a mutable slice containing all elements of the …","Return a mutable string slice of the whole ArrayString.","Return a raw pointer to the vector’s buffer.","","","Return a slice containing all elements of the vector.","Return a string slice of the whole ArrayString.","","","","","","","","","","","","","","","Return the capacity of the ArrayVec.","Return the capacity of the ArrayString.","Remove all elements in the vector.","Make the string empty.","","","","","","","","","","","","","","","","","","","","","","Return an empty array","Return an empty ArrayString","","","","","","","","","","","","","","","","","","","","Create a draining iterator that removes the specified …","","","","","","","","","Extract the overflowing element","","","","","","","","","","","","","","","Extend the ArrayVec with an iterator.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a new ArrayString from a str.","Returns the argument unchanged.","","","","","","Create a new ArrayString from a byte string literal.","Create an ArrayVec from an iterator.","","","","","","","","","","","","","","","","","","","","Insert element at position index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the inner fixed size array, if it is full to its …","Return the inner fixed size array.","","","","","","","","","","","Returns whether the ArrayVec is empty.","Returns whether the string is empty.","Return true if the ArrayVec is completely filled to its …","Return if the ArrayString is completely filled.","","","","Return the number of elements in the ArrayVec.","Return the length of the string.","","","","","","Create a new empty ArrayVec.","Create a new empty ArrayString.","Create a new CapacityError from element.","Create a new empty ArrayVec (const fn).","Create a new empty ArrayString (const fn).","","","","","","","","","Remove the last element in the vector and return it.","Removes the last character from the string and returns it.","Remove the element at index and shift down the following …","Push element to the end of the vector.","Adds the given char to the end of the string.","Adds the given string slice to the end of the string.","Push element to the end of the vector without checking the …","Returns the capacity left in the ArrayVec.","Returns the capacity left in the ArrayString.","Remove the element at index and shift down the following …","Removes a char from this ArrayString at a byte position …","Retains only the elements specified by the predicate.","Set the vector’s length without dropping or moving out …","Set the strings’s length.","Convert into a CapacityError that does not carry an …","","","","Remove the element at index and swap the last element into …","Remove the element at index and swap the last element into …","Returns the ArrayVec, replacing the original with a new …","","","","","","","","","Shortens the vector, keeping the first len elements and …","Shortens this ArrayString to the specified length.","","","","","","Copy all elements from the slice and append to the ArrayVec…","","","","","","","","","Insert element at position index.","","","","","","","","","","","Push element to the end of the vector.","Adds the given char to the end of the string.","Adds the given string slice to the end of the string.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new ArrayString value fully filled with ASCII …","A 2d curve segment defined by four points: the beginning …","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","An angle in radians","A 2d vector of booleans, useful for component-wise logic …","A 3d vector of booleans, useful for component-wise logic …","A 2d axis aligned rectangle represented by its minimum and …","An axis aligned 3D box represented by its minimum and …","Homogeneous vector in 3D space.","A one-dimensional distance, with value represented by T …","A 2d Point tagged with a unit.","A 3d Point tagged with a unit.","A 2d Rectangle optionally tagged with a unit.","A rigid transformation. All lengths are preserved under …","A transform that can represent rotations in 2d, …","A transform that can represent rotations in 3d, …","A scaling factor between two different units of …","A group of 2D side offsets, which correspond to …","A 2d size tagged with a unit.","A 3d size tagged with a unit.","A 2d transform represented by a column-major 3 by 3 …","A 3d transform stored as a column-major 4 by 4 matrix.","A 2d transformation from a space to another that can only …","A 3d transformation from a space to another that can only …","Trait for basic trigonometry functions, so they can be …","The default unit.","A 2d Vector tagged with a unit.","A 3d Vector tagged with a unit.","Computes the absolute value of each component.","Computes the absolute value of each component.","Computes the vector with absolute values of each component.","Computes the vector with absolute values of each component.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if all components are true and false …","Returns true if all components are true and false …","Returns new vector with by-component AND operation applied.","Returns new vector with by-component AND operation applied.","Angle in radians","Returns the signed angle between this vector and the x …","Returns the signed angle between this vector and another …","Returns the positive angle between this vector and another …","Returns true if any component are true and false otherwise.","Returns true if any component are true and false otherwise.","","","","","","","","","Returns true is this transform is approximately equal to …","Returns true is this transform is approximately equal to …","","","","","Returns true is this transform is approximately equal to …","Returns true is this transform is approximately equal to …","","Returns true is this transform is approximately equal to …","","","","Utilities for testing approximate ordering - especially …","","","Returns result of multiplication of both components","Creates a rotation around a given axis.","Creates a rotation around the x axis.","Creates a rotation around the y axis.","Creates a rotation around the z axis.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Shorthand for …","Shorthand for BoolVector2D { x, y }.","Shorthand for BoolVector3D { x, y, z }.","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast the unit","Cast the unit","Cast the unit","Cast the unit, preserving the numeric value.","Cast the unit, preserving the numeric value.","Cast the unit","Cast the unit, preserving the numeric value.","Cast the unit, preserving the numeric value.","Cast the unit","Cast the unit","Cast the unit.","Cast the unit.","","See Point2D::ceil()","Rounds each component to the smallest integer equal or …","Rounds each component to the smallest integer equal or …","See Point3D::ceil()","Rounds each component to the smallest integer equal or …","See Size2D::ceil().","See Size3D::ceil().","Rounds each component to the smallest integer equal or …","Rounds each component to the smallest integer equal or …","See Vector2D::ceil()","Rounds each component to the smallest integer equal or …","See Vector3D::ceil()","","","","Returns the point each component of which clamped by …","Returns the point each component of which clamped by …","Returns the point each component of which clamped by …","Returns the size each component of which clamped by …","Returns the size each component of which clamped by …","Returns the vector each component of which is clamped by …","Returns the vector each component of which is clamped by …","Return this vector with minimum and maximum lengths …","Return this vector with minimum and maximum lengths …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the component-wise division of the two vectors.","Returns the component-wise division of the two vectors.","Returns the component-wise multiplication of the two …","Returns the component-wise multiplication of the two …","","","","","","","","","","","","","","","","","","","","","","","","Returns true if this box contains the point. Points are …","Returns true if this box3d contains the point. Points are …","Returns true if this rectangle contains the point. Points …","","","Returns true if this box contains the interior of the …","Returns true if this box3d contains the interior of the …","Returns true if this rectangle contains the interior of …","","Returns the norm of the cross product [self.x, self.y, 0] …","Cross product.","Decompose this into a translation and an rotation to be …","A set of aliases for all types, tagged with the default …","","","","","","","","","","","Returns the identity transform.","Returns the identity transform.","","","","","","","","The extent of the element in the U units along the z axis.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes and returns the determinant of this transform.","Compute the determinant of the transform.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calculates Euclidean division, the matching method for …","Calculates Euclidean division, the matching method for …","Dot product.","Dot product.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a rotation from Euler angles.","Create a 3d point from this one, using the specified z …","Create a 3d vector from this one, using the specified z …","","Rounds each component to the biggest integer equal or …","See Point2D::floor()","Rounds each component to the biggest integer equal or …","See Point3D::floor()","See Size2D::floor().","Rounds each component to the biggest integer equal or …","Rounds each component to the biggest integer equal or …","See Size3D::floor().","See Vector2D::floor()","Rounds each component to the biggest integer equal or …","See Vector3D::floor()","Rounds each component to the biggest integer equal or …","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","Constructor taking angle and length","Create a transform providing its components via an array …","Create a transform providing its components via an array …","Equivalent to from_array with elements packed two at a time","Equivalent to from_array with elements packed four at a …","Constructor setting the same value to all sides, taking a …","Constructor taking properly Lengths instead of scalar …","Constructor taking properly Lengths instead of scalar …","Constructor taking a typed Length for each side.","Constructor taking scalar strongly typed lengths.","Constructor taking scalar strongly typed lengths.","Constructor taking properly Lengths instead of scalar …","Constructor taking properly Lengths instead of scalar …","Constructor.","Returns the smallest box containing all of the provided …","Returns the smallest box containing all of the provided …","Returns the smallest rectangle defined by the …","","Convenience function to create a scale transform from a …","Creates a Box2D of the given size, at offset zero.","Creates a Box3D of the given size, at offset zero.","Creates a rect of the given size, at offset zero.","","","","","","","","","","","","","","","","","","","","","","","","","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unit-less value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Construct side offsets from min and a max vector offsets.","Construct side offsets from min and a max vector offsets.","Unpack the underlying value from the wrapper.","Returns the underlying scalar scale factor.","Returns self.angle as a strongly typed Angle<T>.","Returns vector with results of “greater then” …","Returns vector with results of “greater than” …","Returns vector with results of “greater than” …","Returns vector with results of “greater than” …","","","","","","","","","","","","","","","","","","","","","","","","","","","The extent of the element in the U units along the y axis …","The extent of the element in the U units along the y axis.","","Component multiplied by the imaginary number i.","Creates the identity rotation.","Creates the identity rotation.","Creates an identity scale (1.0).","Create an identity matrix:","Creates an identity matrix:","Creates no-op translation (both x and y is zero()).","Creates no-op translation (x, y and z is zero()).","Construct an identity transform","Inflates the box by the specified sizes on each side …","Inflates the box by the specified sizes on each side …","","","","","","","","","","","","","","","","","","","","","","","","","Calculate the size and position of an inner box.","Calculate the size and position of an inner rectangle.","Computes the intersection of two boxes, returning None if …","","","Computes the intersection of two boxes without check …","","Returns true if the two boxes intersect.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Calls U::from(self).","","","Calls U::from(self).","","Calls U::from(self).","Calls U::from(self).","","","Calls U::from(self).","Calls U::from(self).","","","","","Calls U::from(self).","","Calls U::from(self).","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the inverse of this rotation.","Returns the inverse of this rotation.","The inverse Scale (1.0 / self).","Returns the inverse transform if possible.","Returns the inverse transform if possible.","Return the inverse transformation.","Return the inverse transformation.","Inverts the transformation","Returns true if this transform can be represented with a …","Check whether shapes on the XY plane with Z pointing …","Returns true if the size is zero, negative or NaN.","Returns true if the size is zero, negative or NaN.","","Returns true if any component of size is zero, negative, …","Returns true if any component of size is zero, negative or …","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if this scale has no effect.","Check if translation does nothing (both x and y is zero()).","Check if translation does nothing (x, y and z is zero()).","Returns whether it is possible to compute the inverse …","Returns whether it is possible to compute the inverse …","Returns true if the box has a negative area.","Returns true if the box has a negative volume.","Returns true if norm of this quaternion is (approximately) …","Returns true if both components is positive and false any …","Returns true if all components is positive and false any …","Returns true if all side offsets are zero.","Component multiplied by the imaginary number j.","Component multiplied by the imaginary number k.","","Returns the vector length.","Returns the vector length.","Linearly interpolate between this box and another box.","Linearly interpolate between this box3d and another box3d.","Linearly interpolate between this length and another …","Linearly interpolate between this point and another point.","Linearly interpolate between this point and another point.","Linearly interpolate between this rectangle and another …","Basic Linear interpolation between this rotation and …","Linearly interpolate each component between this size and …","Linearly interpolate between this size and another size.","Linearly interpolate each component between this vector …","Linearly interpolate each component between this vector …","Returns vector with results of “lower then” operation …","Returns vector with results of “lower than” operation …","Returns vector with results of “lower than” operation …","Returns vector with results of “lower than” operation …","","","","","","","","","","","","","","","","","","","","","","","Returns maximum between this length and another length.","","","","","Returns the size each component of which are maximum of …","Returns the size each component of which are maximum of …","Returns the vector each component of which are maximum of …","Returns the vector each component of which are maximum of …","","","","","Returns minimum between this length and another length.","","","","","Returns the size each component of which are minimum of …","Returns the size each component of which are minimum of …","Returns the vector each component of which are minimum of …","Returns the vector each component of which are minimum of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multiplies all of the transform’s component by a scalar …","","","","","","","","","Constructor.","Constructor.","Constructor taking scalar values directly.","Associate a value with a unit of measure.","Constructor taking scalar values directly.","Constructor taking scalar values directly.","Constructor.","Creates a rotation from an angle in radians.","","Constructor taking a scalar for each side.","Constructor taking scalar values.","Constructor taking scalar values.","Create a transform specifying its components in using the …","Create a transform specifying all of it’s component as a …","","","Constructor taking scalar values directly.","Constructor taking scalar values directly.","Construct a new rigid transformation, where the rotation …","Create a transform representing a 2d transformation from …","Constructor setting the same value to all sides, taking a …","Construct a new rigid transformation, where the translation…","Returns true if all components are false and false …","Returns true if all components are false and false …","Computes the norm of this quaternion.","Returns a unit quaternion from this one.","Returns the vector with length of one unit.","Returns the vector with length of one unit","Returns new vector with results of negation operation on …","Returns new vector with results of negation operation on …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","A one-dimensional length, tagged with its units.","","Constructor, setting all components to one.","Constructor, setting all components to one.","Returns new vector with by-component OR operation applied.","Returns new vector with by-component OR operation applied.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","","Create an orthogonal projection transform.","Calculate the b and position of an outer box.","Calculate the size and position of an outer rectangle.","Returns a box that encompasses the result of transforming …","Returns a 2d box that encompasses the result of …","Returns a 3d box that encompasses the result of …","Returns a rectangle that encompasses the result of …","Returns a rectangle that encompasses the result of …","","","","Create a simple perspective transform, projecting to the …","Shorthand for Point2D::new(x, y).","Shorthand for Point3D::new(x, y).","","Applies a rotation before self’s transformation and …","Returns a transform with a rotation applied before self’…","Applies a scale before self’s transformation and returns …","Returns a transform with a scale applied before self’s …","Applies a translation before self’s transformation and …","Returns a transform with a translation applied before self…","Returns this vector projected onto another one.","Returns this vector projected onto another one.","Returns a projection of this transform in 2d space.","Creates a rotation around from a quaternion representation.","The real part.","Creates a rotation from an angle in radians.","","","Shorthand for …","Returns a reflection vector using an incident ray and a …","Returns a reflection vector using an incident ray and a …","Calculates the least nonnegative remainder of …","Calculates the least nonnegative remainder of …","","Return the normalized vector even if the length is larger …","Return the normalized vector even if the length is larger …","Returns a rotation transform.","Create a 3d rotation transform from an angle / axis. The …","","Return a box with edges rounded to integer coordinates, …","Return a box3d with edges rounded to integer coordinates, …","See Point2D::round()","Rounds each component to the nearest integer value.","See Point3D::round()","Rounds each component to the nearest integer value.","Return a rectangle with edges rounded to integer …","Rounds each component to the nearest integer value.","See Size2D::round().","See Size3D::round().","Rounds each component to the nearest integer value.","See Vector2D::round()","Rounds each component to the nearest integer value.","See Vector3D::round()","Rounds each component to the nearest integer value.","Return a box with faces/edges rounded to integer …","Return a box3d with faces/edges rounded to integer …","Return a rectangle with edges rounded to integer …","Return a box with faces/edges rounded to integer …","Return a box3d with faces/edges rounded to integer …","Return a rectangle with edges rounded to integer …","","","","","","Create a 2d scale transform:","Create a 3d scale transform:","Returns point, each component of which or from a, or from b…","Returns point, each component of which or from a, or from b…","Returns size, each component of which or from a, or from b …","Returns size, each component of which or from a, or from b …","Returns vector, each component of which or from a, or from …","Returns vector, each component of which or from a, or from …","Change the size of the box by adjusting the max endpoint …","","","","","Shorthand for Size2D::new(w, h).","Shorthand for Size3D::new(w, h, d).","Create a 2d skew transform.","Spherical linear interpolation between this rotation and …","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Constructor setting all components to the same value.","","","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Returns the vector’s length squared.","Returns the vector’s length squared.","Computes the squared norm of this quaternion.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a rotation representing the other rotation …","Returns a rotation representing this rotation followed by …","Returns the multiplication of the two matrices such that …","Returns the multiplication of the two matrices such that …","Returns the multiplication of the two transforms such that …","Applies a rotation after self’s transformation and …","Returns a transform with a rotation applied after self’s …","Applies a scale after self’s transformation and returns …","Returns a transform with a scale applied after self’s …","Applies a translation after self’s transformation and …","Returns a transform with a translation applied after self…","Convert into a 2d point.","Create a 2D transform picking the relevant terms from this …","Convert into a 2d vector.","Convert into a 3d point with z-coordinate equals to zero.","Creates a 3d rotation (around the z axis) from this 2d …","Create a 3D transform from the current transform","Convert into a 3d vector with z coordinate equals to …","Cast into an array with x and y.","Cast into an array with x, y and z.","Return this size as an array of two elements (width, then …","Return this size as an array of three elements (width, …","Returns an array containing this transform’s terms.","Returns an array containing this transform’s terms.","Cast into an array with x and y.","Cast into an array with x, y and z.","Cast into an array with x and y.","Cast into an array with x, y and z.","","Cast into an array with x, y, z and 0.","Returns an array containing this transform’s terms …","Returns an array containing this transform’s terms …","Equivalent to to_array with elements packed two at a time …","Equivalent to to_array with elements packed four at a time …","Equivalent to to_array_transposed with elements packed …","","Cast into an f32 box.","Cast into an f32 box3d.","Cast into an f32 point.","Cast into an f32 point.","Cast into an f32 rectangle.","Cast into an f32 size.","Cast into an f32 size.","Cast into an f32 vector.","Cast into an f32 vector.","Cast into an f64 box.","Cast into an f64 box3d.","Cast into an f64 point.","Cast into an f64 point.","Cast into an f64 rectangle.","Cast into an f64 size.","Cast into an f64 size.","Cast into an f64 vector.","Cast into an f64 vector.","Cast into an i32 box, truncating decimals if any.","Cast into an i32 box3d, truncating decimals if any.","Cast into an i32 point, truncating decimals if any.","Cast into an i32 point, truncating decimals if any.","Cast into an i32 rectangle, truncating decimals if any.","Cast into an i32 size, truncating decimals if any.","Cast into an i32 size, truncating decimals if any.","Cast into an i32 vector, truncating decimals if any.","Cast into an i32 vector, truncating decimals if any.","Cast into an i64 box, truncating decimals if any.","Cast into an i64 box3d, truncating decimals if any.","Cast into an i64 point, truncating decimals if any.","Cast into an i64 point, truncating decimals if any.","Cast into an i64 rectangle, truncating decimals if any.","Cast into an i64 size, truncating decimals if any.","Cast into an i64 size, truncating decimals if any.","Cast into an i64 vector, truncating decimals if any.","Cast into an i64 vector, truncating decimals if any.","","","","","","","","","","","","","","","","","","","","","","","","","","","Cast this vector into a point.","Cast this vector into a point.","Convert into Cartesian 2D point.","Convert into Cartesian 3D point.","","Cast this vector into a size.","Returns the matrix representation of this rotation.","Returns the matrix representation of this rotation.","Returns the matrix representation of this translation.","Returns the matrix representation of this translation.","Creates translation by this vector in vector units.","Creates translation by this vector in vector units","","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","Return this size as a tuple of two elements (width, then …","Return this size as an array of three elements (width, …","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","","Cast into a tuple with x, y, z and 0.","Cast into an u32 box, truncating decimals if any.","Cast into an u32 box3d, truncating decimals if any.","Cast into an u32 point, truncating decimals if any.","Cast into an u32 point, truncating decimals if any.","Cast into an u32 rectangle, truncating decimals if any.","Cast into an u32 size, truncating decimals if any.","Cast into an u32 size, truncating decimals if any.","Cast into an u32 vector, truncating decimals if any.","Cast into an u32 vector, truncating decimals if any.","Cast into an u64 rectangle, truncating decimals if any.","Cast into an u64 size, truncating decimals if any.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Cast into an usize box, truncating decimals if any.","Cast into an usize box3d, truncating decimals if any.","Cast into an usize point, truncating decimals if any.","Cast into an usize point, truncating decimals if any.","Cast into an usize rectangle, truncating decimals if any.","Cast into an uint size, truncating decimals if any.","Cast into an uint size, truncating decimals if any.","Cast into an usize vector, truncating decimals if any.","Cast into an usize vector, truncating decimals if any.","Cast this point into a vector.","Cast this point into a vector.","Return this size as a vector with width and height.","Return this size as a vector with width, height and depth.","Cast into a 2D vector.","Cast into a 3D vector.","","Translate a 2D box and cast its unit.","Returns the given box transformed by this scale.","Translate a 2D box and cast its unit.","Returns the given box transformed by this scale.","Translate a 3D box and cast its unit.","Returns the given 2d point transformed by this rotation.","","Returns the given point transformed by this scale.","","Returns the given point transformed by this transform.","","","Translate a point and cast its unit.","Returns the given 2d point transformed by this rotation …","Returns the given 2d point transformed by this transform, …","Translate a point and cast its unit.","Returns the homogeneous vector corresponding to the …","Returns the given 3d point transformed by this rotation.","Returns the given point transformed by this scale.","Returns the given 3d point transformed by this transform, …","Translate a point and cast its unit.","Returns the homogeneous vector corresponding to the …","Returns the given rect transformed by this scale.","Translate a rectangle and cast its unit.","Translate a rectangle and cast its unit.","Returns the given size transformed by this scale.","No-op, just cast the unit.","No-op, just cast the unit.","Returns the given 2d vector transformed by this rotation.","","","Returns the given vector transformed by this scale.","","Returns the given vector transformed by this matrix.","","Returns the given 2d vector transformed by this rotation …","Returns the given 2d vector transformed by this matrix.","Returns the given 3d vector transformed by this rotation.","Returns the given 3d vector transformed by this matrix.","Returns the same box, translated by a vector.","Returns the same box3d, translated by a vector.","Returns the same rectangle, translated by a vector.","Create a 2d translation transform:","Create a 3d translation transform:","","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the vector with length of one unit.","Returns the vector with length of one unit.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the union of two boxes.","Computes the union of two boxes.","","Creates a rotation around from a quaternion representation …","","","","","","","","","","","","","","","","","","","","","","","","Convenience constructor.","Convenience constructor.","Returns the vector part (i, j, k) of this quaternion.","","","Returns result of multiplication of all components","","","","","The extent of the element in the U units along the x axis …","The extent of the element in the U units along the x axis.","Returns the same transform with a different destination …","Returns the same transform with a different destination …","Return this vector scaled to fit the provided length.","Return this vector capped to a maximum length.","Return this vector capped to a maximum length.","Return this vector with a minimum length applied.","Return this vector with a minimum length applied.","Returns the same transform with a different source unit.","Returns the same transform with a different source unit.","","","","","","The x (traditionally, horizontal) coordinate.","The x (traditionally, horizontal) coordinate.","","","","","","Returns a 2d point using this point’s x and y coordinates","Returns a 2d vector using this vector’s x and y …","Returns a 2d vector using this vector’s x and y …","","Returns a 2d point using this point’s x and z coordinates","Returns a 2d vector using this vector’s x and z …","Returns a 2d vector using this vector’s x and z …","","","","","","","The y (traditionally, vertical) coordinate.","The y (traditionally, vertical) coordinate.","","","","","","Swap x and y.","Swap x and y.","Returns a 2d point using this point’s x and z coordinates","Returns a 2d vector using this vector’s x and z …","Returns a 2d vector using this vector’s y and z …","","","","","The z (traditionally, depth) coordinate.","","","Constructor, setting all sides to zero.","Constructor, setting all sides to zero.","","The same as origin().","","","The same as origin().","Constructor, setting all sides to zero.","Constructor, setting all sides to zero.","The same as Zero::zero() but available without importing …","","","The same as Zero::zero() but available without importing …","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Trait for testing approximate equality","Default epsilon value","Returns true is this object is approximately equal to the …","Returns true is this object is approximately equal to the …","","","","","","","","","","","","","","","","","","","","","","","Angle in radians","","The extent of the element in the U units along the z axis.","The extent of the element in the U units along the y axis …","The extent of the element in the U units along the y axis.","Component multiplied by the imaginary number i.","Component multiplied by the imaginary number j.","Component multiplied by the imaginary number k.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The real part.","","","","","","","The extent of the element in the U units along the x axis …","The extent of the element in the U units along the x axis.","","","The x (traditionally, horizontal) coordinate.","The x (traditionally, horizontal) coordinate.","","","","","","The y (traditionally, vertical) coordinate.","The y (traditionally, vertical) coordinate.","","","","","The z (traditionally, depth) coordinate.","","","Defines the smallest integer equal or greater than the …","Defines the biggest integer equal or lower than the …","","Defines the nearest integer value to the original value.","","Rounds to the smallest integer equal or greater than the …","Rounds to the biggest integer equal or lower than the …","","Rounds to the nearest integer value.","","A flattening iterator for quadratic bézier segments.","A flattening iterator for quadratic bézier segments.","","A 2d curve segment defined by three points: the beginning …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Common APIs to segment types.","","Return the curve after the split point.","Compute the length of the segment using a flattened …","Return the curve before the split point.","Sample the derivative at t (expecting t between 0 and 1).","Sample x derivative at t (expecting t between 0 and 1).","Sample y derivative at t (expecting t between 0 and 1).","Swap the direction of the segment.","Approximates the curve with sequence of line segments.","Start of the curve.","Sample the curve at t (expecting t between 0 and 1).","Split this curve into two sub-curves.","Return the curve inside a given range of t.","End of the curve.","","","Sample x at t (expecting t between 0 and 1).","Sample y at t (expecting t between 0 and 1).","","Angle between vectors v1 and v2 (oriented clockwise …","","","","","An iterator that consumes Event iterator and yields …","An iterator that consumes an iterator of Points and …","","An extension trait for PathEvent iterators.","Applies a 2D transform to a path iterator and yields the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator that turns curves into line segments.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create the iterator.","Creates a new transformed path iterator from a path …","","","","","","","","Returns an iterator applying a 2D transform to all of its …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An angle in radians (f32).","Alias for euclid::default::Box2D<f32>","Alias for euclid::default::Point2D<f32>.","Alias for euclid::default::Rotation2D<f32>","Alias for euclid::default::Scale<f32>","Alias for euclid::default::Size2D<f32>.","Alias for euclid::default::Transform2D<f32>","Alias for euclid::default::Translation2D<f32>","Alias for euclid::default::Point2D<f32>.","Angle in radians","The extent of the element in the U units along the y axis …","","","","","","","","","Shorthand for Point::new(x, y).","","Shorthand for Size::new(x, y).","Shorthand for Vector::new(x, y).","The extent of the element in the U units along the x axis …","","The x (traditionally, horizontal) coordinate.","","","The y (traditionally, vertical) coordinate.","","","The default builder for Path.","A builder for Path with custom attributes.","An iterator of endpoint and control point ids for Path and …","An iterator for Path and PathSlice.","An iterator for Path and PathSlice.","A simple path data structure.","A view on a Path.","An iterator of over a Path traversing the path in reverse.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Iterate on a flattened approximation of the path with …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Builds a Path from This iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A Builder that appends a path to an existing PathBuffer.","A Builder that appends a path to an existing PathBuffer, …","Iterator over the paths in a PathBufferSlice.","An object that stores multiple paths contiguously.","A view on a PathBuffer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A view over a sequence of endpoint IDs forming a polygon.","An iterator of Event<EndpointId, ()>.","An iterator of PathEvent.","A view over a sequence of endpoints forming a polygon.","An iterator of IdEvent for Polygon.","An iterator of Event<&Endpoint, ()>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Builds a path.","The base path building interface.","An extension trait for PathEvent iterators.","The type of object that is created by this builder.","A path building interface that tries to stay close to SVG…","Adds a sub-path containing a circle.","Adds a sub-path containing an ellipse.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single point.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds an elliptical arc.","Starts a new sub-path at a given position.","Builds a path object, consuming the builder.","Ends the current sub-path by connecting it back to its …","Closes the current sub path.","Adds a cubic bézier curve to the current sub-path.","Adds a cubic bézier segment to the current sub-path.","Ends the current sub path.","","Returns a builder that approximates all curves with …","Returns an iterator that turns curves into line segments.","Adds an horizontal line segment.","Adds a line segment to the current sub-path.","Adds a line segment to the current sub-path.","Start a new sub-path at the given position.","","Applies the provided path event.","Adds a quadratic bézier curve to the current sub-path.","Adds a quadratic bézier segment to the current sub-path.","Equivalent to arc_to in relative coordinates.","Equivalent to cubic_bezier_to in relative coordinates.","Adds an horizontal line segment in relative coordinates.","Equivalent to line_to in relative coordinates.","Equivalent to move_to in relative coordinates.","Equivalent to quadratic_bezier_to in relative coordinates.","Adds a vertical line segment in relative coordinates.","Hints at the builder that a certain number of endpoints …","Hints at the builder that a certain number of endpoints …","Equivalent to cubic_bezier_to with implicit first control …","Equivalent to quadratic_bezier_to with implicit control …","Equivalent to smooth_cubic_bezier_to in relative …","Equivalent to smooth_quadratic_bezier_to in relative …","Returns a builder that applies the given transformation to …","Returns an iterator applying a 2D transform to all of its …","Adds a vertical line segment.","Returns a builder that support SVG commands.","A bevelled corner.","The stroke for each sub-path does not extend beyond its …","A Gradient color.","The shape used at the end of open subpaths when they are …","The dash pattern used when stroking the line.","The shape used at the corners of paths or basic shapes …","A sharp corner.","At the end of each sub-path, the shape representing the …","A round corner.","A solid Color.","At the end of each sub-path, the shape representing the …","The style of a stroke.","The coloring style of some drawing.","The shape to be used at the end of open subpaths when they …","The dash pattern used when stroking the line.","The shape to be used at the corners of paths or basic …","The offset of LineDash::segments to start the pattern.","The alternating lengths of lines and gaps which describe …","The color or gradient of the stroke.","The distance between the two edges of the stroke.","The appearance of a checkbox.","A box that can be checked.","The icon in a Checkbox.","The supported style of the StyleSheet.","A set of rules that dictate the style of a checkbox.","Produces the active Appearance of a checkbox.","","","","","","","","","","","The Background of the checkbox.","The Border of hte checkbox.","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","","","","","","","Font that will be used to display the code_point,","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Produces the hovered Appearance of a checkbox.","The icon Color of the checkbox.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The line height of the icon.","The shaping strategy of the icon.","Font size of the content.","The text Color of the checkbox.","","","","","","","","","","","","","","","","","","","A widget for searching and selecting a single value from a …","The local state of a ComboBox.","","","","","","","","Build matchers from given list of options.","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","Creates a new State for a ComboBox with the given list of …","Search list of options for a given query.","","","","","","","","","","Creates a new State for a ComboBox with the given list of …","The appearance of a container.","An element decorating some content.","The identifier of a Container.","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","","Produces the Appearance of a container.","","","","","","","","","The Background of the container.","The Border of the container.","","","","","","","","","","","","","","","","","","Draws the background of a Container given its Appearance …","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Computes the layout of a Container.","Creates a custom Id.","The Shadow of the container.","The text Color of the container.","","","","","","","","","","","","","","","","","Creates a unique Id.","","","Produces a Command that queries the visible screen bounds …","Derives a new Appearance with the given Background.","Derives a new Appearance with a border of the given Color …","Image filtering strategy.","A handle of some image data.","A frame that displays an image while keeping aspect ratio.","Bilinear interpolation.","Nearest neighbor.","A frame that displays an image with the ability to zoom …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a reference to the image Data.","","","","","","","","","","","Draws an Image","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Creates an image Handle containing the image data directly.","Creates an image Handle pointing to the image of the given …","Creates an image Handle containing the image pixels …","","","","","","Sets the height of the Viewer.","Returns the unique identifier of the Handle.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Computes the layout of an Image.","","Sets the max scale applied to the image of the Viewer.","Sets the min scale applied to the image of the Viewer.","","Creates a new Viewer with the given State.","","Sets the padding of the Viewer.","Sets the percentage the image of the Viewer will be scaled …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Zoom and pan on an image.","Creates a new Viewer with the given image Handle.","Sets the width of the Viewer.","The local state of a Viewer.","A frame that displays an image with the ability to zoom …","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the bounds of the underlying image, given the …","","Calls U::from(self).","","","","","","","","Returns if the cursor is currently grabbed by the Viewer.","Creates a new State.","","","","","","","","","","A container that distributes its contents vertically.","","Sets the horizontal alignment of the contents of the Column…","","","","","","","","Distribute content vertically.","","","","","","","","","Returns the argument unchanged.","","","Sets the height of the Column.","","Calls U::from(self).","","","","","","","","Sets the maximum width of the Column.","","Creates an empty Column.","","","","Sets the Padding of the Column.","Adds an element to the Column.","","Sets the vertical spacing between elements.","","","","","","","","","","","Sets the width of the Column.","Creates a Column with the given elements.","A container that distributes its contents vertically.","Build and show dropdown menus.","The appearance of a menu.","A list of selectable options.","The local state of a Menu.","The supported style of the StyleSheet.","The style sheet of a menu.","","","","Produces the Appearance of a menu.","","","","","","","","","","","","","The Background of the menu.","The Border of the menu.","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the font of the Menu.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Creates a new Menu with the given State, a list of …","Creates a new State for a Menu.","Turns the Menu into an overlay Element at the given target …","Sets the Padding of the Menu.","The background Color of a selected option in the menu.","The text Color of a selected option in the menu.","Sets the style of the Menu.","The text Color of the menu.","Sets the text text::LineHeight of the Menu.","Sets the text::Shaping strategy of the Menu.","Sets the text size of the Menu.","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Menu.","All panes are visible","The appearance of the hovered region of a pane grid.","A fixed reference line for the measurement of coordinates.","Bottom edge.","A Pane was picked and then dropped outside of other Pane …","Center region.","The arrangement of a PaneGrid.","The content of a Pane.","The visible contents of the PaneGrid","A four cardinal direction.","↓","An event produced during a drag and drop interaction of a …","A pane that can be dragged.","A Pane was dropped on top of another Pane.","The edges of an area.","An Edge of the full PaneGrid.","Edge region.","The horizontal axis: —","←","Left edge.","A line.","A maximized pane is visible","A layout node of a PaneGrid.","A rectangular region in a PaneGrid used to display widgets.","A Pane.","The region of this Node is taken by a Pane.","A single Pane of the PaneGrid.","A collection of panes distributed using either vertical or …","A Pane was picked for dragging.","The region of a Pane.","An event produced during a resize interaction of a PaneGrid…","→","Right edge.","A divider that splits a region in a PaneGrid into two …","A split of the available space.","The region of this Node is split into two.","The state of a PaneGrid.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","The Target area a pane can be dropped on.","The title bar of a Pane.","Top edge.","↑","The vertical axis: |","","","","","","","","","","","","","","","","","","Returns the adjacent Pane of another Pane in the given …","Sets whether or not the controls attached to this TitleBar …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the pane region.","The Border of the pane region.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Draggable with the given Layout can be …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Closes the given Pane and returns its internal state and …","","","The Color of the Line.","","","","","","","","","","","","","","","","","","","","Sets the controls of the TitleBar.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws a PaneGrid.","Draws the Content with the provided Renderer and Layout.","Draws the TitleBar with the provided Renderer and Layout.","","","","","","","","","","","Drops the given Pane into the provided Target.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the internal state of the given Pane, if it exists.","Returns the internal state of the given Pane with …","","","","","The Appearance to draw when a pane is hovered.","The Line to draw when a split is hovered.","","","","","","","","","","","","","","","","","","The internal state of the PaneGrid.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the amount of panes in the State is 0.","Returns whether the mouse cursor is over the pick area of …","Returns an iterator over all the panes of the State, …","Returns an iterator over the values of the Contents","Returns a mutable iterator over all the panes of the State,","Calculates the Layout of a PaneGrid.","Returns the layout of the State.","Returns the layout Node of the Contents","Returns the total amount of panes in the State.","Maximize the given Pane. Only this pane will be rendered …","Returns the maximized Pane of the PaneGrid.","Returns the current mouse::Interaction of a PaneGrid.","Move Pane to an Edge of the PaneGrid.","Creates a new Content with the provided body.","Creates a new TitleBar with the given content.","Creates a new State, initializing the first pane with the …","Sets the Padding of the TitleBar.","Returns the rectangular region for each Pane in the Node …","The panes of the PaneGrid.","","","The Line to draw when a split is picked.","The new ratio of the Split.","Resizes two panes by setting the position of the provided …","Restore the currently maximized Pane to it’s normal …","Splits the provided Rectangle on the current Axis with the …","Splits the given Pane into two in the given Axis and …","The Split that is being dragged for resizing.","Calculates the bounds of the split line in a Rectangle …","Returns the axis, rectangular region, and ratio for each …","Split a target Pane with a given Pane on a given Region.","Returns an iterator over each Split in this Node.","The state of a PaneGrid.","Sets the style of the Content.","Sets the style of the TitleBar.","Swaps the position of the provided panes in the State.","Sets the TitleBar of this Content.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the state of a PaneGrid …","The width of the Line.","Creates a new State with the given Configuration.","The left/top Configuration of the split.","The direction of the split.","The right/bottom Configuration of the split.","The ratio of the split in [0.0, 1.0].","The picked Pane.","The picked Pane.","The picked Pane.","The Target where the picked Pane was dropped on.","The left/top Node of the split.","The direction of the split.","The right/bottom Node of the split.","The Split of this Node.","The ratio of the split in [0.0, 1.0].","The current action of a PaneGrid.","A Pane in the PaneGrid is being clicked.","A Pane in the PaneGrid is being dragged.","The PaneGrid is idle.","The internal state of a PaneGrid.","A Split in the PaneGrid is being dragged.","The state of a PaneGrid.","","","","","","","","","","","","","","","Returns the current Pane that is being clicked, if any.","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Initializes the Internal state of a PaneGrid from a …","","","","","The internal state of the PaneGrid.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The layout Node of the Internal state","The panes of the PaneGrid.","Returns the current Pane that is being dragged, if any.","Returns the current Split that is being dragged, if any.","","","","","","","","","","","","","","","","","","","The Axis of the Split.","The starting Point of the click interaction.","The starting Point of the drag interaction.","The Pane being clicked.","The Pane being dragged.","The Split being dragged.","The appearance of a pick list.","Displays an arrow icon (▼).","A custom dynamic handle.","The handle to the right side of the PickList.","The icon of a Handle.","No handle will be shown.","A widget for selecting a single value from a list of …","The state of a PickList.","A custom static handle.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","Produces the active Appearance of a pick list.","","","","","","","","","","","","","","","","","","","","","The Background of the pick list.","The Border of the pick list.","","","","","","","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","","","","","","","","","","","","Draws a PickList.","","","","","","","","","","","Font that will be used to display the code_point,","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","The handle Color of the pick list.","Produces the hovered Appearance of a pick list.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the layout of a PickList.","Line height of the content.","Returns the current mouse::Interaction of a PickList.","Returns the current overlay of a PickList.","The placeholder Color of the pick list.","The shaping strategy of the icon.","Font size of the content.","The text Color of the pick list.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a PickList …","The Icon used when PickList is closed.","The Icon used when PickList is open.","Font size of the content.","The appearance of a progress bar.","A bar that displays progress.","The supported style of the StyleSheet.","A set of rules that dictate the style of a progress bar.","","Produces the Appearance of the progress bar.","","","","","The Background of the progress bar.","The Background of the bar of the progress bar.","The border radius of the progress bar.","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The data is too long to encode in a QR code for the chosen …","An error that occurred when building a State for a QRCode.","The error correction level.","High error correction. 30% of the data can be restored.","A character that does not belong to the character set was …","The chosen ECI designator is invalid. A valid designator …","The chosen Version and ErrorCorrection combination is …","Low error correction. 7% of the data can be restored.","Medium error correction. 15% of the data can be restored.","A micro QR code version. It should be between 1 and 4.","A normal QR code version. It should be between 1 and 40.","A type of matrix barcode consisting of squares arranged in …","Quartile error correction. 25% of the data can be restored.","The state of a QRCode.","One or more characters in the provided data are not …","The size of a QRCode.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new State with the provided data.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new State with the provided ErrorCorrection.","Creates a new State with the provided Version and …","The appearance of a radio button.","A circular button representing a choice.","The supported style of the StyleSheet.","A set of rules that dictate the style of a radio button.","Produces the active Appearance of a radio button.","","","","","","The Background of the radio button.","The border Color of the radio button.","The border width of the radio button.","","","","","","","","The Color of the dot of the radio button.","","","","Returns the argument unchanged.","","","Produces the hovered Appearance of a radio button.","","Calls U::from(self).","","","","","","","","The text Color of the radio button.","","","","","","","","","","The appearance of a rule.","Different offset on each end of the rule, length units. …","The fill mode of a rule.","Fill the whole length of the container.","Uniform offset from each end, length units.","Fill a percent of the length of the container. The rule …","Display a horizontal or vertical rule for dividing content.","The supported style of the StyleSheet.","A set of rules that dictate the style of a rule.","","","Produces the style of a rule.","","","","","","","","","","","","","","","","","The color of the rule.","","","","","","","","","","","Return the starting offset and length of the rule.","The FillMode of the rule.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The radius of the line corners.","","","","","","","","","","","","","","","","","","","The width (thickness) of the rule line.","The amount of absolute offset in each direction of a …","Alignment of the scrollable’s content relative to it’s …","Both vertical and horizontal scrolling","The direction of Scrollable.","A relative offset that points to the bottom-right of a …","Content is aligned to the end of the Viewport","Horizontal scrolling","The identifier of a Scrollable.","Properties of a scrollbar within a Scrollable.","The amount of relative offset in each direction of a …","A relative offset that points to the top-left of a …","A widget that can vertically display an infinite amount of …","The appearance of a scrollable.","The appearance of the scroller of a scrollable.","Content is aligned to the start of the Viewport.","The local state of a Scrollable.","The supported style of the StyleSheet.","A set of rules that dictate the style of a scrollable.","Vertical scrolling","The current Viewport of the Scrollable.","Returns the AbsoluteOffset of the current Viewport.","Returns the AbsoluteOffset of the current Viewport, but …","Produces the style of an active scrollbar.","Produces the style of an active horizontal scrollbar.","","","","","","","","","","","Sets the alignment of the Scrollable .","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of a scrollable.","The Border of a scrollable.","The Border of the scroller.","","","","","","","","","","","","","","","","","","","","","Returns the bounds of the current Viewport.","","","","","","","","","","","","","","","","","","","","","The Color of the scroller.","","","","","","","","","","","Returns the content bounds of the current Viewport.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Produces the style of a scrollbar that is being dragged.","Produces the style of a horizontal scrollbar that is being …","Draws a Scrollable.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","Returns the Properties of the horizontal scrollbar, if any.","Produces the style of a scrollbar when the scrollable is …","Produces the style of a horizontal scrollbar when the …","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the layout of a Scrollable.","Sets the scrollbar margin of the Scrollable .","Computes the current mouse::Interaction of a Scrollable.","Creates new Properties for use in a Scrollable.","Creates a custom Id.","Creates a new State with the scrollbar(s) at the beginning.","Returns the RelativeOffset of the current Viewport.","Apply a scrolling offset to the current State, given the …","Produces a Command that scrolls the Scrollable with the …","","Scroll to the provided AbsoluteOffset.","Scrolls the Scrollable to a relative amount along the x …","Scrolls the Scrollable to a relative amount along the y …","The appearance of the Scroller of a scrollable.","Sets the scroller width of the Scrollable .","Returns whether any scroller is currently grabbed or not.","Produces a Command that snaps the Scrollable with the …","","Snaps the scroll position to a RelativeOffset.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","Unsnaps the current scroll position, if snapped, given the …","","","","","","","","","","","Processes an Event and updates the State of a Scrollable …","Returns the Properties of the vertical scrollbar, if any.","Sets the scrollbar width of the Scrollable .","The amount of horizontal offset","The amount of horizontal offset","The amount of vertical offset","The amount of vertical offset","The properties of the horizontal scrollbar.","The properties of the vertical scrollbar.","A Shader event.","A keyboard event.","A mouse event.","A set of methods which allows a Primitive to be rendered.","The type of primitive this Program can draw.","The state and logic of a Shader widget.","A window requested a redraw.","A widget which can render custom shaders with Iced’s wgpu…","The internal state of the Program.","Stores custom, user-provided pipelines.","A touch event.","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the Primitive.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns a reference to pipeline with type T if it exists …","Returns a mutable reference to pipeline T if it exists in …","Returns true if Storage contains a pipeline with type T.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Returns the current mouse interaction of the Program.","Processes the Primitive, allowing for GPU buffer …","Renders the Primitive.","Inserts the pipeline T in to Storage.","","","","","","","","","","","","","","","","","","Update the internal State of the Program. This can be used …","Allows the use of AddressMode::ClampToBorder with a border …","Allows the use of AddressMode::ClampToBorder with a border …","Enable writes to all channels.","Whether wgpu should expose adapters that run on top of …","Enable alpha channel writes","Blend mode that does standard alpha blending with …","Supports samplers with anisotropic filtering. Note this isn…","A ray-tracing acceleration structure binding.","Handle to a physical graphics and/or compute device.","Information about an adapter.","Src + Dst","How edges should be handled in texture addressing.","Depth, Stencil, and Color.","Function always passes","block compressed texture. 16 bytes per block.","ASTC block dimensions","ASTC RGBA channel","Chooses either Opaque or Inherit automatically,depending …","Chooses Immediate -> Mailbox -> Fifo (on web) based on …","Chooses FifoRelaxed -> Fifo based on availability.","No explicit minor version is requested, the driver …","10x10 block compressed texture. 16 bytes per block (1.28 …","10x5 block compressed texture. 16 bytes per block (2.56 …","10x6 block compressed texture. 16 bytes per block (2.13 …","10x8 block compressed texture. 16 bytes per block (1.6 …","12x10 block compressed texture. 16 bytes per block (1.07 …","12x12 block compressed texture. 16 bytes per block (0.89 …","4x4 block compressed texture. 16 bytes per block (8 …","5x4 block compressed texture. 16 bytes per block (6.4 …","5x5 block compressed texture. 16 bytes per block (5.12 …","6x5 block compressed texture. 16 bytes per block (4.27 …","6x6 block compressed texture. 16 bytes per block (3.56 …","8x5 block compressed texture. 16 bytes per block (3.2 …","8x6 block compressed texture. 16 bytes per block (2.67 …","8x8 block compressed texture. 16 bytes per block (2 …","Supports non-zero base_vertex parameter to direct indexed …","Allows the [wgpu::TextureUsages::STORAGE_BINDING] usage on …","","If not present, the texture can’t be blended into the …","Enable blue channel writes","","Supported when targeting the web through webassembly with …","Supports buffer bindings with sizes that aren’t a …","Allows the user to create arrays of buffers in shaders:","Back face","Backends supported by wgpu.","Represents the backends that wgpu will use.","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","Blue, green, red, and alpha channels. 8 bit integer per …","Blue, green, red, and alpha channels. 8 bit integer per …","Handle to a binding group.","Describes a group of bindings and the resources to be …","An element of a BindGroupDescriptor, consisting of a …","Handle to a binding group layout.","Describes a BindGroupLayout.","Describes a single binding inside a bind group.","Resource that can be bound to a pipeline.","Specific type of a binding.","Describes a blend component of a BlendState.","Alpha blend factor.","Alpha blend operation.","Describe the blend state of a render pipeline, within …","WebGPU in the browser","Handle to a GPU-accessible buffer.","Binding is backed by a buffer.","A buffer binding.","Integral type used for buffer offsets.","Binding is backed by an array of buffers.","Error occurred when trying to async map a buffer.","Describes the segment of a buffer to bind.","Specific type of a buffer binding.","Describes a Buffer.","Integral type used for buffer slice sizes.","Slice into a Buffer.","Different ways that you can use a buffer.","Read only view into a mapped buffer.","Write only view into mapped buffer.","Enables clear to zero for textures.","Amount of times the clipper is invoked. This is also the …","Amount of primitives that are not culled by the clipper. …","Enable red, green, and blue channel writes","Supports comparison samplers.","Binding is visible from the compute shader of a compute …","The device supports compiling and using compute shaders.","Amount of times a compute shader is invoked. This will be …","Allows the user to set a …","Buffer to buffer copy as well as buffer clear offsets and …","Buffer-Texture copies must have bytes_per_row aligned to …","Allow a buffer to be the destination buffer for a […","Allows a texture to be the destination in a […","Allow a buffer to be the source buffer for a […","Allows a texture to be the source in a […","Supports textures that are cube arrays.","Triangles with vertices in counter clockwise order are …","Clamp the value to the border of the texture Requires …","Clamp the value to the edge of the texture","Loads the specified value for this attachment into the …","RGBA double precision color.","Describes the color state of a render pipeline.","Color write mask. Disabled color channels will not be …","Handle to a command buffer on the GPU.","Describes a CommandBuffer.","Encodes a series of GPU operations.","Describes a CommandEncoder.","Comparison function used for depth and stencil operations.","Use as a comparison sampler instead of a normal sampler. …","Specifies how the alpha channel of the textures should be …","In-progress recording of a compute pass.","Describes the attachments of a compute pass.","Describes the timestamp writes of a compute pass.","Handle to a compute pipeline.","Describes a compute pipeline.","Constant","Cpu / Software Rendering.","Instance::create_surface() or a related function failed.","A cubemap texture. texture_cube in WGSL and textureCube in …","A cubemap array texture. texture_cube_array in WGSL and …","Triangles with vertices in clockwise order are considered …","A one dimensional texture. texture_1d in WGSL and texture1D…","1D texture","A two dimensional texture. texture_2d in WGSL and texture2D…","2D texture","A two dimensional array texture. texture_2d_array in WGSL …","A three dimensional texture. texture_3d in WGSL and …","3D texture","Generate debug information in shaders and objects.","Allows for explicit creation of textures of format …","Supports depth bias clamping","By default, polygon depth is clipped to 0-1 range …","Supports copies between depth textures and buffers.","Don’t pass labels to wgpu-hal.","Allows two outputs from a shader to be used for blending. …","Supported on Windows 10","Decrements stencil value by one, clamping on underflow.","Decrements stencil value by one, wrapping on underflow.","Sampling does the depth reference comparison.","Special depth format with 16 bit integer depth.","Special depth format with at least 24 bit integer depth.","Special depth/stencil format with at least 24 bit integer …","Special depth format with 32 bit floating point depth.","Special depth/stencil format with 32 bit floating point …","Describes the biasing setting for the depth target.","Depth.","Describes the depth/stencil state in a render pipeline.","After Device::destroy","Open connection to a graphics and/or compute device.","Describes a Device.","Reason for “lose the device”.","Supported physical device types.","Discards the resulting value of the render pass for this …","Discrete GPU with separate CPU/GPU memory.","Display-P3 color space","Lists various ways the underlying platform does not …","Binary flags listing features that may or may not be …","D.component","D.alpha","Direct3D-12 (Windows)","Selects which DX12 shader compiler to use.","The Dxc compiler is new, fast and maintained.","Integral type used for dynamic bind group offsets.","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","Dummy backend, used for testing.","Function passes if new value is equal to existing value. …","Error type","Filter for error scopes.","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","Extent of a texture related operation.","If not present, the texture can’t be sampled with a …","Allows textures with formats “r32float”, “rg32float…","Binding is visible from the fragment shader of a render …","Amount of times the fragment shader is ran. Accounts for …","Supports storage buffers in fragment shaders.","Supports binding storage buffers and textures to fragment …","Supports full 32-bit range indices (2^32-1 as opposed to …","Face of a vertex.","Features that are not guaranteed to be supported.","Presentation frames are kept in a First-In-First-Out queue …","Presentation frames are kept in a First-In-First-Out queue …","Polygons are filled","Texel mixing mode when sampling between texels.","The sampling result is produced based on more than a …","Sampling returns floats.","Two half-precision floats (no Rust equiv). vec2<f32> in …","Four half-precision floats (no Rust equiv). vec4<f32> in …","One single-precision float (f32). f32 in shaders.","Two single-precision floats (f32). vec2<f32> in shaders.","Three single-precision floats (f32). vec3<f32> in shaders.","Four single-precision floats (f32). vec4<f32> in shaders.","One double-precision float (f64). f32 in shaders. Requires …","Two double-precision floats (f64). vec2<f32> in shaders. …","Three double-precision floats (f64). vec3<f32> in shaders. …","Four double-precision floats (f64). vec4<f32> in shaders. …","Describes the fragment processing in a render pipeline.","Front face","Vertex winding order which classifies the “front” face …","The Fxc compiler (default) is old, slow and unmaintained.","Supported on Linux/Android, the web through webassembly …","Enable green channel writes","","OpenGL ES-3 (Linux, Android)","Selects which OpenGL ES 3 minor version to request.","No issues.","Function passes if new value is greater than existing value","Function passes if new value is greater than or equal to …","floating-point RGBA, linear-color float can be outside of …","Adapter that has the highest performance. This is often a …","Ignore the stencil state for the face.","Supports different blend operations per color attachment.","Allow a buffer to be the index buffer in a draw operation.","Allow a buffer to be the indirect buffer in an indirect …","Supports indirect drawing and dispatching.","Allows non-zero value for the first_instance member in …","A timestamp that is invalid due to the platform not having …","Opaque globally-unique identifier","View of a buffer which can be used to copy to/from a …","View of a buffer which can be used to copy to/from a …","View of a texture which can be used to copy to/from a …","View of a texture which can be used to copy to/from a …","View of a texture which can be used to copy to a texture, …","View of a texture which can be used to copy to a texture, …","Layout of a texture in a buffer’s memory.","Subresource range within an image","Presentation frames are not queued at all. The moment a …","Increments stencil value by one, clamping on overflow.","Increments stencil value by one, wrapping on overflow.","Format of indices used with pipeline.","The alpha channel, if it exists, of the textures is …","Context for all other wgpu objects. Instance of wgpu.","Vertex data is advanced every instance.","Options for creating an instance.","Instance debugging flags.","Integrated GPU with shared CPU/GPU memory.","Bitwise inverts stencil value.","Keep stencil value unchanged.","Object debugging label.","Function passes if new value less than existing value","Function passes if new value is less than or equal to …","Represents the sets of limits an adapter/device supports.","Polygons are drawn as line segments","Vertex data is a list of lines. Each pair of vertices …","Vertex data is a strip of lines. Each set of two adjacent …","Linear Interpolation","Loads the existing value for this attachment into the …","Operation to perform to the output attachment at the start …","The swap chain has been lost and needs to be recreated.","The surface under the swap chain is lost.","Adapter that uses the least possible power. This is often …","Webgpu only allows the MAP_READ and MAP_WRITE buffer usage …","Size to align mappings.","Allow a buffer to be mapped for reading using […","Allow a buffer to be mapped for writing using […","Supported on macOS/iOS","Supports sample-rate shading.","Allows a texture of this format to back a view passed as …","Allows TextureDescriptor::sample_count to be 16.","Allows TextureDescriptor::sample_count to be 2.","Allows TextureDescriptor::sample_count to be 4.","Allows TextureDescriptor::sample_count to be 8.","Enables multiview render passes and builtin(view_index) in …","Allows the user to call RenderPass::multi_draw_indirect …","Allows the user to call …","Presentation frames are kept in a single-frame queue. …","Passed to Device::poll to control how and if it should …","Passed to Device::poll to control how and if it should …","Result of a maintain operation.","Type of buffer mapping.","max(Src, Dst)","Metal API (Apple platforms)","min(Src, Dst)","Repeat the texture, mirroring it every repeat","Describes the multi-sampling state of a render pipeline.","If this is true, calls to CommandEncoder::resolve_query_set…","Binding is not visible from any shader stage.","Supports textures with mipmaps which have a non power of …","YUV 4:2:0 chroma subsampled format.","Nearest neighbor sampling.","Function never passes","The sampling result is produced based on a single color …","Power usage is not considered when choosing an adapter.","No value.","Function passes if new value is not equal to existing …","Blend state of (1 * src) + ((1 - src_alpha) * dst)","Query returns a single 64-bit number, serving as an …","More information coming soon …","1.0","1.0 - Constant","1.0 - D.component","1.0 - D.alpha","1.0 - S.component","1.0 - S1.component","1.0 - S1.alpha","1.0 - S.alpha","The alpha channel, if it exists, of the textures is …","[0, 0, 0, 1]","[1, 1, 1, 1]","Pair of load and store operations for an attachment aspect.","Origin of a copy from a 2D image.","Origin of a copy to/from a texture.","Other or Unknown.","Catch only out-of-memory errors.","There is no more memory left to allocate a new frame.","Out of memory error","The underlying surface has changed, and therefore the swap …","The surface under the swap chain has changed.","Allows the user to create bind groups containing arrays …","Enables use of Pipeline Statistics Queries. These queries …","Allows the user to set PolygonMode::Line in …","Allows the user to set PolygonMode::Point in …","Blend mode that does standard alpha blending with …","All the apis that wgpu offers first tier of support for.","Allows the use of push constants: small, fast bits of …","Alignment all push constants need","Handle to a pipeline layout.","Describes a PipelineLayout.","Query returns up to 5 64-bit numbers based on the given …","Flags for which pipeline data should be recorded.","Plane 0.","Plane 1.","Plane 2.","Polygons are drawn as points","Vertex data is a list of points. Each vertex is a new …","Check the device for a single time without blocking.","Check the device for a single time without blocking.","Type of drawing mode for polygons","The alpha channel, if it exists, of the textures is …","Power Preference when choosing a physical adapter.","The alpha channel, if it exists, of the textures is …","Color spaces supported on the web.","Behavior of the presentation engine based on frame rate.","Nanosecond timestamp used by the presentation engine.","Describes the state of primitive assembly and …","Primitive type the input mesh is composed of.","A range of push constant memory to pass to a shader stage.","Allow a buffer to be the destination buffer for a […","An offset into the query resolve buffer has to be aligned …","Maximum queries in a query set","Size of a single piece of query data.","Handle to a query set.","Describes a QuerySet.","Type of query contained in a QuerySet.","Handle to a command queue on a device.","A write-only view into a staging buffer.","Red channel only. 16 bit float per channel. Float in …","Red channel only. 16 bit integer per channel. Signed in …","Red channel only. 16 bit integer per channel. [0, 65535] …","Red channel only. 16 bit integer per channel. Unsigned in …","Red channel only. 16 bit integer per channel. [0, 65535] …","Red channel only. 32 bit float per channel. Float in …","Red channel only. 32 bit integer per channel. Signed in …","Red channel only. 32 bit integer per channel. Unsigned in …","Red channel only. 8 bit integer per channel. Signed in …","Red channel only. 8 bit integer per channel. [-127, 127] …","Red channel only. 8 bit integer per channel. Unsigned in …","Red channel only. 8 bit integer per channel. [0, 255] …","Allows for the creation of ray-tracing queries within …","Allows for the creation of ray-tracing acceleration …","Supports reading from a depth/stencil texture while using …","Enable red channel writes","","Allows a texture to be an output attachment of a render …","Default blending state that replaces destination with the …","Blend mode that does no color blending, just overwrites …","Allows for usage of textures of format …","Raw window & display handle.","Map only for reading","The texture can only be read in the shader and it must be …","The texture can be both read and written in the shader and …","Pre-prepared reusable bundle of GPU operations.","Describes the depth/stencil attachment for render bundles.","Describes a RenderBundle.","Encodes a series of GPU operations into a reusable “…","Describes a RenderBundleEncoder.","In-progress recording of a render pass: a list of render …","Describes a color attachment to a RenderPass.","Describes a depth/stencil attachment to a RenderPass.","Describes the attachments of a render pass.","Describes the timestamp writes of a render pass.","Handle to a rendering (graphics) pipeline.","Describes a render (graphics) pipeline.","Repeat the texture in a tiling fashion","Replace stencil value with value provided in most recent …","Additional information required when requesting an adapter.","Options for requesting adapter.","Requesting a device from an Adapter failed.","Dst - Src","Red, green, and blue channels. 11 bit float with no sign …","Red and green channels. 16 bit float per channel. Float in …","Red and green channels. 16 bit integer per channel. Signed …","Red and green channels. 16 bit integer per channel. [0, …","Red and green channels. 16 bit integer per channel. …","Red and green channels. 16 bit integer per channel. [0, …","Red and green channels. 32 bit float per channel. Float in …","Red and green channels. 32 bit integer per channel. Signed …","Red and green channels. 32 bit integer per channel. …","Red and green channels. 8 bit integer per channel. Signed …","Red and green channels. 8 bit integer per channel. [-127, …","Red and green channels. 8 bit integer per channel. …","Red and green channels. 8 bit integer per channel. [0, 255]…","Red, green, blue, and alpha channels. 10 bit integer for …","Red, green, blue, and alpha channels. 10 bit integer for …","Packed unsigned float with 9 bits mantisa for each RGB …","Red, green, blue, and alpha channels. 16 bit float per …","Red, green, blue, and alpha channels. 16 bit integer per …","Red, green, blue, and alpha. 16 bit integer per channel. […","Red, green, blue, and alpha channels. 16 bit integer per …","Red, green, blue, and alpha channels. 16 bit integer per …","Red, green, blue, and alpha channels. 32 bit float per …","Red, green, blue, and alpha channels. 32 bit integer per …","Red, green, blue, and alpha channels. 32 bit integer per …","Red, green, blue, and alpha channels. 8 bit integer per …","Red, green, blue, and alpha channels. 8 bit integer per …","Red, green, blue, and alpha channels. 8 bit integer per …","Red, green, blue, and alpha channels. 8 bit integer per …","Red, green, blue, and alpha channels. 8 bit integer per …","Allows shaders to index sampled texture and storage buffer …","All the apis that wgpu offers second tier of support for. …","Allows shaders to use the early_depth_test attribute.","Allows shaders to acquire the FP16 ability","Enables 64-bit floating point types in SPIR-V shaders.","Allows shaders to use i16. Not currently supported in naga…","Enables builtin(primitive_index) in fragment shaders.","Allows vertex shaders to have outputs which are not …","Enables creating shader modules from SPIR-V binary data …","Allow a buffer to be a BufferBindingType::Storage inside a …","Allows a texture to be a BindingType::StorageTexture in a …","When used as a STORAGE texture, then a texture with this …","Allows the user to create uniform arrays of storage …","Supports specifying which view formats are allowed when …","Handle to a sampler.","Binding is a sampler.","A sampler that can be used to sample a texture.","Binding is backed by an array of samplers.","Specific type of a sampler binding.","Color variation to use when sampler addressing mode is …","Describes a Sampler.","Integral type used for binding locations in shaders.","Collections of shader features a device supports if they …","Handle to a compiled shader module.","Descriptor for use with Device::create_shader_module.","Descriptor for a shader module given by SPIR-V binary, for …","Source of a shader module.","Describes the shader stages that a binding will be visible …","Sampling returns signed integers.","Two signed shorts (i16). vec2<i32> in shaders.","Four signed shorts (i16). vec4<i32> in shaders.","One signed int (i32). i32 in shaders.","Two signed ints (i32). vec2<i32> in shaders.","Three signed ints (i32). vec3<i32> in shaders.","Four signed ints (i32). vec4<i32> in shaders.","Two signed bytes (i8). vec2<i32> in shaders.","Four signed bytes (i8). vec4<i32> in shaders.","Extremely limited shaders, including a total instruction …","Missing minor features and storage images.","WebGPU supports shader module 5.","Two signed shorts (i16). [-32767, 32767] converted to …","Four signed shorts (i16). [-32767, 32767] converted to …","Two signed bytes (i8). [-127, 127] converted to float [-1, …","Four signed bytes (i8). [-127, 127] converted to float […","Some value of type T.","S.component","S1.component","S1.alpha","S.alpha","min(S.alpha, 1.0 - D.alpha)","sRGB color space","Stencil format with 8 bit integer stencil.","Describes stencil state in a render pipeline.","Stencil.","Operation to perform on the stencil value.","State of the stencil operation (fixed-pipeline stage).","A storage buffer.","A storage texture.","Specific type of a sample in a texture binding.","Stores the resulting value of the render pass for this …","Operation to perform to the output attachment at the end …","Identifier for a particular call to Queue::submit. Can be …","There are no active submissions in flight as of the …","The swap chain is operational, but it does no longer …","Src - Dst","Handle to a presentable surface.","Defines the capabilities of a given surface and adapter.","Describes a Surface.","Result of an unsuccessful call to …","Status of the received surface image.","The window/canvas/surface/swap-chain/etc. a surface is …","The window/canvas/surface/swap-chain/etc. a surface is …","Surface texture that can be rendered to. Result of a …","Enables device specific texture format features.","Allows a texture to be a BindingType::Texture in a bind …","Allows the user to create uniform arrays of textures in …","Enables ASTC family of compressed textures. ASTC textures …","Enables ASTC HDR family of compressed textures.","Enables BCn family of compressed textures. All BCn …","Enables ETC family of compressed textures. All ETC …","Enables normalized 16-bit texture formats.","Allows for creation of textures of format …","Enables use of Timestamp Queries. These queries tell the …","Allows for timestamp queries inside render passes.","","Handle to a texture on the GPU.","A texture binding.","Kind of data the texture holds.","Describes a Texture.","Dimensionality of a texture.","Underlying texture data format.","Feature flags for a texture format.","Features supported by a given texture format","Specific type of a sample in a texture binding.","Different ways that you can use a texture.","Handle to a texture view.","Binding is backed by a texture.","Binding is backed by an array of textures.","Describes a TextureView.","Dimensions of a particular texture view.","A timeout was encountered while trying to acquire the next …","Unable to get the next frame, timed out.","Query returns a 64-bit number indicating the GPU-timestamp …","[0, 0, 0, 0]","Vertex data is a list of triangles. Each set of 3 vertices …","Vertex data is a triangle strip. Each set of three …","Allow a buffer to be a BufferBindingType::Uniform inside a …","Allows shaders to index uniform buffer and storage texture …","With this feature not present, there are the following …","Supports buffers to combine BufferUsages::INDEX with …","Sampling returns unsigned integers.","Indices are 16 bit unsigned integers.","Two unsigned shorts (u16). vec2<u32> in shaders.","Four unsigned shorts (u16). vec4<u32> in shaders.","Indices are 32 bit unsigned integers.","One unsigned int (u32). u32 in shaders.","Two unsigned ints (u32). vec2<u32> in shaders.","Three unsigned ints (u32). vec3<u32> in shaders.","Four unsigned ints (u32). vec4<u32> in shaders.","Two unsigned bytes (u8). vec2<u32> in shaders.","Four unsigned bytes (u8). vec4<u32> in shaders.","Type for the callback of uncaptured error handler","A buffer for uniform values.","Triggered by driver","8 bit integer RGBA, [0, 255] converted to/from …","Two unsigned shorts (u16). [0, 65535] converted to float […","Four unsigned shorts (u16). [0, 65535] converted to float […","Two unsigned bytes (u8). [0, 255] converted to float [0, 1]…","Four unsigned bytes (u8). [0, 255] converted to float [0, 1…","8 bit integer RGBA, Srgb-color [0, 255] converted to/from …","Enable validation, if possible.","Binding is visible from the vertex shader of a render …","Allow a buffer to be the vertex buffer in a draw operation.","If this is true, use of @builtin(vertex_index) and …","Enables using 64-bit types for vertex attributes.","Binding is visible from the vertex and fragment shaders of …","Amount of times the vertex shader is ran. Accounts for the …","Supports storage buffers in vertex shaders.","Vertex buffer strides have to be aligned to this number.","Enables bindings of writable storage buffers and textures …","Supports specifying which view format values are allowed …","Supported on Windows, Linux/Android, and macOS/iOS via …","Catch only validation errors.","Validation error, signifying a bug in code or data","Request an ES 3.0 context.","Request an ES 3.1 context.","Request an ES 3.2 context.","Vertex data is advanced every vertex.","Vertex inputs (attributes) to shaders.","Describes how the vertex buffer is interpreted.","Vertex Format for a VertexAttribute (input).","Describes the vertex processing in a render pipeline.","Whether a vertex buffer is indexed by vertex or by …","Virtual / Hosted.","Vulkan API","Supports all the texture usages described in WebGPU. If …","","Same as WaitForSubmissionIndex but waits for the most …","Same as WaitForSubmissionIndex but waits for the most …","On wgpu-core based backends, block until the given …","On wgpu-core based backends, block until the given …","","","","WGSL module as a string slice.","Window handle producer.","Super trait for window handles as used in SurfaceTarget.","Map only for writing","The texture can only be written in the shader and it:","Zero origin.","Zero origin.","0.0","Set stencil value to zero.","On the Metal backend, this is equivalent to …","Alpha component of the color","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Adds an Srgb suffix to the given texture format, if the …","How to deal with out of bounds accesses in the u (i.e. x) …","How to deal with out of bounds accesses in the v (i.e. y) …","How to deal with out of bounds accesses in the w (i.e. z) …","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Mask of all features that are only available when …","Mask of all features which are part of the upstream WebGPU …","Valid bits for TextureDescriptor::Usage provided for …","Alpha equation.","Specifies how the alpha channel of the textures should be …","List of supported alpha modes to use with the given …","When enabled, produces another sample mask per pixel based …","Must be at least 1. If this is not 1, all filter modes …","Returns true if any backend feature is enabled for the …","Layer count. If Some(count), base_array_layer + count must …","Layer count. If Some(count), base_array_layer + count must …","The stride, in bytes, between elements of this buffer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the binding view of the entire buffer.","Return the binding view of the entire buffer.","Returns the inner hal Surface using a callback. The hal …","Return a reference to a specific backend instance, if …","Apply a callback to this Adapter’s underlying backend …","Apply a callback to this Device’s underlying backend …","Returns the inner hal Texture using a callback. The hal …","Make an ImageCopyTexture representing the whole texture.","","","","The copy aspect.","The copy aspect.","Aspect of the texture. Color textures must be …","The copy aspect.","The copy aspect.","Aspect of the texture. Color textures must be …","Returns the aspect-specific format of the original format","The list of attributes which comprise a single vertex.","Blue component of the color","Back face mode.","Backend used for device","Which Backends to enable.","Base array layer.","Base array layer.","Base mip level.","Base mip level.","Begins recording of a compute pass.","Start a occlusion query on this render pass. It can be …","Start a pipeline statistics query on this render pass. It …","Start a pipeline statistics query on this render pass. It …","Begins recording of a render pass.","The index of the query set at which a start timestamp of …","The index of the query set at which a start timestamp of …","Depth bias state.","Bind groups that this pipeline uses. The first entry will …","Slot for which binding provides resource. Corresponds to …","Binding index. Must match shader index and be unique …","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","Get the underlying bits value.","","Get the underlying bits value.","","","Get the underlying bits value.","","Get the underlying bits value.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The blending that is used for this pipeline.","The number of bytes one texel block occupies during an …","Returns the dimension of a block of texels.","The number of bytes one texel block occupies during an …","Border color to use when address_mode is …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The buffer to be copied to/from.","The buffer to bind.","The buffer to be copied to/from.","The format of any vertex buffers used with this pipeline.","Bytes per “row” in an image.","Compares every limits within self is within the limits …","Compares every limits within self is within the limits …","Depth bias clamp value (absolute).","Clears buffer to zero.","Clears texture to zero.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Color equation.","The color attachments of the render pass.","The formats of the color attachments that this render …","The color space of this texture.","The color space of this texture.","","","","","If this is enabled, this is a comparison sampler using the …","Comparison function that determines if the fail_op or …","Surface that is required to be presentable with the …","Surface that is required to be presentable with the …","Get the texture dimension required of this texture view …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","All flags that indicate if the backend is WebGPU compliant","Returns the number of components this format has.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the number of components this format has taking …","Initializes Surface for presentation.","If set to true, the primitives are rendered with …","Constant depth biasing factor, in basic units of the depth …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Copy data from one buffer to another.","Copy data from a buffer to a texture.","Copy data from a texture to a buffer.","Copy data from one texture to another.","Total count of queries the set contains. Must not be zero. …","The number of samples calculated per pixel (for MSAA). For …","If this value is Some, indicates this entry is an array. …","Converts a wgpu-hal ExposedAdapter to a wgpu Adapter.","Creates a new BindGroup.","Creates a BindGroupLayout.","Creates a Buffer.","Creates a Buffer from a wgpu-hal Buffer.","","Creates an empty CommandEncoder.","Creates a ComputePipeline.","Create a wgpu Device and Queue from a wgpu-hal OpenDevice","Creates a PipelineLayout.","Creates a new QuerySet.","Creates an empty RenderBundleEncoder.","Creates a RenderPipeline.","Creates a new Sampler.","Creates a shader module from either SPIR-V or WGSL source …","Creates a shader module from SPIR-V binary directly.","Creates a shader module from either SPIR-V or WGSL source …","Creates a new surface targeting a given …","Creates a new surface targeting a given …","Creates a new Texture.","Creates a Texture from a wgpu-hal Texture.","","Creates a view of this texture.","The face culling mode.","Enable debugging and validation flags.","","","","","","","","","","","","","","Creates a new instance of wgpu with default options.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Comparison function used to compare depth values in the …","Operation that is performed when depth test fails but …","What operations will be performed on the depth part of the …","Returns the depth or layer count of this Texture.","The depth of the extent or the number of array layers","If the depth aspect of the depth stencil attachment is …","The effect of draw calls on the depth and stencil aspects …","Information about the depth attachment that this render …","The depth and stencil attachment of the render pass, if …","If disabled, depth will not be written to.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Desired maximum number of frames that the presentation …","Destroy this device.","Destroy the associated native resources as soon as …","Destroy the associated native resources as soon as …","Backend-specific device ID of the adapter","Type of device","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Returns the dimension of this Texture.","Dimensions of the texture.","The dimension of the texture view. For 1D textures, this …","Dispatches compute work operations.","Dispatches compute work operations, based on the contents …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","These default limits are guaranteed to be compatible with …","These default limits are guaranteed to be compatible with …","","Draws primitives from the active vertex buffer(s).","Draws primitives from the active vertex buffer(s).","","Draws indexed primitives using the active index buffer and …","","Draws indexed primitives using the active index buffer and …","","Draws indexed primitives using the active index buffer and …","","Draws indexed primitives using the active index buffer and …","","","Draws primitives from the active vertex buffer(s) based on …","Draws primitives from the active vertex buffer(s) based on …","","Driver name","Driver info","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multiplier for the destination, which is stored in the …","Which DX12 shader compiler to use.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","End the occlusion query on this render pass. It can be …","The index of the query set at which an end timestamp of …","The index of the query set at which an end timestamp of …","End the pipeline statistics query on this render pass. It …","End the pipeline statistics query on this render pass. It …","The resources to bind to this bind group.","Array of entries in this BindGroupLayout","The name of the entry point in the compiled shader. There …","The name of the entry point in the compiled shader. There …","The name of the entry point in the compiled shader. There …","Retrieves all available Adapters that match the given …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Execute a render bundle, which is a set of pre-recorded …","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Operation that is preformed when stencil test fails.","The features which can be used to create devices on this …","The features which can be used on this device.","Finishes recording and returns a CommandBuffer that can be …","Finishes recording and returns a RenderBundle that can be …","Combined boolean flags.","Additional property flags for the format.","Flags to tune the behavior of the instance.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Indicates that only a fallback adapter can be returned. …","Indicates that only a fallback adapter can be returned. …","Returns the format of this Texture.","The texture format of the swap chain. The only formats …","Format of the texture.","The TextureFormat of the image that this pipeline will …","Format of the texture view. Either must be the same as the …","Format of the depth/stencil buffer, must be special depth …","Format of the input","Format of the attachment.","List of supported formats to use with the given adapter. …","The compiled fragment stage, its entry point, and the …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value exactly.","","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","","Convert from a bits value exactly.","","Convert from a bits value exactly.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Infer good defaults from the build type","Create an new instance of wgpu from a wgpu-core instance.","Create an new instance of wgpu from a wgpu-hal instance.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Returns the texture aspect for a given plane.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a SurfaceTargetUnsafe::RawHandle from a window.","Front face mode.","The face to consider the front for the purpose of culling …","Green component of the color","Generates memory report.","Get an object representing the bind group layout at a …","Get an object representing the bind group layout at a …","Returns the capabilities of the surface when used with the …","Returns the next texture to be presented by the swapchain …","Return a default SurfaceConfiguration from width and …","Get info about the adapter itself.","Get info about the adapter itself.","Synchronously and immediately map a buffer for reading. If …","Synchronously and immediately map a buffer for writing. If …","Generates a timestamp using the clock used by the …","Returns the features supported for a given texture format …","Gets the amount of nanoseconds each tick of a timestamp …","Which OpenGL ES 3 minor version to request.","Returns a globally-unique identifier for this Surface.","Returns a globally-unique identifier for this Adapter.","Returns a globally-unique identifier for this Device.","Returns a globally-unique identifier for this Buffer.","Returns a globally-unique identifier for this Texture.","Returns a globally-unique identifier for this TextureView.","Returns a globally-unique identifier for this Sampler.","Returns a globally-unique identifier for this …","Returns a globally-unique identifier for this BindGroup.","Returns a globally-unique identifier for this ShaderModule.","Returns a globally-unique identifier for this …","Returns a globally-unique identifier for this …","Returns a globally-unique identifier for this …","Returns a globally-unique identifier for this RenderBundle.","Returns a globally-unique identifier for this QuerySet.","Returns a globally-unique identifier for this Queue.","Returns the format features guaranteed by the WebGPU spec.","Returns true if the format has a color aspect","Returns true if the format has a depth aspect","Returns true for buffer bindings with dynamic offset …","Returns true if the format has a stencil aspect","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the height of this Texture.","Height of the swap chain. Must be the same size as the …","Height of the extent","Macro to load raw SPIR-V data statically, for use with …","Macro to load a WGSL module statically.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Inserts debug marker.","Inserts debug marker.","Inserts debug marker.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Returns true if the format is a combined depth-stencil …","Returns true for compressed formats.","Returns true if the depth testing is enabled.","Returns true if the state doesn’t mutate the depth …","Returns true if self is a depth or stencil component of …","Returns true if the format is a depth and/or stencil format","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Returns true if the stencil test is enabled.","Returns true if the depth biasing is enabled.","Returns if the given range represents a full resource, …","Returns true if this timestamp is the invalid timestamp.","Returns true if the format is a multi-planar format","Returns true if the result is Self::SubmissionQueueEmpty`.","Returns true if the state doesn’t mutate the target …","Returns true if the state doesn’t mutate either depth or …","Returns true if the face state doesn’t mutate the target …","Returns true for srgb formats.","Returns true if the state doesn’t mutate the stencil.","Returns true for strip topologies.","Returns whether this adapter may present to the passed …","This maintain represents a wait of some kind.","Returns true if the underlying platform offers complete …","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Debug label for the device.","Debug label of a buffer. This will show up in graphics …","Debug label for the command encoder. This will show up in …","Debug label of the render bundle encoder. This will show …","Debug label of the texture. This will show up in graphics …","Debug label for the query set.","Debug label of the shader module. This will show up in …","Debug label of the shader module. This will show up in …","Debug label of the texture view. This will show up in …","Debug label of the pipeline layout. This will show up in …","Debug label of the sampler. This will show up in graphics …","Debug label of the bind group. This will show up in …","Debug label of the render pass. This will show up in …","Debug label of the pipeline. This will show up in graphics …","Debug label of the compute pass. This will show up in …","Debug label of the pipeline. This will show up in graphics …","Debug label of the bind group layout. This will show up in …","Debug label of the render bundle encoder. This will show …","Debug label of this command buffer.","Returns the layer range of a subresource range describes …","The layout of the texture data in this buffer.","The BindGroupLayout that corresponds to this bind group.","The layout of bind groups for this pipeline.","The layout of bind groups for this pipeline.","The layout of the texture data in this buffer.","The best limits which can be used to create devices on …","The limits which can be used on this device.","Additional limits","How data should be read through this attachment.","Maximum level of detail (i.e. mip level) to use","Minimum level of detail (i.e. mip level) to use","How to filter the texture when it needs to be magnified …","Map the buffer. Buffer is ready to map once the callback …","Map on the wait index type.","Takes a closure and maps the label of the command buffer …","Allows a buffer to be mapped immediately after they are …","Bitmask that restricts the samples of a pixel modified by …","Amount of bind groups that can be attached to a pipeline …","Maximum binding index allowed in create_bind_group_layout. …","A limit above which buffer allocations are guaranteed to …","Maximum value of the product of the workgroup_size …","The maximum value of the workgroup_size X dimension for a …","The maximum value of the workgroup_size Y dimension for a …","The maximum value of the workgroup_size Z dimension for a …","Maximum number of bytes used for workgroup memory in a …","The maximum value for each dimension of a …","Amount of storage buffer bindings that can be dynamic in a …","Amount of uniform buffer bindings that can be dynamic in a …","Maximum allowed number of components (scalars) of input or …","Calculates the maximum possible count of mipmaps.","Maximum number of live non-sampler bindings.","Amount of storage available for push constants in bytes. …","Amount of sampled textures visible in a single shader …","Amount of samplers visible in a single shader stage. …","Maximum size in bytes of a binding to a storage buffer. …","Amount of storage buffers visible in a single shader …","Amount of storage textures visible in a single shader …","Maximum allowed value for the size.depth_or_array_layers …","Maximum allowed value for the size.width of a texture …","Maximum allowed value for the size.width and size.height …","Maximum allowed value for the size.width, size.height, and …","Maximum size in bytes of a binding to a uniform buffer. …","Amount of uniform buffers visible in a single shader …","Maximum length of VertexBufferLayout::attributes, summed …","Maximum value for VertexBufferLayout::array_stride when …","Maximum length of VertexState::buffers when creating a …","How to filter the texture when it needs to be minified …","Required BufferBindingType::Storage alignment for …","Required BufferBindingType::Uniform alignment for …","The target mip level of the texture.","The target mip level of the texture.","The target mip level of the texture.","The target mip level of the texture.","Returns the mip_level_count of this Texture.","Mip count of texture. For a texture with no extra mips, …","Mip level count. If Some(count), base_mip_level + count …","Mip level count. If Some(count), base_mip_level + count …","Calculates the extent at a given mip level. Does not …","Returns the mip level range of a subresource range …","How to filter between mip map levels","The compiled shader module for this stage.","The compiled shader module for this stage.","The compiled shader module for this stage.","Dispatches multiple draw calls from the active index …","Dispatches multiple draw calls from the active index …","Dispatches multiple draw calls from the active vertex …","Dispatches multiple draw calls from the active vertex …","The multi-sampling properties of the pipeline.","If the pipeline will be used with a multiview render pass, …","If this render bundle will rendering to multiple array …","Adapter name","Returns true if the stencil state uses the reference value …","Returns true if the face state uses the reference value …","Returns true if the comparison depends on the reference …","Create an new instance of wgpu.","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","Defines where the occlusion query results will be stored …","Base offset of the buffer, in bytes.","Byte offset of the start of the input","Offset into the buffer that is the start of the texture. …","Registers a callback when the previous call to submit …","Set a callback for errors that are not handled in error …","The binary operation applied to the source and destination,","What operations will be performed on this color attachment.","The base texel of the texture in the selected mip_level. …","The base texel of the texture in the selected mip_level.","The base texel of the texture in the selected mip_level. …","The base texel of the texture in the selected mip_level.","Panics if the MaintainResult is not Ok.","","","","","","Operation that is performed when stencil test success.","Calculates the physical size backing a texture of the given","Returns the number of planes a multi-planar format has.","Check for resource cleanups and mapping callbacks. Will …","Polls all devices.","Controls the way each polygon is rasterized. Can be either …","Stops command recording and creates debug group.","Stops command recording and creates debug group.","Stops command recording and creates debug group.","Pop an error scope.","Power preference for the adapter.","Power preference for the adapter.","The premultiplication of this texture","The premultiplication of this texture","Schedule this texture to be presented on the owning …","Presentation mode of the swap chain. Fifo is the only mode …","List of supported presentation modes to use with the given …","The properties of the pipeline at the primitive assembly …","Set of push constant ranges this pipeline uses. Each …","Start record commands and group it into debug marker group.","Start record commands and group it into debug marker group.","Start record commands and group it into debug marker group.","Push an error scope.","The query set to write to.","The query set to write to.","Red component of the color","Range in push constant memory to use for the stage. Must …","Stencil values are AND’d with this mask when reading and …","Returns true if the blend factor references the second …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Strips the Srgb suffix from the given texture format.","Retrieves an Adapter which matches the given …","Requests a connection to a physical device, creating a …","Returns the required features (if any) in order to use the …","Specifies the features that are required by the device …","Specifies the limits that are required by the device …","Resolves a query set, writing the results into the …","The view that will receive the resolved output if …","Resource to attach to the binding","“Rows” that make up a single “image”.","Returns the sample_count of this Texture.","Sample count of texture. If this is not 1, texture must …","Sample count this render bundle is capable of rendering …","Sample count supported by a given texture format.","Returns the sample type compatible with this format and …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Sets the active bind group for a given bind group index. …","","Sets the active bind group for a given bind group index. …","Sets the active bind group for a given bind group index. …","","Sets the blend color as used by some of the blending modes.","Set a DeviceLostCallback on this device.","","Sets the active index buffer.","","Sets the active index buffer.","","Sets the active render pipeline.","Sets the active compute pipeline.","Sets the active render pipeline.","","Set push constant data for subsequent draw calls.","","Set push constant data for subsequent dispatch calls.","","Set push constant data.","Sets the scissor rectangle used during the rasterization …","Sets the stencil reference.","","Assign a vertex buffer to a slot.","","Assign a vertex buffer to a slot.","Sets the viewport used during the rasterization stage to …","Location for this input. Must match the location in the …","Which collections of features shaders support. Defined in …","Returns the length of the buffer allocation in bytes.","Returns the size of this Texture.","Returns the byte size of the format.","Size of a buffer, in bytes.","Size of the texture. All components must be greater than …","Size of the binding in bytes, or None for using the rest …","Returns the size multiple requirement for a texture using …","Use only a portion of this Buffer for a given operation. …","Slope depth biasing factor.","","","","Source code for the shader.","Binary SPIR-V data, in 4-byte words.","Multiplier for the source, which is produced by the …","Stage push constant range is visible from. Each stage can …","Starts frame capture.","Stencil state.","What operations will be performed on the stencil part of …","If the stencil aspect of the depth stencil attachment is …","How often this vertex buffer is “stepped” forward.","Stops frame capture.","Whether data will be written to through this attachment.","When drawing strip topologies with indices, this is the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Submits a series of finished command buffers for execution.","true if the acquired buffer can still be used for …","A Vec of supported sample counts.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The color state of the render targets.","The texture to be copied to/from.","The texture to be copied to/from.","Accessible view of the frame.","The texture to be copied to/from.","The texture to be copied to/from.","Defines which timestamp values will be written for this …","Defines which timestamp values will be written for this …","Removes the third dimension from this origin","Adds the third dimension to this origin","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the string name of the backend.","","","","","","Adds color space and premultiplied alpha information to …","Removes the colorspace information from the type.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The primitive topology used to interpret vertices.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Kind of query that this query set should contain.","The type of the binding","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If set to true, the polygon depth is not clipped to 0-1 …","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Flushes any pending write operations and unmaps the buffer …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the allowed usages for this Buffer.","Returns the allowed usages of this Texture.","The usage of the swap chain. The only supported usage is …","Usages of a buffer. If the buffer is used in any way that …","Allowed usages of the texture. If used in other ways, the …","Bitflag of supported texture usages for the surface to use …","Returns true if the state relies on the constant color, …","Modify the current limits to use the buffer alignment …","Modify the current limits to use the resolution limits of …","Utility structures and functions that are built on top of …","Backend-specific vendor ID of the adapter","The compiled vertex stage, its entry point, and the input …","Macro to produce an array of VertexAttribute.","The view to use as an attachment.","The view to use as an attachment.","Specifies what view formats will be allowed when calling …","Specifies what view formats will be allowed when calling …","Which shader stages can see this binding.","Construct a wait variant","Construct a WaitForSubmissionIndex variant","Returns the width of this Texture.","Width of the swap chain. Must be the same size as the …","Width of the extent","Returns this set of flags, affected by environment …","Schedule a data write into buffer starting at offset.","Schedule a data write into buffer starting at offset via …","Mask which enables/disables writes to different …","Stencil values are AND’d with this mask when writing to …","Schedule a write of some data into a texture.","Issue a timestamp command at this point in the queue. The …","Issue a timestamp command at this point in the queue. The …","Issue a timestamp command at this point in the queue. The …","","X position of the origin","","Y position of the origin","Z position of the origin","Allowed access to this texture.","Format of the texture.","Indicates that the binding has a dynamic offset.","The minimum size for a BufferBinding matching this entry, …","True if the texture has a sample count greater than 1. If …","Sample type of the texture binding.","Sub-type of the buffer binding.","Dimension of the texture view that is going to be sampled.","Dimension of the texture view that is going to be sampled.","If true, the buffer can only be read in the shader, and it:","Path to the dxcompiler.dll file, or path to the directory …","Path to the dxil.dll file, or path to the directory …","Description of the validation error.","Lower level source of the error.","Lower level source of the error.","Raw display handle, underlying display must outlive the …","Raw display handle, underlying window must outlive the …","compressed block dimensions","ASTC RGBA channel","If this is false, the texture can’t be sampled with a …","","","","","No value.","","Some value of type T.","","","","","","","","","","","","","","","","","Dispatch on an Id’s backend to a backend-generic method.","","","","Allocating resource ids, and tracking the resources they …","","","","","Presentation.","","","","","A Arc of a HalSurface<A>, for any backend A.","","","","","","","","","","","","","If self is an Arc<HalSurface<A>>, return a reference to the","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Return an AnySurface that holds an owning Arc to HalSurface…","If self is an Arc<HalSurface<A>>, returns that.","","","","","","","","","","","","","","","Describes a group of bindings and the resources to be …","","Bindable resource and the slot to bind it to.","Bind group layout.","Describes a BindGroupLayout.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Describes a pipeline layout.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Bind groups that this pipeline uses. The first entry will …","Slot for which binding provides resource. Corresponds to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The resources to bind to this bind group.","Array of entries in this BindGroupLayout","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Debug label of the bind group.","Debug label of the bind group layout.","Debug label of the pipeine layout.","The BindGroupLayout that corresponds to this bind group.","","","Set of push constant ranges this pipeline uses. Each …","Resource to attach to the binding","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Describes an attachment location in words.","","","","","","","","","","","","","","","","","","","Clear the output attachment with the clear color. Clearing …","Error encountered while attempting a clear.","","","","","","","","","","Error encountered when performing a compute pass.","Error encountered when performing a compute pass.","Describes the writing of timestamp values in a compute …","","","Error encountered while attempting to do a copy on a …","","","","","Error type returned from RenderBundleEncoder::new if the …","","","","","","","","","","Discards the content of the render target.","","","","","","Error validating a draw call.","","","","","","","","","Error type returned from RenderBundleEncoder::new if the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Do not clear output attachment.","Operation to perform to the output attachment at the start …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Describes an individual channel within a render pass, such …","","","","","","Error encountered when dealing with queries","","","","","Error encountered while trying to use queries","","","","","Describes a RenderBundleEncoder.","Error encountered when finishing recording a render bundle.","","Error encountered when encoding a render command. This is …","","Describes a color attachment to a render pass.","Describes a depth/stencil attachment to a render pass.","Describes the attachments of a render pass.","Error encountered when performing a render pass.","Error encountered when performing a render pass.","Location to write a timestamp to (beginning or end of the …","Describes the writing of timestamp values in a render pass.","","Error encountered while trying to resolve a query.","","","","","","","","","","","","","","Store the result of the renderpass.","Operation to perform to the output attachment at the end …","","","","","","","","Error encountered while attempting a data transfer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The copy aspect.","The copy aspect.","The index of the query set at which a start timestamp of …","The index of the query set at which a start timestamp of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The buffer to be copied to/from.","","What operations will be performed on this color attachment.","If load_op is LoadOp::Clear, the attachment will be …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The color attachments of the render pass.","The formats of the color attachments that this render …","The color space of this texture.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","What operations will be performed on the depth part of the …","Information about the depth attachment that this render …","The depth and stencil attachment of the render pass, if …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The index of the query set at which an end timestamp of …","The index of the query set at which an end timestamp of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Debug label of the render bundle encoder. This will show …","Debug label of the render bundle encoder.","","","","The layout of the texture data in this buffer.","Operation to perform to the output attachment at the start …","The target mip level of the texture.","The target mip level of the texture.","If this render bundle will rendering to multiple array …","","","","Defines where the occlusion query results will be stored …","The base texel of the texture in the selected mip_level. …","The base texel of the texture in the selected mip_level.","","","","The premultiplication of this texture","","The query set to write the timestamps to.","The query set to write the timestamp to.","If true, the relevant channel is not changed by a …","","The view that will receive the resolved output if …","Sample count this render bundle is capable of rendering to.","","","","","","","","","","","","","","","","","","","","What operations will be performed on the stencil part of …","Operation to perform to the output attachment at the end …","","The texture to be copied to/from.","The texture to be copied to/from.","Defines where and when timestamp values will be written …","Defines where and when timestamp values will be written …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The view to use as an attachment.","The view to use as an attachment.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","Safety","Safety","","","Safety","","","","","","Safety","","Safety","Safety","","Safety","","","","","","","","","","Safety","Safety","","","","","","Safety","Safety","","","","Safety","","","","","","","Structure describing a logical device. Some members are …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Debug label for the device.","","","Specifies the features that are required by the device …","Specifies the limits that are required by the device …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A pointer to a Device<A>, for any backend A.","","","","","","","","","","","","If self is an Arc<Device<A>>, return a clone of that.","If self is an Arc<Device<A>>, return a reference to the …","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Return an AnyDevice that holds an owning Arc pointer to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","A texture or buffer to be freed soon.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Structure describing a logical device. Some members are …","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get an ID of one of the bind group layouts. The ID adds a …","","Safety","Assign id_in an error with the given label.","Safety","Safety","","Assign id_in an error with the given label.","Safety","","","","","Safety","","","","","","","","","","","","Safety","","","","","","Safety","","","","Check device_id for freeable resources and completed …","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Safety","Safety","","","","","","","","","Safety","Safety","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","Poll all devices on all backends.","","","","","","","","","","","","","","","","Get an ID of one of the bind group layouts. The ID adds a …","","","","","","","Safety","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","All the resources for a particular backend in a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An identifier for a wgpu object.","","","","","","","","","","","","","","Trait carrying methods for direct Id access.","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Safety","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","A factory that can build IdentityManagers for all resource …","A type that can produce IdentityManager filters for ids of …","","A global identity handler factory based on IdentityManager.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","Create an IdentityManager<I> implementation that can …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Error when requesting a device from the adaptor","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Surface that is required to be presentable with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Indicates that only a fallback adapter can be returned. …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Generates a set of backends from a comma separated list of …","Power preference for the adapter.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Width of abstract types, in bytes.","","Abstract floating-point type.","","WGSL abstract integer type.","","Opaque object representing an acceleration structure of …","Array access with a computed index.","Access the same types as Access, plus Struct with a known …","","","","","Addressing space of variables.","","","","","An arena holding some kind of component (e.g., type, …","Homogenous list of elements.","Get the length of an array. The expression must resolve to …","Size of an array.","Cast a simple type to another kind.","","","","","","Atomic scalar.","Atomic function.","","Function on an atomic value.","Result of an atomic operation.","","","Width of a boolean type, in bytes.","Memory barrier flags.","Synchronize invocations within the work group. The Barrier …","","","","2D vector","","Apply a binary operator.","Operation that can be applied on two values.","Describes how an input/output variable is to be bound.","Array of bindings.","","A code block is a vector of statements, with maybe a …","A block containing more statements, to be executed …","Boolean type.","","Exits the innermost enclosing Loop or Switch.","Built-in inputs and outputs.","Built-in shader variable.","","","Number of bytes per scalar.","Calls a function.","Result of calling another function.","","Interpolate the value at the center of the pixel.","Interpolate the value at a point that lies within all …","","","","Composite expression.","","Enables adjusting depth without disabling early Z.","Constant value.","The array size is constant.","Constant value.","Skips to the continuing block of the innermost enclosing …","","","","","","","Cube map","","1D image","2D image","3D image","","","Depth comparison image.","Compute the derivative on an axis.","Axis on which to compute a derivative.","Hint at which precision to compute a derivative.","","","","","The array size can change at runtime.","Early fragment tests.","Emit a range of expressions, visible to all statements …","The main function for a pipeline stage.","","","","","","","","An expression that can be evaluated to obtain a value.","","May not be NaN or infinity.","","May not be NaN or infinity.","","","Hash map that is faster but not resilient to DoS attacks.","Hash set that is faster but not resilient to DoS attacks.","Insertion-order-preserving hash map (IndexMap<K, V>), but …","Insertion-order-preserving hash set (IndexSet<K>), but …","","","","Indicates that no interpolation will be performed.","Floating point type.","","","","","","","","","A function defined in the module.","Function locals.","A function argument.","Reference a function parameter, by its index.","A function result.","","Variable defined at module level.","Reference a global variable.","","","Shader may rewrite depth only with a value greater than …","","A strongly typed reference to an arena item.","Opaque handles, such as samplers and images.","","","","","","Conditionally executes one of two blocks, based on the …","Possibly multidimensional array of texels.","Sub-class of the image type.","The number of dimensions an image has.","Load a texel from an image.","Type of an image query.","Query information from an image.","Sample a point from a sampled or a depth image.","Stores a texel value to an image.","","","Initialize the RayQuery object.","","","The interpolation qualifier of a binding or struct field.","","","","","Aborts the current shader execution.","Storage can be used as a source for load ops.","","","","Shader may rewrite depth smaller than one that would have …","","Indicates that linear, non-perspective, correct …","","Literal.","Load a value indirectly.","","","Variable defined at function level.","Reference a local variable.","Indexed location.","","","","","","Executes a block repeatedly.","Call a math function","Built-in shader function for math.","Matrix of numbers.","","","","","","","","Shader module.","Equivalent of the WGSL’s % operator or SPIR-V’s OpFRem","","","","","","","Get the number of array layers.","Get the number of mipmap levels.","Get the number of samples.","","","","","","","","","The value will be interpolated in a perspective-correct …","","","Pointer to another type.","","","Return types predeclared for the frexp, modf, and …","","Private data, per invocation, mutable.","Start or continue the query given by the statement’s …","Push constants.","4D vector","","","","","","","","","","","","","","A strongly typed range of handles.","Locally used handle for ray queries.","","An operation that a RayQuery statement applies to its query…","Return an intersection found by query.","Result of a Proceed RayQuery statement.","","","Call a relational function.","Built-in shader function for testing relation between …","Pipeline binding information for global resources.","Returns from the function (possibly with a value).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Barrier affects all AddressSpace::Storage accesses.","Storage can be used as a target for store ops.","Interpolate the value at each sample location. In …","","Sampling modifier to control the level of detail.","","Regular sampled image.","Can be used to sample values from images.","The sampling qualifiers of a binding or struct field.","","Characteristics of a scalar type.","Number of integral or floating-point kind.","Primitive type for a scalar.","Select between two values based on a condition.","Stage of the programmable pipeline.","","Right shift carries the sign of signed integers only.","","","","Signed integer type.","Get the size at the specified level.","","A human-readable representation for a span, tailored for …","A source code span, used for error reporting.","A source code span together with “context”, a …","Set of special types that can be optionally generated by …","Splat scalar into a vector.","","Instructions which make up an executable block.","","Storage buffer data, potentially mutable.","Storage image.","Flags describing an image.","Image storage format.","Stores a value at an address.","User-defined structure.","Member of a user-defined structure.","","","Conditionally executes one of multiple blocks, based on …","A case for a switch statement.","The value of the switch case.","Vector swizzle.","Component selection for a vector swizzle.","","","","","3D vector","","A data type declared in the module.","Enum with additional information, depending on the kind of …","","","","","Unsigned integer type.","Apply an unary operator.","Operation that can be applied on a single value.","Shader may not rewrite depth value.","Uniform buffer data.","An arena whose elements are guaranteed to be unique.","","","","","","Pointer to a scalar or vector.","Vector of numbers.","Number of components in a vector.","","","","","Barrier affects all AddressSpace::WorkGroup accesses.","","Wrapper class for Error, augmenting it with a list of …","Workgroup shared data, mutable.","","","Load uniformly from a uniform pointer in the workgroup …","Result of a WorkGroupUniformLoad statement.","","","","","","","","Zero value of a type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Convert inner error into another type. Joins span …","Adds a new value to the arena, returning a typed handle.","","Apply the usual default interpolation for ty to binding.","","Information about function argument.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Find the common type of self and other under WGSL’s …","Return true if automatic conversions will covert self to …","Backend functions that export shader Modules into binary …","For I/O structs, defines the binding.","Binding number within the group.","For resources, defines the binding point.","For entry points, an argument has to have a binding unless …","For entry points, the result has to have a binding unless …","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","Get the underlying bits value.","","Get the underlying bits value.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","Body of the case.","Block of instructions comprising the body of the function.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the canonical form of self, or None if it’s …","Assert that handle is valid for this arena.","Assert that handle is valid for this arena.","Assert that range is valid for this arena.","Clears the arena keeping all allocations","Clears the arena, keeping all allocations.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Constant expressions and override expressions used by this …","Arena for the constants defined in this module.","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Early depth test for fragment stages.","Emits a summary of the error to standard error stream.","Emits a summary of the error to standard error stream.","Emits a summary of the error to a string.","Emits a summary of the error to a string.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Entry points.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compare self and rhs as types.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Expressions used inside this function.","","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","","If true, the control flow continues to the next case in …","Fetch a handle to an existing type.","Adds a value with a custom check for uniqueness: returns a …","Adds a value with a check for uniqueness, where the check …","return the first and last handles included in self.","Construct a float Scalar with the given width.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","","Convert from a bits value exactly.","Convert from a bits value exactly.","","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Construct a Range that covers the zero-based indices in …","Frontend parsers that consume binary and text shaders and …","The entrance function.","Arena for the functions defined in this module.","Populate this module’s SpecialTypes::predeclared_types …","Populate this module’s SpecialTypes::ray_desc type.","Populate this module’s SpecialTypes::ray_intersection …","Return this arena’s handle for value, if present.","Return this arena’s value at handle, if that is a valid …","Get a mutable reference to an element in the arena.","","Return the span associated with handle.","Arena for the global variables defined in this module.","The bind group index.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the zero-based index of this handle.","","","","","","Return the length of a subscriptable type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The value of the constant.","Initial value for this variable.","Initial value for this variable.","Inner structure that depends on the kind of the type.","Insert a new value into the arena.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extracts the inner vector.","Reverse of Self::new, discards span information and …","","","","","Convert inner error using From.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","","Check whether self was defined or is a default/unknown span","Return true if this expression is a dynamic array index, …","","Returns true if the arena contains no elements.","Return true if the arena contains no elements.","","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","","","","Returns true if the statement directly terminates the …","Returns an iterator over the items stored in this arena, …","Returns an iterator over the items stored in this arena, …","Yield a set of contained flags values.","Yield a set of contained flags values.","Returns a iterator over the items stored in this arena, …","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Lists of reserved keywords for each shading language with …","How the value’s bits are to be interpreted.","Returns the current number of items stored in this arena.","Return the current number of items stored in this arena.","","Length in code units (in bytes) of the span.","1-based line number.","1-based column of the start of this span","Local variables defined and used in the function.","Return a SourceLocation for this span in the provided …","Return a SourceLocation for our first span, if we have one.","","The name of the type, if any.","","Name of the variable, if any.","Name of the variable, if any.","Name of the argument, if any.","Name of the function, if any.","Name of this entry point, visible externally.","Map of expressions that have associated variable names","Returns true if the expression is considered emitted at …","Create a new arena with no initial capacity allocated.","Create a new arena with no initial capacity allocated.","","Creates a new Span from a range of byte indices","Create a new WithSpan from an Error, containing no spans.","","Return a range enclosing handles first through last, …","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","0-based Offset in code units (in bytes) of the start of …","Offset from the beginning from the struct.","","Return the global variable being accessed by the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","Types for predeclared wgsl types instantiated on demand.","Module processing functionality.","","Get the range of handles from a particular number of …","Type for RayDesc.","Type for RayIntersection.","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Replace an old value with a new value.","The result of this function, if any.","Return the scalar type of self.","","","","","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Get the size of this type.","","How this variable is to be stored.","","","Iterator over stored SpanContexts.","Dictionary of special type handles.","","Shader stage.","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Modifies self to contain the smallest Span possible that …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Converts self to a range if the span is not unknown","","","Formats the type as it is written in wgsl.","Format a scalar kind+width as a type is written in wgsl.","","Formats the type as it is written in wgsl.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","Returns the smallest Span possible that contains all the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Type of the field.","","The type of this variable.","The type of this variable.","Type of the argument.","Type of the result.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Arena for the types defined in this module.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Returns a new Span starting at self and ending at other","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Shader validator.","Value, upon which the case is considered true.","","This size of the value in bytes.","","Add a SpanContext.","Add a new span with description.","Workgroup size for compute stages","","Return the zero-based index range covered by self.","","","","","","Indicates the 2nd input to the blender when dual-source …","","","","","","","","","The index into an arrayed image. If the arrayed flag in …","","","","","","","Boolean expression","If provided, converts to the specified byte width. …","","The coordinate of the texel we wish to load. This must be …","","","","","Source expression, which can only be a scalar or a vector.","","","If Some(), this operation is a gather operation on the …","","The image to load a texel from. This must have type Image. …","","","","Target scalar kind.","","","A level of detail, for mipmapped images.","Expression handle lives in const_expressions","","","","","","","","","A sample index, for multisampled Sampled and Depth images.","","","","","","The type of the result","","","","","Kind of values to sample.","Multi-sampled image.","Multi-sampled depth image.","If None, the base level is considered.","","","","","The acceleration structure within which this query should …","A struct of detailed parameters for the ray query.","","","","","","","","","","","","","Function to run on the atomic.","The specific operation we’re performing on query.","","","","Pointer to an atomic value.","This must be of type Pointer in the WorkGroup address space","The RayQuery object this statement operates on.","","AtomicResult expression representing this function’s …","The WorkGroupUniformLoadResult expression representing …","","","","","","Value to use in the function.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Ray flags, for a RayDesc’s flags field.","","","","","","Get a flags value with all known bits set.","","","","","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","The bitwise negation (!) of the bits in a flags value, …","","Whether all set bits in a source flags value are also set …","","","","The intersection of a source flags value with the …","","","Get a flags value with all bits unset.","","","","","The bitwise or (|) of the bits in each flags value.","","","","","","Returns the argument unchanged.","","Convert from a bits value.","Convert from a bits value exactly.","","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","","Backend for GLSL (OpenGL Shading Language).","Backend for HLSL (High-Level Shading Language).","","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Calls U::from(self).","","","","","","","","","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Backend for MSL (Metal Shading Language).","The bitwise negation (!) of the bits in a flags value, …","The intersection of a source flags value with the …","Call insert when value is true or remove when value is …","Backend for SPIR-V (Standard Portable Intermediate …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The bitwise exclusive-or (^) of the bits in two flags …","","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","The bitwise or (|) of the bits in two flags values.","","Flip output Y and extend Z from (0, 1) to (-1, 1).","","Buffer address space support.","Mapping between resources and bindings.","","","","","","","8 byte floats.","Supports ARB_shader_draw_parameters on the host, which …","Dual source blending","Arrays with a dynamic length.","core GLSL.","es GLSL.","The entry point couldn’t be found.","A GLSL compilation error.","","Emit PointSize output builtin to vertex shaders, which is …","More image formats.","Structure used to encode additions to GLSL that aren’t …","A error occurred while writing to the output.","Image load and early depth tests.","Image size query","Include unused global variables, constants and functions. …","Instance index","A image was used with multiple samplers, which isn’t …","","","","The specified Version doesn’t have all required Features.","AddressSpace::PushConstant was used more than once in the …","Interpolation and auxiliary qualifiers.","Configuration used in the Writer.","A subset of options meant to be changed per pipeline.","All information to bind a single uniform value to the …","Reflection info for texture mappings and uniforms.","","Sample ID.","List of supported core GLSL versions.","List of supported es GLSL versions.","Texture levels query","Texture samples query","Supports GL_EXT_texture_shadow_lod on the host, which …","Mapping between a texture and its sampler, if it exists.","A call was made to an unsupported external.","A scalar with an unsupported width was requested.","","A GLSL version.","The specified Version isn’t supported.","Writer responsible for all code generation.","Configuration flags for the Writer.","GL uniform name for the item. This name is the same as if …","","","","","","","","","","","","Get a flags value with all known bits set.","Get a flags value with all known bits set.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Map of resources association to binding locations.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","Get the underlying bits value.","","Get the underlying bits value.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all bits unset.","Get a flags value with all bits unset.","The name of the entry point.","","","","","","","","","","","","","","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","The index which can be used for dual source blending. This …","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","The location of the global. This corresponds to …","How many views to render to, if doing multiview rendering.","Creates a new Writer instance.","Create a new gles version","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The offset in the push constant memory block this uniform …","","List of push constant items in the shader.","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Handle to the associated sampler global variable, if it …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","The stage of the entry point.","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","Handle to the image global variable.","Mapping between texture names and variables/samplers.","","","","","","","","","","","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Type of the uniform. This will only ever be a scalar, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mapping between uniform variables and names.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","Mapping between names and attribute locations.","The GLSL version to be used.","Writes the Module as glsl to the output","Configuration flags for the Writer.","Should workgroup variables be zero initialized (by …","","","","","","","","","","Configuration used in the Writer.","Reflection info for entry point names.","A HLSL shader model version.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If the binding is an unsized binding array, this overrides …","Map of resources association to binding locations.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mapping of the entry point names.","","","","","","","","","","","","","","Don’t panic on missing bindings, instead generate any …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Bind target of the push constant buffer","","The hlsl shader model to be used","","","Add special constants to SV_VertexIndex and …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Should workgroup variables be zero initialized (by …","","","","","","","","","","","","","","","","","","A subset of options that are meant to be changed per …","","","Information about a translated module that is required for …","","","","","","","","","","","","","","","","","","","","","","","","","Allow BuiltIn::PointSize and inject it if doesn’t exist.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If the binding is an unsized binding array, this overrides …","","","","","","","","","","","","","","","","","","","Bounds checking policies.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mapping of the entry point names. Each item in the array …","","","","","","","","","","","","","","","","","","","","","","Don’t panic on missing bindings, instead generate …","Finishes writing and returns the output.","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Samplers to be inlined into the code.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","(Major, Minor) target version of the Metal Shading …","","Creates a new Writer instance.","Map of entry-point resources, indexed by entry point …","","","","","The slot of a buffer that contains an array of u32, one …","","Make it possible to link different stages via SPIRV-Cross.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Should workgroup variables be zero initialized (by …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Flip Y coordinate of BuiltIn::Position output.","","","","","","","","","","","","","","","","","","","","","Clamp BuiltIn::FragDepth output between 0 and 1.","","SPIR-V operand kind: Capability","","","","","","","","Include debug labels for everything.","","","","","","","","","","","","","","","","","","","","","","","","Emit PointSize output builtin to vertex shaders, which is …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Flags corresponding to the boolean(-ish) parameters to …","","","","","","","","","","","","","","","","Emit OpName for input/output locations. Contrary to spec, …","","","","","","","","","","","","","","","Via VK_KHR_zero_initialize_workgroup_memory or Vulkan 1.3","","","","","","","","","","Via assignments + barrier","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","Get a flags value with all known bits set.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If the binding is an unsized binding array, this overrides …","Map of resources to information about the binding.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","Get the underlying bits value.","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","How should generate code handle array, vector, matrix, or …","If given, the set of capabilities modules are allowed to …","","","","","","","","","","","","","","","","","","","","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","Get a flags value with all bits unset.","Get a flags value with all bits unset.","The name of the entry point.","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","","Configuration flags for the writer.","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","Return the set of capabilities the last module written …","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","(Major, Minor) target version of the SPIR-V.","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","The stage of the entry point.","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","","Dictates the way workgroup variables should be zero …","Remove unused types, expressions, and constants from module…","Structure responsible for managing variable lookups and …","A table of types for an Arena<Expression>.","","","Adds a new variable to the current scope.","Adds a new variable to the root scope.","","","","","","","","","","","","","","","Constructs a new symbol table with a root scope","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Grow this typifier until it contains a type for expr_handle…","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Recompute the type resolution for expr_handle.","Perform a lookup for a variable named name.","","Removes the current lexical scope and all its variables","Adds a new lexical scope.","Add an expression’s type to an Arena<Type>.","","","","","","","","","","","","","","","","","","Frontend for WGSL (WebGPU Shading Language).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Emits a summary of the error to standard error stream.","Emits a summary of the error to standard error stream.","Emits a summary of the error to a string.","Emits a summary of the error to a string.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Returns a SourceLocation for the first label in the error …","","","","","","","","","","","","","","","","","","","","","","","","","Keywords for WGSL (WebGPU Shading Language).","","A newtype struct where its only valid values are powers of …","","","","","","Policies for injecting bounds checks during code …","How should code generated by Naga do bounds checks?","","","A context for evaluating constant expressions.","","","","The number of elements is determined at runtime.","","Helper class to emit expressions","","","","","","","","","","","","","","","","","A type stored in the associated arena.","","","The number of elements in an indexable type.","","","","","","","","","","","","","","","","","","","","","Values of this type always have the given number of …","","","Helper processor that derives the sizes of all types.","","","","","","","This processor assigns names to all the things in a module …","","","","","","","","Out-of-bounds reads return zero, and writes have no effect.","","","","Replace out-of-bounds indexes with some arbitrary …","","","","","","","","","","Size and alignment information for a type.","","","The result of computing an expression’s type.","Naga adds no checks to indexing operations. Generate the …","A free-floating TypeInner, representing a type that may …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","How should the generated code handle binding array indexes …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","How should the generated code handle array, vector, or …","Return a new identifier based on label_raw.","","Convert the scalar components of expr to target.","Convert the scalar leaves of expr to target, handling …","Determine which policy applies to base.","Remove all entries from this Layouter, retaining storage.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return true if any of self’s policies are policy.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Ensure that the given block has return statements at the …","","","","","","","","","","","","","","","","","","","","","","","","Return an iterator over the individual components …","","","","","","","","","","","","","","","","","","","","","","","Return a ConstantEvaluator that will add expressions to …","Return a ConstantEvaluator that will add expressions to …","Return a ConstantEvaluator that will add expressions to …","Return a ConstantEvaluator that will add expressions to …","Forces the the expression to not be const","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Panics","","","","","","","","","How should the generated code handle image texel loads …","How should the generated code handle image texel stores …","Definitions for index bounds checking.","","How should the generated code handle array, vector, or …","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether or not n is a multiple of this alignment.","","","","","","","","","","Determine the type of expr.","Round n up to the nearest alignment boundary.","","","","","","","","","","","","","","","","","","","","","","","Produce the stride as if this type is a base of an array.","","","","","","","","","","","","","","","","","","","","","","","","","","","Try to evaluate expr at compile time.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extend this Layouter with layouts for any new entries in …","Initialize a resolve context from the module.","","","","","","","","","","","","","Policies for injecting bounds checks during code …","How should code generated by Naga do bounds checks?","The number of elements is determined at runtime.","","An index that may be statically known, or may need to be …","The number of elements in an indexable type.","","","","Values of this type always have the given number of …","Out-of-bounds reads return zero, and writes have no effect.","Replace out-of-bounds indexes with some arbitrary …","","Naga adds no checks to indexing operations. Generate the …","Determine whether index is statically known to be in …","","","","","","How should the generated code handle binding array indexes …","","","How should the generated code handle array, vector, or …","","","","","","","","Build a set of expressions used as indices, to cache in …","","Returns the argument unchanged.","","","How should the generated code handle image texel loads …","How should the generated code handle image texel stores …","How should the generated code handle array, vector, or …","","Calls U::from(self).","","","","","","","","","","","","","","","","","This type can be passed as a function argument.","","","","","","","Group, binding, and location attributes.","Statements and blocks of them.","","","","","Support for [Builtin::ClipDistance].","","Constants.","A WGSL constructible type.","Uniformity of control flow for operations that require it.","The data can be copied around.","Support for arrayed cube textures.","Support for [Builtin::CullDistance].","","Allowed IR capabilities.","","","","","","","","","","","","","","","","Can be used for data variables.","","Support for generating two sources for blending from …","","","","Support for early_depth_test.","Expressions.","","","","","","","","","","","","","","Float values with width = 8.","","","","","","","","Indicates how a global variable is used.","","","Can be used for host-shareable structures.","","Can be be used for user-defined IO between pipeline stages.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Support for [Builtin::SampleIndex] and [Sampling::Sample].","Support for [BuiltIn::ViewIndex].","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Support for [Builtin:PrimitiveIndex].","Support for [AddressSpace:PushConstant].","","","The information about the data is queried.","Support for ray queries and acceleration structures.","Data will be read from the variable.","","","","Support for non-uniform indexing of sampled textures and …","Support for non-uniform indexing of samplers.","The data type has a size known by pipeline creation time.","Support for 16-bit normalized storage texture formats.","Host-shareable structure layouts.","Validation flags.","","","","","","","","Flags associated with Types by Validator.","Support for non-uniform indexing of uniform buffers and …","","","Uniform control flow characteristics.","Kinds of expressions that require uniform control flow.","","","","","","","Validation flags.","","","","Data will be written to the variable.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Set of shader stages where calling this function is valid.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Get the underlying bits value.","","Get the underlying bits value.","","","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Indicates that the function is using dual source blending.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","","Convert from a bits value exactly.","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","","Convert from a bits value exactly.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Function may kill the invocation.","Construct a new validator instance.","A child expression with non-uniform result.","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","If this expression requires uniform control flow, store …","Reset the validator internals","All pairs of (texture, sampler) globals that may be used …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Uniformity characteristics.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","","","","","","","","","","","","","","","Check the given module to be valid.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Describes a compute pipeline.","","","","","","","","","","","","","","","","Describes fragment processing in a render pipeline.","","","","Number of implicit bind groups derived at pipeline …","","","","","","","","","","","","","","","","","","","","","","","","Describes a programmable pipeline stage.","","","Describes a render (graphics) pipeline.","","","","","","","","","","","","","","","","Describes how the vertex buffer is interpreted.","Describes the vertex process in a render pipeline.","How a render pipeline will retrieve attributes from a …","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","The stride, in bytes, between elements of this buffer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The list of attributes which comprise a single vertex.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The format of any vertex buffers used with this pipeline.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","","","","","","","","","","","","","Whether all set bits in a source flags value are also set …","","The effect of draw calls on the depth and stencil aspects …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all bits unset.","The name of the entry point in the compiled shader. There …","","","","","The bitwise or (|) of the bits in each flags value.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The fragment processing state for this pipeline.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value exactly.","","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained named flags values.","","","","","","The layout of bind groups for this pipeline.","The layout of bind groups for this pipeline.","","Whether the buffer is indexed by vertex number or instance …","The compiled shader module for this stage.","The multi-sampling properties of the pipeline.","If the pipeline will be used with a multiview render pass, …","The bitwise negation (!) of the bits in a flags value, …","The properties of the pipeline at the primitive assembly …","The intersection of a source flags value with the …","Call insert when value is true or remove when value is …","","","","","","","","The compiled compute stage and its entry point.","The compiled vertex stage and its entry point.","The compiled fragment stage and its entry point.","How often this vertex buffer is “stepped” forward.","The byte stride in the buffer between one attribute value …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The bitwise exclusive-or (^) of the bits in two flags …","The effect of draw calls on the color aspect of the output …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","","","","","","","","","","The vertex processing state for this pipeline.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Registry is the primary holder of each resource type Every …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mapping was aborted (by unmapping or destroying the buffer …","","","The buffer is already mapped.","","","","","","","","","The status code provided to the buffer mapping callback.","","","","The context is Lost.","","","","","","","","","A buffer that has been marked as destroyed and is staged …","A texture that has been marked as destroyed and is staged …","","","","","","","Contains the error value","An unknown error.","","","","The buffer is in an invalid state.","","","The range isn’t properly aligned.","","","","","","","","","","","","","","","","","","","The range isn’t fully contained in the buffer.","","","","","","","Incompatible usage flags.","","","","","Mapping was already requested.","","","","","","","","","","AddressMode::ClampToBorder requires feature …","","","","","","","","","Contains the success value","","","","","","","","Information about the wgpu-core resource.","","Describes a Sampler","","A temporary buffer, consumed by the command that uses it.","The Buffer is sucessfully mapped, get_mapped_range can be …","","","","","","","","","Describes a TextureView.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","How to deal with out of bounds accesses in the u (i.e. x) …","Must be at least 1. If this is not 1, all filter modes …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Border color to use when address_mode is …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If this is enabled, this is a comparison sampler using the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Total count of queries the set contains. Must not be zero. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Dimensions of the texture.","The dimension of the texture view.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Format of the texture.","Format of the texture view, or None for the same format as …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Debug label of a buffer. This will show up in graphics …","Debug label of the texture. This will show up in graphics …","Debug label for the query set.","Debug label of the texture view.","Debug label of the sampler.","Maximum level of detail (i.e. mip level) to use","Minimum level of detail (i.e. mip level) to use","How to filter the texture when it needs to be magnified …","Allows a buffer to be mapped immediately after they are …","How to filter the texture when it needs to be minified …","Mip count of texture. For a texture with no extra mips, …","How to filter between mip map levels","Range within the texture that is accessible via this view.","","Sample count of texture. If this is not 1, texture must …","Size of a buffer, in bytes.","Size of the texture. All components must be greater than …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Kind of query that this query set should contain.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Usages of a buffer. If the buffer is used in any way that …","Allowed usages of the texture. If used in other ways, the …","","Specifies what view formats will be allowed when calling …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A table of T values indexed by the id type I.","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","The binding layout is derived from the pipeline layout.","","","","","","","","","","","","","","","","","","","","","The binding layout is provided by the user in BGLs.","","Errors produced when validating a programmable stage of a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Checks that the given buffer usage contains the required …","","Return true if the fragment format is covered by the …","Checks that the given texture usage contains the required …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Allow the acceleration structure to be compacted in a copy …","Allow for incremental updates (no change in size)","","offset - offset in bytes","","Flags for acceleration structures","","Information of the required size for a corresponding …","","Entries for a single descriptor","","Flags for acceleration structure geometries","offset - offset in bytes","offset - offset in bytes","offset - offset in bytes","first_vertex - offset in the vertex buffer (as number of …","","","","","","","","","","","","","BindGroup descriptor.","","","BindGroupLayout descriptor.","Pipeline layout creation flags.","","","","","","","","","Similar to wgt::BufferUsages but for internal use.","","Updates use source_acceleration_structure if present, else …","","Format can be used as color and input attachment.","Format can be used as color (with blending) and input …","The color target of a renderpass.","Flag used by the wgpu-core texture tracker to say a …","Format can be copied to.","The destination of a hardware copy.","The destination of a hardware copy.","Format can be copied from.","The source of a hardware copy.","The source of a hardware copy.","","","","Encoder for commands in command buffers. Serves as a …","","","","","","","Describes a compute pipeline.","","","","Format can be used as depth-stencil and input attachment.","Read-only depth stencil usage.","Read-write depth stencil usage","","","","","","","","","Drop guard to signal wgpu-hal is no longer using an …","The combination of states that a buffer must exclusively …","The combination of states that a texture must exclusively …","","","Include support for first_vertex / first_instance drawing.","","","Texture format capability flags.","All buffers, buffer addresses and offsets will be ignored.…","The combination of states that a buffer may be in at the …","The combination of states that a texture may be in at the …","The index buffer used for drawing.","The indirect or count buffer in a indirect draw or …","","","","Error occurring while trying to create an instance, or …","","","Optimize for low memory footprint (scratch and output)","","","","","The argument to a read-only mapping.","The argument to a write-only mapping.","","","","","","","Format can be used for render pass resolve targets.","Format can be multisampled by x16.","Format can be multisampled by x2.","Format can be multisampled by x4.","Format can be multisampled by x8.","","","NO_DUPLICATE_ANY_HIT_INVOCATION","Include support for num work groups builtin.","","Naga shader module.","No value.","Is OPAQUE","The combination of all usages that the are guaranteed to …","The combination of all usages that the are guaranteed to …","","","","","Allows for bind group binding arrays to be shorter than …","","","","","Optimize for fast build time","Optimize for fast ray tracing performance","Ready to present image to the surface.","","","","Pipeline layout creation flags.","Describes a programmable pipeline stage.","A buffer used to store query results.","Size of a single occlusion/timestamp query, when copied …","","","","Read-only sampled or fetched resource.","","","","","Describes a render (graphics) pipeline.","","Format can be sampled.","Format can be sampled with a linear sampler.","Format can be sampled with a min/max reduction sampler.","","","Format can be used as storage with write-only access.","Format can be used as storage with atomics.","A read-only storage buffer used in a bind group.","Read-only storage buffer usage. Corresponds to a UAV in …","Format can be used as storage with read and read/write …","A read-write or write-only buffer used in a bind group.","Read-write or write-only storage buffer usage.","","","","","Shader input.","","","Some value of type T.","","","","Describes information about what a Surface’s …","","","","","","","","","","","","Texture format capability flags.","Similar to wgt::TextureUsages but for internal use.","","TextureView descriptor.","","","A uniform buffer bound in a bind group.","The texture is in unknown state.","Flag used by the wgpu-core texture tracker to say that the …","","Stores the text of any validation errors that have …","A vertex buffer used for drawing.","Flag for internal testing.","Describes how the vertex buffer is interpreted.","","","Returns the next texture to be presented by the swapchain …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","","","","The stride, in bytes, between elements of this buffer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The list of attributes which comprise a single vertex.","","","","Begin encoding a new command buffer.","Safety:","","","","","","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","Get the underlying bits value.","","Get the underlying bits value.","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","","","Get the underlying bits value.","Get the underlying bits value.","","Get the underlying bits value.","","","Get the underlying bits value.","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The buffer being bound.","","","","","","The alignment of the start of the buffer used as a GPU …","The alignment of the row pitch of the texture data stored …","","","To get the required sizes for the buffer allocations use …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The effect of draw calls on the color aspect of the output …","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Alpha composition mode.","List of supported alpha composition modes.","Configures the surface to use the given device.","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","","Copy from buffer to texture. Works with a single array …","","","Copy from texture to buffer. Works with a single array …","Copy from one texture to another. Works with a single …","","","","","","","Creates a bind group layout.","Creates a new buffer.","","","","","","","","","","Creates a new texture.","","Current extent of the surface, if known.","Source codes for debug","","","","The effect of draw calls on the depth and stencil aspects …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","Discard currently recorded list, if any.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A dummy API implementation.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","The upper bound of the range (exclusive).","","","","","","Safety:","","","","","","The name of the entry point in the compiled shader. There …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Exit connection to this logical device.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Requested texture extent. Must be in …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Format of the surface textures.","","","List of supported texture formats.","The fragment stage for this pipeline.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","","Convert from a bits value exactly.","","Convert from a bits value exactly.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns any API validation errors that hav occurred in …","","Creates a PresentationTimestamp using the adapter’s WSI.","","GLES API internals.","","","","","","","","","","","","","","","","Analysis information of the module.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","","","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Returns true if only one flag is set","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","","","","","","","","","","","","","","","","The layout of bind groups for this pipeline.","The layout of bind groups for this pipeline.","","","","","","","","Range for the number of queued frames.","Maximum number of queued frames. Must be in …","","","","","","","","","Shader module IR.","The compiled shader module for this stage.","The multi-sampling properties of the pipeline.","If the pipeline will be used with a multiview render pass, …","","","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","The offset at which the bound region starts.","","","","","","","Origin within a texture. Note: for 1D and 2D textures, Z …","","","Vertical synchronization mode.","List of supported V-sync modes.","The properties of the pipeline at the primitive assembly …","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Reclaims all resources that are allocated for this encoder.","","","","","","","","","","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Sets the bind group at index to group, assuming the layout …","","","","Sets a range in push constant data.","","","","","","","","The size of the region bound, in bytes.","","","","","","","","","","","","","The compiled compute stage and its entry point.","The lower bound of the range (inclusive).","","","How often this vertex buffer is “stepped” forward.","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Submits the command buffers for execution on GPU.","The presentation configuration no longer matches the …","Returns the capabilities of working with a specified …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","Return the set of supported capabilities for a texture …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Unconfigures the surface on the given device.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Supported texture usage flags.","","","","","Allowed usage of surface textures,","","","Contains either a single mutating usage as a target, or a …","","","The format of any vertex buffers used with this pipeline.","","","The vertex stage for this pipeline.","","","","Allows views of this texture to have a different format …","Allows views of swapchain texture to have a different …","Vulkan API internals.","","Calling wait with a lower value than the current fence …","","","","","Maximum binding size for the shaders that only support i32 …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A wrapper around a glow::Context and the required EGL …","A guard containing a lock to an AdapterContext","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the underlying EGL context.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the EGL instance.","Returns the EGL version the adapter context was created …","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get’s the glow::Context without waiting for a lock","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Obtain a lock to the EGL context and get handle to the …","","","Creates a new external adapter using the specified loader …","","","","","Returns the EGLDisplay corresponding to the adapter …","","","","","","","","","","","","","","","","","","Safety","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","User data needed by …","","Qualcomm OOMs when there are zero color attachments but a …","If the following code returns false, then nvidia will end …","","","","","","","","","","","Only generate SPIR-V for one entry point at a time.","","","","","","","","Workaround flags.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all set bits in a source flags value are also set …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the instance extension names wgpu would like to …","","","","","","","","","","","","","","","","Safety","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all bits unset.","","","","","","","","","","","","","","","The bitwise or (|) of the bits in each flags value.","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value exactly.","","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","","","","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained named flags values.","","The bitwise negation (!) of the bits in a flags value, …","","","features must be the same features used to create …","","","Returns the queue family index of the device’s internal …","","","Safety","","","","","The intersection of a source flags value with the …","","","","Call insert when value is true or remove when value is …","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","The bitwise exclusive-or (^) of the bits in two flags …","","Safety","","","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The pending fence values have to be ascending.","","","","","A raw display handle for Android NDK.","Raw display handle for Android.","A raw window handle for Android NDK.","Raw window handle for Android NDK.","A raw window handle for AppKit.","A raw display handle for AppKit.","Raw display handle for AppKit.","Raw window handle for AppKit.","The handle to the display controller of the windowing …","A raw window handle for the Linux Kernel Mode Set/Direct …","A raw display handle for the Linux Kernel Mode Set/Direct …","Raw display handle for the Linux Kernel Mode Set/Direct …","Raw window handle for the Linux Kernel Mode Set/Direct …","A raw window handle for the Linux Generic Buffer Manager.","A raw display handle for the Linux Generic Buffer Manager.","Raw display handle for the Linux Generic Buffer Manager.","Raw window handle for the Linux Generic Buffer Manager.","A raw window handle for Haiku.","A raw display handle for Haiku.","Raw display handle for Haiku.","Raw window handle for Haiku.","An error that can occur while fetching a display or window …","A display that acts as a wrapper around a display handle.","Display that wraps around a raw display handle.","Window that wraps around a raw window handle.","A handle to a window.","The underlying handle cannot be represented using the …","A raw window handle for the Redox operating system.","A raw display handle for the Redox operating system.","Raw display handle for the Redox operating system.","Raw window handle for the Redox operating system.","A display server handle for a particular windowing system.","A window handle for a particular windowing system.","A raw window handle for UIKit (Apple’s non-macOS …","A raw display handle for UIKit (Apple’s non-macOS …","Raw display handle for UIKit.","Raw window handle for UIKit.","The underlying handle is not available.","A raw window handle for Wayland.","A raw display handle for Wayland.","Raw display handle for Wayland.","Raw window handle for Wayland.","A raw window handle for the Web.","A raw display handle for the Web.","A raw window handle for a Web canvas registered via …","Raw window handle for a Web canvas registered via …","Raw display handle for the Web.","A raw window handle for a Web offscreen canvas registered …","Raw window handle for a Web offscreen canvas registered via","Raw window handle for the Web.","A raw window handle for Win32.","Raw window handle for Win32.","A raw window handle for WinRT.","Raw window handle for WinRT.","The handle to a window.","A raw display handle for Win32.","Raw display handle for Windows.","A raw window handle for Xcb.","A raw display handle for Xcb.","Raw display handle for Xcb.","Raw window handle for Xcb.","A raw window handle for Xlib.","A raw display handle for Xlib.","Raw display handle for Xlib.","Raw window handle for Xlib.","A pointer to an ANativeWindow.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the underlying raw display handle.","Get the underlying raw window handle.","","","A pointer to a BDirectWindow object that might be null","A pointer to a BWindow object","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a DisplayHandle from a RawDisplayHandle.","Borrow a WindowHandle from a RawWindowHandle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A pointer to an X server xcb_connection_t.","A WinRT CoreWindow handle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A pointer to an Xlib Display.","A pointer to a wl_display.","Get a handle to the display controller of the windowing …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The drm file descriptor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The gbm device.","The gbm surface.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The GWLP_HINSTANCE associated with this type’s HWND.","A Win32 HWND handle.","An ID value inserted into the data attributes of the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new empty display handle.","Create a new handle to an ANativeWindow.","Create a new empty display handle.","Create a new handle to a view.","Create a new empty display handle.","Create a new handle to a window.","Create a new empty display handle.","Create a new handle to a window.","Create a new empty display handle.","Create a new handle to a view.","Create a new handle to a display.","Create a new handle to a window.","Create a new handle to a connection and screen.","Create a new handle to a window.","Create a new display handle.","Create a new handle to a surface.","Create a new handle to a file descriptor.","Create a new handle to a plane.","Create a new handle to a device.","Create a new handle to a surface.","Create a new empty display handle.","Create a new handle to a canvas element.","Create a new handle from a pointer to HtmlCanvasElement.","Create a new handle from a pointer to an OffscreenCanvas.","Create a new empty display handle.","Create a new handle to a window.","Create a new handle to a window.","A pointer to an NSView object.","A pointer to the JsValue of an HtmlCanvasElement.","A pointer to the JsValue of an OffscreenCanvas.","The primary drm plane handle.","","","","","An X11 screen to use with this display handle.","An X11 screen to use with this display handle.","A pointer to a wl_surface.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A pointer to an UIView object.","A pointer to an UIViewController object, if the view has …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An Xlib visual ID, or 0 if unknown.","An X11 xcb_visualid_t.","A pointer to an orbclient window.","An Xlib Window.","An X11 xcb_window_t.","Get a handle to the window.","","Describes a Buffer when allocating.","Utility methods not meant to be in the main API.","Argument buffer layout for dispatch_indirect commands.","CPU accessible buffer used to download data back from the …","Argument buffer layout for draw_indexed_indirect commands.","Argument buffer layout for draw_indirect commands.","The texture is laid out densely in memory as:","The texture is laid out densely in memory as:","Methods shared by RenderPass and RenderBundleEncoder.","Efficiently performs many buffer writes by sharing and …","Order in which TextureData is laid out in memory.","","","","","","","","Aligns a value to an alignment.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the bytes representation of the struct, ready to …","Returns the bytes representation of the struct, ready to …","Returns the bytes representation of the struct, ready to …","Get a set of backend bits from the environment variable …","The value added to the vertex index before indexing into …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Contents of a buffer on creation.","Creates a Buffer with data to initialize it.","Upload an entire texture and its mipmaps from a source …","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws primitives from the active vertex buffer(s).","Draws indexed primitives using the active index buffer and …","Draws indexed primitives using the active index buffer and …","Draws primitives from the active vertex buffer(s) based on …","","","","","","","","Choose which DX12 shader compiler to use from the …","","","","","","","","","Prepare currently mapped buffers for use in a submission.","The first index within the index buffer.","The instance ID of the first instance to draw.","The instance ID of the first instance to draw.","The Index of the first vertex to draw.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Choose which minor OpenGL ES version to use from the …","","","The number of indices to draw.","","","","","","","","Initialize the adapter obeying the WGPU_ADAPTER_NAME …","Initialize the adapter obeying the WGPU_ADAPTER_NAME …","The number of instances to draw.","The number of instances to draw.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Debug label of a buffer. This will show up in graphics …","Version of make_spirv intended for use with …","Create a new staging belt.","Generates a set of backends from a comma separated list of …","Get a power preference from the environment variable …","Asynchronously read the contents of a buffer.","Recall all of the closed buffers back to be reused.","Sets the active bind group for a given bind group index. …","Sets the active index buffer.","Sets the active render pipeline.","wgt::Features::PUSH_CONSTANTS must be enabled on the …","Assign a vertex buffer to a slot.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Usages of a buffer. If the buffer is used in any way that …","The number of vertices to draw.","Allocate the staging belt slice of size to be uploaded …","The number of work groups in X dimension.","The number of work groups in Y dimension.","The number of work groups in Z dimension.","The appearance of a slider.","A circular handle.","The appearance of the handle of a slider.","The shape of the handle of a slider.","The appearance of a slider rail","A rectangular shape.","An horizontal bar and a handle that selects a single value …","The local state of a Slider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","Produces the style of an active slider.","","","","","","","","","","","The border Color of the handle.","The border radius of the corners of the rail.","The border width of the handle.","","","","","","","","","The Color of the handle.","The colors of the rail of the slider.","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a Slider.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","The appearance of the Handle of the slider.","Produces the style of an hovered slider.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a Slider.","Creates a new State.","The colors of the rail of the slider.","The shape of the handle.","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a Slider …","The width of the stroke of a slider rail.","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle.","An amount of empty space.","The appearance of an SVG.","A handle of Svg data.","The supported style of the StyleSheet.","The stylesheet of a svg.","A vector graphics image.","","","Produces the Appearance of the svg.","","","","","","","","","","","","","","","","","The Color filter of an SVG.","","","Returns a reference to the SVG Data.","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Creates an SVG Handle from raw bytes containing either an …","Creates an SVG Handle pointing to the vector image of the …","","","","Produces the hovered Appearance of a svg content.","Returns the unique identifier of the Handle.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An absolute height in logical pixels.","Advanced text shaping and font fallback.","The apperance of some text.","No shaping and no font fallback.","The height of a line of text in a paragraph.","A factor of the size of the text.","The shaping strategy of some text.","The internal state of a Text widget.","The supported style of the StyleSheet.","The style sheet of some text.","A paragraph.","","","","","Produces the Appearance of some text.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Color of the text.","","","","","","","","","","","","","","","","","","","","","Draws text using the same logic as the Text widget.","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Produces the layout::Node of a Text widget.","Returns the LineHeight in absolute logical pixels.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An interaction with an Editor.","The appearance of a text input.","Delete the previous character.","Click the Editor at the given Point.","The content of a TextEditor.","Delete the next character.","Move to the end of the text.","Move to the start of the text.","Move down.","Drag the mouse on the Editor to the given Point.","An action that edits text.","Perform an Edit.","Move to the end of the line.","Break the current line.","Move to the start of the line.","Insert the given character.","Move left.","A cursor movement.","Apply a Motion.","Move to the start of the next window.","Move to the start of the previous window.","Paste the given text.","Move right.","Scroll the Editor a certain amount of lines.","Select text with a given Motion.","Select the line at the current cursor.","Select the word at the current cursor.","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","A multi-line text input.","Move up.","Move to the left boundary of a word.","Move to the right boundary of a word.","Produces the style of an active text input.","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the text editor.","The Border of the text editor.","","","","","","","","","","","","","","","","","","","","","","","","Returns the current cursor position of the Content.","","","","","","","","","","","","Returns the Direction of the Motion.","Produces the style of a disabled text input.","Produces the Color of the value of a disabled text input.","","","","","","","","","","","","","","","","","","","Produces the style of a focused text input.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Produces the style of an hovered text input.","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Action is an editing action.","Returns the text of the line at the given index, if it …","Returns the amount of lines of the Content.","Returns an iterator of the text of the lines in the Content…","Creates an empty Content.","Performs an Action on the Content.","Produces the Color of the placeholder of a text input.","Returns the selected text of the Content.","Produces the Color of the selection of a text input.","Returns the text of the Content.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Produces the Color of the value of a text input.","Widens the Motion, if possible.","Creates a Content with the given text.","The amount of lines to scroll.","The appearance of a text input.","The cursor of a text input.","The default Padding of a TextInput.","The content of the Icon.","The identifier of a TextInput.","The left side of a TextInput.","The right side of a TextInput.","The side of a TextInput.","The state of a TextInput.","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","A field that can be filled with text.","The value of a TextInput.","Produces the style of an active text input.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the text input.","The Border of the text input.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","Track the cursor of a text input.","Returns the Cursor of the TextInput.","","","","","","","","","","","","","","","","","Produces the style of a disabled text input.","Produces the Color of the value of a disabled text input.","","","","","","","","Draws the TextInput with the given Renderer, overriding its","","","","","","","","","","","","","","","","","","","","Produces a Command that focuses the TextInput with the …","","Focuses the TextInput.","Produces the style of a focused text input.","Creates a new State, representing a focused TextInput.","The font that will be used to display the code_point.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","Produces the style of an hovered text input.","The icon Color of the text input.","","","","","","","","Inserts a new char at the given grapheme index.","Inserts a bunch of graphemes at the given grapheme index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Value is empty or not.","","Returns whether the TextInput is currently focused or not.","Computes the layout of a TextInput.","Returns the total amount of graphemes in the Value.","Computes the current mouse::Interaction of the TextInput.","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to an arbitrary location.","Produces a Command that moves the cursor of the TextInput …","Moves the Cursor of the TextInput to the end of the input …","","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to the front of the …","Creates a new Value from a string slice.","Creates a custom Id.","Creates a new State, representing an unfocused TextInput.","Returns the position of the next end of a word from the …","Produces the Color of the placeholder of a text input.","Returns the position of the previous start of a word from …","Removes the grapheme at the given index.","Removes the graphemes from start to end.","Returns a new Value with all its graphemes replaced with …","Returns a new Value containing the graphemes from start …","Produces a Command that selects all the content of the …","Selects all the content of the TextInput.","","Returns the current selection of the Cursor for the given …","Produces the Color of the selection of a text input.","The side of a TextInput where to display the Icon.","The font size of the content.","The spacing between the Icon and the text in a TextInput.","Returns the State of the Cursor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Unfocuses the TextInput.","","Creates a unique Id.","Returns a new Value containing the graphemes until the …","","","","","","","","Processes an Event and updates the State of a TextInput …","Produces the Color of the value of a text input.","The cursor of a text input.","Cursor without a selection","Cursor selecting a range of text","The state of a Cursor.","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The end of the selection","The start of the selection","The style of an application.","A simple box.","The style of a button.","The style of a checkbox.","Colored text.","The style of a container.","A Theme with a customized Palette.","A Theme that uses a Custom palette.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","The danger style.","The danger style.","The built-in dark variant.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","No filtering to the rendered SVG.","The default style.","The default style.","The default style.","The default style.","The destructive style.","The built-in light variant.","The style of a menu.","A color palette.","The style of a pane grid.","The style of a pick list.","The positive style.","The primary style.","The primary style.","The primary style.","The style of a progress bar.","The style of a radio button.","The style of a rule.","The style of a scrollable.","The secondary style.","The secondary style.","The style of a slider.","The success style.","The success style.","Svg","The style of text.","The text style.","The style of a text input.","The style of a text input.","A built-in theme.","The style of a toggler.","No style.","The background Color of the Palette.","The danger Color of the Palette.","Define the colors of a theme.","The primary Color of the Palette.","The success Color of the Palette.","The text Color of the Palette.","A set of background colors.","A set of danger colors.","The built-in dark variant of an Extended palette.","The built-in light variant of an Extended palette.","An extended set of colors generated from a Palette.","A pair of background and text colors.","A color palette.","A set of primary colors.","A set of secondary colors.","A set of success colors.","The background Color of the Palette.","The set of background colors.","The base background color.","The base primary color.","The base secondary color.","The base success color.","The base danger color.","The background color.","The danger Color of the Palette.","The set of danger colors.","Whether the palette is dark or not.","The primary Color of the Palette.","The set of primary colors.","The set of secondary colors.","A stronger version of the base background color.","A stronger version of the base primary color.","A stronger version of the base secondary color.","A stronger version of the base success color.","A stronger version of the base danger color.","The success Color of the Palette.","The set of success colors.","The text Color of the Palette.","The text color.","A weaker version of the base background color.","A weaker version of the base primary color.","A weaker version of the base secondary color.","A weaker version of the base success color.","A weaker version of the base danger color.","The appearance of a toggler.","The supported style of the StyleSheet.","A set of rules that dictate the style of a toggler.","A toggler widget.","Returns the active Appearance of the toggler for the …","","","","","","The background Color of the toggler.","The Color of the background border of the toggler.","","","","","","","","","","","The foreground Color of the toggler.","The Color of the foreground border of the toggler.","Returns the argument unchanged.","","","Returns the hovered Appearance of the toggler for the …","","Calls U::from(self).","","","","","","","","","","","","","","","","","The tooltip will appear on the bottom of the widget.","The tooltip will follow the cursor.","The tooltip will appear on the left of the widget.","The position of the tooltip. Defaults to following the …","The tooltip will appear on the right of the widget.","An element to display a widget over another.","The tooltip will appear on the top of the widget.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The appearance of a slider.","A circular handle.","The appearance of the handle of a slider.","The shape of the handle of a slider.","A rectangular shape.","The local state of a VerticalSlider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","An vertical bar and a handle that selects a single value …","Produces the style of an active slider.","","","","","","","","","","","","","","","","","","","","","The border Color of the handle.","The border width of the handle.","","","","","","","","","","","","","","","","","The Color of the handle.","","","","","","","","","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a VerticalSlider.","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","The appearance of the Handle of the slider.","Produces the style of an hovered slider.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a VerticalSlider…","Creates a new State.","The colors of the rail of the slider.","The shape of the handle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a …","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle.","An operation to be performed on some window.","The window will always be below normal windows.","The window will always be on top of normal windows.","Redraw at the given time.","The window is completely centered on the screen.","Change the window Icon.","Change the window Level.","Change the Mode of the window.","Close the window and exits the application.","The user has requested for the window to close.","A window was closed.","Platform-specific","The platform-specific default position for a new window.","Move the window with the left mouse button until the …","A window-related event.","Fetch the raw identifier unique to the window.","Fetch if the current window is maximized or not.","Fetch if the current window is minimized or not.","Fetch the current Mode of the window.","Fetch the current logical dimensions of the window.","A file has been dropped into the window.","A file is being hovered over the window.","A file was hovered, but has exited the window.","A window was focused.","The application takes the whole screen of its current …","Bring the window to the front and sets input focus. Has no …","The application is hidden","An window icon normally used for the titlebar or taskbar.","An window icon normally used for the titlebar or taskbar.","The id of the window.","Platform-specific","A window level groups windows with respect to their …","The reserved window Id for the first window in an Iced …","Set the window to maximized or back","Set the window to minimized or back","The mode of a window-based application.","Move the window to the given logical coordinates.","A window was moved.","Redraw the next frame.","The default behavior.","A window was opened.","The position of a window in a given screen.","A request to redraw a window.","A window redraw was requested.","Request user attention to the window, this has no effect …","Resize the window to the given logical dimensions.","A window was resized.","Data of a screenshot, captured with window::screenshot().","Screenshot the viewport of the window.","The window settings of an application.","Spawns a new window with some Settings.","The window is positioned with specific coordinates: (X, Y).","Toggle whether window has decorations.","Toggle the window to maximized or back","A window was unfocused.","The type of user attention to request.","The application appears in its own window.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bytes of the Screenshot.","Changes the Icon of the window.","Changes the window Level.","Changes the Mode of the window.","","","","","","","","","","","","","","","","","","","","","Closes the window with id.","","","","","","","","","","","","","","","","Crops a Screenshot to the provided region. This will …","Whether the window should have a border, a title bar, etc. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Begins dragging the window while the left mouse button is …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether the window will close when the user requests it, …","Fetches an identifier unique to the window, provided by …","Fetches if the window is maximized.","Fetches if the window is minimized.","Fetches the current Mode of the window.","Fetches the window’s size in logical dimensions.","","","","","","","","","","","","Subscribes to the frames of the window of the running …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","Brings the window to the front and sets input focus. Has …","","Attach an icon to the window of your application.","The icon of the window.","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the raw data of the Icon.","","","","","","","","","","","","The window Level.","Maps the output of a window Action using the provided …","The maximum size of the window.","Maximizes the window.","The minimum size of the window.","Minimizes the window.","Moves the window to the given logical coordinates.","Creates a new Screenshot.","","","Platform specific settings.","The initial position of the window.","Request user attention to the window. This has no effect …","Whether the window should be resizable or not.","Resizes the window to the given logical dimensions.","Take screenshots of a window.","Captures a Screenshot from the window.","Configure your windows.","The size of the Screenshot.","The initial logical dimensions of the window.","Spawns a new window with the given settings.","","","","","","","","","","","Toggles the window decorations.","Toggles the window to maximized or back.","Whether the window should be transparent.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new unique window Id.","","","","","","","","","","","","Whether the window should be visible or not.","The new logical height of the window","The position of the opened window. This is relative to the …","The size of the created window. This is its “inner” …","The new logical width of the window","The new logical x location of the window","The new logical y location of the window","An error produced when creating an Icon.","An window icon normally used for the titlebar or taskbar.","The image crate reported an error.","The Icon is not valid.","The underlying OS failed to create the icon.","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Creates an icon from an image file.","Creates an icon from the content of an image file.","Builds an Icon from its RGBA pixels in the sRGB color …","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Errors that can occur when cropping a Screenshot.","The cropped region’s size is out of bounds.","Data of a screenshot, captured with window::screenshot().","The cropped region’s size is zero.","","","","","","","","The bytes of the Screenshot.","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","The size of the Screenshot.","","","","","","","","","","","The platform specific window settings of an application.","The window settings of an application.","","Sets the application id of the window.","","","","","","","","","","Whether the window should have a border, a title bar, etc. …","","","","","","","","","","Whether the window will close when the user requests it, …","","Returns the argument unchanged.","","","The icon of the window.","","Calls U::from(self).","","","","","","","","The window Level.","The maximum size of the window.","The minimum size of the window.","Platform specific settings.","The initial position of the window.","Whether the window should be resizable or not.","The initial logical dimensions of the window.","","Whether the window should be transparent.","","","","","","","","","Whether the window should be visible or not."],"i":[4,0,0,43,0,0,36,0,42,0,44,0,44,4,39,4,0,0,36,197,0,0,0,75,44,45,45,45,0,0,42,75,50,38,0,4,40,39,106,38,44,17,197,16,0,0,38,0,16,0,0,0,0,0,44,0,0,45,0,36,0,43,0,35,38,50,0,43,35,38,75,46,50,18,43,1,4,4,4,4,4,4,4,4,4,4,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,16,17,21,18,16,0,0,4,4,4,4,4,4,4,0,21,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,43,1,34,49,0,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,46,21,21,21,35,0,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,37,49,0,0,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,21,4,4,4,37,39,43,17,21,49,18,35,35,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,35,35,4,4,4,4,4,17,16,16,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,4,4,4,35,35,35,35,35,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,66,4,36,37,38,39,40,41,16,42,43,44,45,47,17,21,49,50,18,36,36,36,39,39,39,44,44,44,17,17,17,21,21,21,50,50,50,18,18,18,0,0,21,50,4,39,35,45,35,35,35,44,46,45,1,34,75,75,4,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,17,21,49,50,18,4,4,0,1,35,34,75,75,4,36,36,36,37,38,39,40,40,41,16,16,16,16,42,42,42,42,43,43,43,43,43,44,45,45,45,45,46,46,46,46,46,46,46,47,47,47,17,17,17,21,21,49,50,50,50,50,50,18,18,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,16,16,43,34,43,43,43,43,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,16,0,43,0,36,39,44,50,21,50,0,46,4,4,4,4,4,4,4,4,4,4,4,4,4,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,21,21,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,43,34,43,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,43,43,45,21,0,46,35,1,34,50,50,0,16,16,21,18,40,0,106,66,43,46,17,21,50,18,1,34,49,0,4,41,16,47,1,4,4,4,21,4,43,37,46,106,106,1,106,106,4,4,0,1,21,21,66,39,106,106,39,16,17,17,21,50,18,16,0,0,0,106,106,0,106,16,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,75,4,17,75,4,17,46,0,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,21,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,106,4,4,46,106,39,0,1,37,21,50,0,34,35,39,37,21,35,17,21,18,17,21,18,0,0,0,0,0,0,0,0,123,71,128,122,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,124,123,127,123,71,123,71,123,71,128,122,71,128,123,71,128,122,123,71,128,122,124,123,71,128,122,129,124,123,71,128,122,127,128,123,71,122,71,123,71,128,122,123,71,128,122,123,71,128,122,0,71,0,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,122,122,122,122,129,0,129,124,71,122,0,129,124,123,122,129,124,129,124,0,129,124,123,122,135,122,0,122,122,71,124,71,124,124,0,0,124,0,123,71,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,71,0,127,123,127,135,128,0,142,0,0,0,144,62,62,142,0,142,141,142,141,142,141,142,141,142,141,142,141,141,142,141,142,141,142,141,142,141,142,141,141,142,141,142,144,141,142,144,141,142,141,142,141,141,141,142,142,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,1253,1253,1253,0,0,133,0,133,132,132,132,133,132,133,132,133,132,133,132,0,133,132,133,132,132,132,133,132,133,132,133,132,0,132,132,133,132,133,132,133,132,133,132,133,0,133,132,133,132,133,132,133,132,133,133,132,133,132,133,132,133,132,133,132,133,132,133,132,133,132,133,132,133,133,133,133,133,133,133,132,132,133,132,0,0,0,133,133,132,0,133,132,132,133,132,133,132,133,132,133,132,133,132,133,132,133,132,133,132,133,132,0,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,0,146,146,146,146,146,146,146,146,131,214,0,215,215,0,134,0,215,215,215,0,214,134,134,134,0,214,216,214,134,214,216,134,134,134,214,0,134,131,215,134,148,148,148,148,148,148,148,0,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,1254,1255,1256,1257,1256,1257,0,149,0,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,0,0,0,137,150,137,150,137,150,137,150,137,150,137,150,137,150,137,150,150,137,150,137,150,137,150,129,137,150,137,150,137,137,150,137,150,0,137,150,137,150,137,150,137,150,137,150,137,150,137,150,137,150,137,150,137,150,129,129,137,150,137,137,150,129,137,150,137,150,129,137,150,129,137,150,150,129,137,150,137,137,150,137,150,137,150,137,150,137,150,137,150,137,150,137,150,150,0,0,0,0,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,70,151,70,130,151,70,130,70,127,151,151,70,130,151,70,130,151,70,130,151,70,130,151,151,151,70,130,151,70,130,151,70,130,151,70,130,70,130,151,151,127,151,151,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,127,151,127,151,0,89,0,89,89,153,0,0,153,0,153,153,153,153,153,153,153,153,153,153,153,153,154,153,154,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,168,171,185,185,163,168,162,0,0,168,164,156,168,160,0,0,168,160,0,163,0,168,171,0,160,163,0,0,162,163,162,163,162,163,162,163,162,163,162,163,162,163,156,71,160,162,163,162,163,164,162,163,71,160,156,162,156,168,168,162,163,162,163,162,163,162,163,0,162,163,163,163,163,168,168,168,162,163,71,162,163,162,163,162,163,164,156,160,0,164,164,71,162,163,162,163,162,163,162,163,162,163,162,163,162,163,162,163,162,163,156,156,71,168,164,164,164,160,156,164,156,71,71,162,163,162,163,162,163,162,163,162,163,162,163,162,163,162,163,162,163,156,160,164,164,71,164,156,0,1227,165,170,0,1227,0,1228,1228,1228,170,0,170,0,1228,1227,156,1228,1227,1228,172,0,170,1228,1228,1227,1228,172,170,170,170,170,165,1228,1228,1228,172,165,172,165,172,165,172,165,172,165,172,165,172,165,156,172,165,172,165,172,165,156,156,172,165,172,165,172,165,172,165,172,172,172,172,172,165,172,165,172,165,172,165,156,172,165,172,165,172,165,172,165,172,165,172,165,172,165,172,165,172,165,156,156,156,156,172,165,172,165,172,165,172,165,172,165,172,165,172,165,172,165,172,165,156,156,1258,0,160,0,160,0,160,173,169,173,169,173,169,173,169,173,169,173,169,173,169,160,173,173,169,173,169,169,173,169,160,173,169,173,169,173,169,173,169,173,169,169,173,169,169,173,169,173,169,173,169,160,173,173,169,173,169,173,169,173,169,173,169,173,169,173,169,173,169,173,169,160,173,173,169,173,169,173,169,173,169,173,169,173,169,173,169,173,169,173,169,160,173,0,0,0,0,0,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,124,125,174,176,174,176,174,125,176,119,119,174,125,176,174,125,176,124,125,125,125,174,125,176,124,174,174,125,176,125,176,176,176,176,119,125,176,119,174,174,174,125,176,176,176,176,174,125,176,174,125,176,176,174,174,174,125,176,174,125,176,174,125,176,174,125,176,174,176,174,125,176,174,125,176,174,125,176,174,125,176,124,174,174,124,174,125,176,124,124,0,124,119,174,124,174,174,124,174,124,125,174,174,124,125,0,119,174,176,0,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,176,174,125,176,174,174,179,0,179,0,0,0,179,0,179,179,179,179,179,179,179,179,119,119,179,179,179,179,119,179,180,0,119,179,179,179,179,179,179,179,179,179,179,179,180,0,186,186,186,0,184,0,119,186,184,0,119,179,179,179,179,179,179,179,180,179,0,0,189,189,189,189,189,189,189,189,189,189,0,189,189,189,189,189,189,189,189,189,0,189,0,180,0,0,189,189,189,189,189,189,189,189,189,189,189,189,189,180,189,189,189,189,189,189,189,189,189,180,189,0,0,0,0,184,0,184,187,188,187,188,0,0,186,0,186,0,186,0,186,171,185,0,185,0,171,0,0,175,0,0,175,24,0,0,139,139,0,0,0,139,140,139,140,139,140,139,140,139,140,139,140,139,140,125,140,140,140,140,139,140,139,140,139,140,0,139,140,139,139,139,140,140,140,140,140,139,140,139,140,139,140,139,140,140,139,140,139,140,139,140,139,140,140,139,140,139,140,139,140,139,140,139,140,140,125,140,125,140,139,140,139,140,139,140,139,140,139,140,139,140,139,140,139,140,0,81,36,80,81,36,0,80,80,36,81,0,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,80,80,81,81,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,0,0,196,196,196,192,0,196,23,192,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,196,196,196,196,196,23,196,196,23,23,23,23,23,23,23,23,23,196,196,0,0,121,121,121,121,121,121,121,121,121,37,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,37,121,121,121,121,121,121,121,121,121,37,0,0,0,0,136,0,136,38,0,199,38,0,38,200,0,38,38,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,199,199,200,200,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,0,0,0,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,0,0,66,66,66,203,203,204,202,0,204,203,204,204,203,0,202,0,205,203,203,202,202,203,204,205,205,202,204,204,203,202,0,0,203,204,204,0,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,201,201,202,202,202,203,203,203,204,204,204,205,205,205,39,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,0,39,39,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,39,0,0,0,40,206,82,82,82,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,206,82,206,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,207,207,207,208,0,0,209,209,207,210,0,0,209,208,210,210,207,210,208,208,209,210,207,207,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,207,207,207,207,207,207,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,207,207,208,207,207,208,209,210,207,207,207,207,208,209,210,207,208,209,210,207,207,208,209,210,207,208,209,210,207,207,208,209,210,207,208,208,208,209,209,209,210,210,210,207,207,207,207,208,209,210,207,207,207,207,207,208,209,210,207,208,209,210,207,207,207,207,207,208,209,210,207,208,207,208,209,210,207,207,207,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,207,207,0,207,207,0,0,208,207,207,207,207,207,207,207,208,209,210,207,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,207,208,209,210,207,1259,1260,1259,1260,1259,1260,1259,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,208,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,0,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,0,208,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,208,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,131,214,0,215,215,134,0,215,215,215,0,214,134,134,134,0,214,216,214,134,214,216,134,134,134,214,0,134,131,215,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,134,134,214,131,215,216,134,131,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,214,214,134,134,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,131,134,131,131,131,131,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,1254,1255,1256,1257,1256,1257,0,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,0,0,0,0,0,219,0,219,29,29,29,29,29,0,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,0,0,0,0,0,0,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,0,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,0,232,0,0,225,0,0,4,113,226,231,232,233,223,224,234,235,236,237,238,230,228,239,240,52,231,237,4,113,233,223,224,234,235,236,238,230,228,225,239,240,226,52,4,0,0,0,0,226,226,231,237,0,0,0,0,226,231,0,231,237,0,0,226,0,0,0,0,232,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,223,224,225,52,222,223,224,225,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,226,228,230,52,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,52,222,222,52,222,113,113,226,231,232,232,232,233,223,223,224,234,235,236,237,237,238,238,230,228,225,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,225,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,222,0,52,52,52,52,222,223,224,225,222,222,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,222,0,0,0,0,0,0,0,0,0,0,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,52,53,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,241,53,241,242,243,244,245,246,52,53,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,52,53,53,242,243,244,245,246,52,53,52,241,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,242,243,244,245,246,0,0,247,247,247,247,247,247,247,248,247,248,248,247,247,248,248,247,247,248,247,248,247,248,247,248,247,247,247,247,247,247,247,248,247,248,247,248,247,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,247,248,247,248,247,247,247,247,247,247,247,247,247,248,247,248,247,248,248,248,248,247,247,248,248,248,247,247,247,0,248,247,248,248,248,247,247,248,247,247,247,247,247,247,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,247,247,247,247,247,247,248,248,248,247,247,247,248,247,247,247,248,248,248,248,247,247,248,248,247,247,247,247,247,247,247,248,247,248,247,248,247,247,247,247,248,247,248,247,248,247,248,247,248,247,248,247,0,0,258,258,258,258,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,259,259,259,258,259,258,259,258,259,258,259,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,1261,1262,1263,1264,1261,1262,1263,1264,0,0,0,0,0,0,0,4,290,296,287,292,302,292,304,4,281,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,35,0,0,0,35,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,261,262,262,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,0,0,0,0,268,262,262,0,0,260,271,261,272,264,273,262,275,277,278,279,268,0,0,0,0,0,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,0,0,282,284,260,261,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,262,275,277,285,278,279,277,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,284,309,284,265,268,0,0,269,273,287,292,299,285,302,278,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,282,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,278,287,260,261,264,262,275,290,277,296,304,306,282,284,265,299,294,0,0,269,273,285,262,277,285,0,0,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,290,292,294,306,282,309,284,265,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,0,0,0,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,285,302,278,304,305,279,306,282,309,284,265,268,0,273,285,262,260,262,0,260,271,261,272,264,269,273,262,275,287,292,277,296,299,285,302,278,304,305,279,306,265,260,271,261,272,264,269,273,262,275,287,290,292,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,299,275,273,275,260,271,261,272,264,269,273,262,275,287,292,277,296,299,285,302,278,304,305,279,306,265,273,285,271,271,273,285,271,264,264,271,296,304,275,271,271,277,285,260,271,261,272,264,262,275,277,285,281,305,279,0,260,271,261,272,264,273,262,275,287,277,278,305,279,260,261,264,273,262,287,299,285,278,0,285,0,0,287,0,0,260,261,0,0,0,0,0,0,0,0,0,0,0,260,271,261,272,264,269,269,273,273,262,275,287,290,292,292,294,277,296,299,285,285,302,302,278,278,304,305,279,306,282,309,284,265,268,279,0,0,278,0,260,261,269,275,292,302,271,272,264,269,273,262,275,287,292,277,296,299,285,302,278,304,305,279,306,265,296,304,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,282,0,0,271,272,264,269,273,262,275,287,292,277,296,299,285,302,278,304,305,279,306,265,0,0,302,0,0,0,0,273,269,287,292,302,269,287,292,302,278,269,287,292,302,0,0,0,0,0,0,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,260,271,261,272,264,269,273,262,275,287,290,292,294,277,296,299,285,302,278,304,305,279,306,282,309,284,265,268,281,294,0,0,0,0,281,260,261,264,269,273,262,275,287,290,292,277,296,285,302,304,306,282,284,265,260,261,309,309,0,0,0,227,0,227,12,329,12,329,12,329,12,329,12,329,12,12,12,329,12,329,12,329,12,329,12,329,12,329,12,329,12,329,227,12,329,0,12,329,329,329,329,329,12,329,12,329,12,329,12,329,227,12,329,12,329,12,329,12,329,12,329,12,329,12,329,12,329,12,329,0,0,329,227,12,12,12,12,329,12,329,12,329,12,329,12,329,12,329,12,329,12,329,12,329,0,337,336,0,0,0,0,0,0,266,0,339,341,0,0,0,333,337,341,0,0,0,336,337,339,336,267,0,0,0,330,343,341,330,343,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,331,332,333,334,331,335,336,337,338,339,340,341,333,334,331,335,336,337,338,339,340,341,340,330,343,332,333,334,331,335,336,337,338,339,340,341,340,332,334,335,336,337,338,340,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,266,267,332,340,330,343,332,333,334,331,335,336,337,338,339,340,341,333,339,341,0,0,330,330,330,332,333,334,331,335,336,337,338,339,340,341,340,330,343,332,333,333,334,334,334,334,331,335,336,337,338,339,339,339,340,340,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,0,330,340,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,330,343,332,333,334,331,335,336,337,338,339,340,341,331,335,335,340,335,267,330,332,331,338,333,0,340,331,331,330,334,330,330,338,340,330,340,0,330,334,335,333,334,331,335,336,337,338,339,340,341,331,330,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,267,340,330,335,330,335,335,335,330,335,136,0,136,341,341,0,341,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,350,0,339,350,0,339,0,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,334,334,350,350,350,350,350,350,350,350,350,0,0,333,0,344,346,344,344,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,346,344,0,344,344,344,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,0,0,0,345,351,0,345,345,345,351,345,351,345,351,345,351,345,345,351,345,351,345,351,345,351,351,345,345,351,345,345,351,345,351,345,351,345,351,345,351,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,345,345,345,351,345,351,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,0,0,352,352,352,352,352,352,352,351,352,352,352,352,352,352,352,352,351,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,351,352,351,352,352,352,352,352,352,352,352,352,352,0,0,0,0,0,1265,1266,365,369,368,0,1265,1266,365,1265,1266,365,0,371,0,0,0,373,358,374,0,0,1265,1266,365,0,0,369,369,0,370,372,371,0,0,0,0,0,0,0,0,0,0,370,372,1265,1266,365,368,369,0,368,0,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,353,347,356,347,355,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,0,353,347,356,347,356,364,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,366,367,0,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,347,356,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,365,368,369,370,371,372,373,358,374,365,365,365,372,372,372,373,373,373,358,358,358,374,374,374,353,354,366,367,353,347,355,364,353,354,365,347,355,356,357,368,369,370,371,372,373,358,374,364,378,353,354,354,365,365,347,355,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,347,356,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,373,358,377,378,347,355,356,357,379,347,355,366,379,347,355,366,365,372,373,358,374,347,355,366,347,347,355,355,366,356,357,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,353,347,355,355,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,365,355,356,357,371,370,371,370,353,354,347,355,356,357,366,367,347,355,0,364,347,355,356,357,0,378,347,356,353,354,353,354,377,378,347,355,373,358,370,0,0,366,353,366,367,0,380,356,347,355,347,364,365,370,364,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,373,358,374,0,365,347,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,347,356,365,1267,1268,1269,1270,1270,1268,1271,1269,1270,1268,1271,1269,1270,1267,1268,1269,1270,1270,1268,1271,1269,1270,1268,1271,1269,1270,1267,1268,1269,1270,1270,1268,1271,1269,1270,1268,1271,1269,1270,0,0,0,0,0,406,0,0,0,403,404,394,402,361,396,361,396,361,396,361,396,361,396,400,361,396,361,396,361,394,400,394,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,396,403,404,361,361,403,404,394,402,361,403,404,394,402,361,402,402,406,403,403,404,394,394,361,361,402,361,402,361,400,396,394,394,361,403,404,394,402,361,396,400,403,404,394,394,361,361,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,396,403,404,361,361,402,361,396,361,396,394,361,402,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,361,400,394,403,404,394,402,361,361,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,361,403,404,394,402,361,396,400,403,404,394,394,361,361,400,394,394,403,404,394,402,361,396,403,404,361,402,396,361,396,400,403,404,394,394,361,361,400,394,400,394,400,394,400,394,400,394,400,394,400,394,396,400,403,404,394,394,361,361,403,404,394,400,394,400,394,400,394,400,394,402,361,402,402,402,402,396,394,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,400,394,361,396,361,361,0,0,0,0,0,0,0,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,359,391,359,375,383,407,391,359,375,383,407,359,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,359,359,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,359,391,391,359,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,391,391,391,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,375,383,407,391,359,375,383,407,391,359,359,375,383,407,375,359,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,359,0,0,0,0,0,409,409,409,409,409,409,0,0,0,409,409,409,409,0,0,0,409,409,0,413,0,0,0,0,409,409,409,0,0,0,0,409,408,410,410,410,414,422,415,399,423,408,416,410,398,398,398,398,413,414,414,415,415,399,399,416,416,1272,398,398,398,413,414,414,415,415,399,416,0,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,408,410,410,415,416,410,413,414,414,415,415,399,399,416,416,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,415,399,416,410,414,415,416,410,414,415,416,410,416,408,410,410,398,410,414,414,399,399,399,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,399,416,414,422,415,399,423,408,416,410,398,410,399,416,415,415,0,415,415,398,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,413,414,415,415,399,416,416,399,423,408,416,398,398,398,414,422,415,399,423,408,416,410,398,415,416,415,414,422,415,399,423,408,416,410,398,413,415,415,399,416,416,413,415,415,399,416,416,414,409,414,422,415,399,408,416,410,398,423,408,408,408,398,398,398,414,415,416,414,415,416,414,415,416,415,416,422,414,415,416,416,416,413,414,414,415,415,399,399,416,416,414,422,415,399,423,408,416,410,398,414,422,414,422,415,416,413,414,414,422,415,415,399,416,416,415,414,415,414,415,415,416,415,416,414,422,415,414,422,415,415,416,415,416,415,416,415,416,398,398,398,413,414,414,414,414,422,415,415,415,399,399,399,423,408,416,416,416,410,398,422,415,399,416,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,398,414,398,1273,399,399,414,422,415,399,423,408,416,410,398,399,423,399,399,410,423,399,410,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,408,416,398,408,415,416,415,416,415,422,408,415,416,415,416,364,399,416,398,399,399,415,416,415,416,415,416,415,416,416,416,1274,1274,1274,1274,1274,1274,1275,399,1275,398,398,398,408,408,415,408,399,399,408,398,398,0,423,398,408,0,415,415,398,398,414,422,413,414,414,415,415,399,399,416,416,414,399,398,423,408,398,0,415,399,415,399,399,408,399,408,413,414,414,415,415,399,399,416,416,399,413,414,414,415,415,399,399,416,416,399,423,416,399,414,398,398,398,398,364,414,408,413,414,414,415,415,399,399,416,416,422,415,399,416,422,416,398,415,399,423,416,398,415,399,423,416,398,399,414,422,415,399,423,408,416,410,398,415,415,414,399,0,410,415,399,416,399,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,0,409,0,423,399,399,1273,413,414,414,415,415,399,399,416,416,1276,1277,1278,415,416,415,416,414,422,413,414,414,415,415,399,399,416,416,1276,1277,1278,415,416,415,416,398,0,0,0,0,428,428,428,428,428,428,428,414,428,428,428,428,428,422,428,422,428,428,428,428,428,428,428,428,428,428,428,428,364,428,414,422,414,364,414,422,428,428,428,428,428,428,428,428,414,422,0,0,0,0,0,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,424,424,438,424,424,438,424,438,424,424,439,441,438,438,440,424,424,439,441,438,438,440,424,438,424,438,424,439,438,440,424,438,424,439,438,440,424,438,440,424,438,440,424,439,441,438,440,424,438,424,424,439,441,438,438,440,424,424,439,441,438,438,440,424,439,441,438,440,424,424,424,439,439,441,441,438,440,440,424,424,438,438,440,424,424,424,438,438,438,440,440,440,424,424,424,439,438,438,440,440,424,424,439,441,438,438,440,424,439,441,438,440,438,424,424,439,441,438,440,438,424,438,438,424,438,438,424,438,424,439,441,438,440,424,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,424,424,424,424,439,441,424,439,441,438,440,424,438,424,438,424,438,438,424,438,438,438,424,438,438,424,438,440,424,438,439,441,439,441,424,438,438,440,424,438,424,424,438,438,424,424,438,424,438,424,424,438,440,439,441,438,424,424,424,424,439,438,440,438,440,438,440,424,438,424,439,441,438,440,424,424,424,439,441,438,438,438,440,424,424,439,441,438,440,424,439,441,438,440,424,438,438,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,438,438,438,0,0,429,429,429,429,429,429,429,429,429,415,415,429,429,429,429,429,415,429,429,429,429,429,429,429,429,429,429,429,429,429,429,415,429,429,429,429,429,429,429,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,450,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,452,452,376,376,453,453,454,455,436,436,450,450,456,457,397,397,451,451,452,376,376,453,453,455,436,450,456,457,397,451,376,453,458,459,458,459,464,397,397,451,458,459,452,376,453,461,349,460,397,451,349,460,452,376,453,461,349,349,460,460,397,451,0,0,401,462,436,461,461,461,461,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,455,0,0,0,401,463,452,376,453,462,454,436,450,349,460,397,451,401,463,452,376,453,462,464,461,436,450,397,451,465,376,376,453,453,436,436,450,450,397,397,451,451,401,463,462,376,453,454,436,450,397,451,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,452,454,348,452,454,348,397,451,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,462,436,450,401,463,462,425,397,451,465,0,401,463,452,376,453,462,454,455,436,450,349,460,456,457,397,451,348,425,463,450,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,349,460,376,453,401,401,463,463,452,452,452,376,376,453,453,462,462,455,455,436,436,450,450,397,397,451,451,401,401,463,463,452,376,376,453,453,462,462,455,455,436,436,450,450,397,397,451,451,376,453,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,436,450,397,451,401,401,401,463,463,463,468,468,468,452,452,452,376,376,376,453,453,453,462,462,462,464,464,464,461,461,461,454,454,454,455,455,455,436,436,436,450,450,450,349,349,349,460,460,460,456,456,456,457,457,457,397,397,397,451,451,451,465,465,465,458,458,458,459,459,459,348,348,348,461,376,397,425,376,376,453,453,436,436,450,450,397,397,451,451,401,463,468,452,376,453,462,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,401,463,463,468,468,468,468,468,452,376,376,376,453,453,453,462,462,464,461,454,455,436,436,436,436,450,450,450,450,349,460,456,456,457,457,397,397,397,397,451,451,451,465,465,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,397,349,460,349,460,455,376,453,455,436,450,397,451,401,401,463,462,465,460,401,463,462,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,465,401,463,376,453,462,464,461,436,450,349,460,456,457,397,451,465,455,455,452,454,464,436,450,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,462,436,450,455,461,464,461,454,349,460,456,457,465,401,463,462,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,462,401,463,462,401,463,401,463,462,401,463,468,452,376,376,376,453,453,453,462,464,461,454,455,436,436,436,450,450,450,349,460,456,456,456,457,457,457,397,397,397,451,451,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,464,461,454,349,460,456,457,465,460,460,401,463,462,436,450,401,463,376,453,462,436,450,397,451,454,456,457,349,460,401,463,461,436,450,455,461,461,455,397,451,401,463,452,376,453,462,461,436,450,397,451,436,450,397,451,349,460,349,460,460,460,349,460,349,460,460,460,349,460,349,460,460,460,460,460,460,460,452,376,453,462,454,436,450,397,451,401,463,462,462,452,376,453,462,454,436,450,397,451,401,463,462,462,401,401,463,463,452,452,376,376,453,453,462,462,454,455,455,436,436,450,450,397,397,451,451,401,401,463,463,452,376,376,453,453,462,462,455,455,436,436,450,450,397,397,451,451,460,452,376,453,455,436,450,397,451,401,463,468,452,376,453,462,464,454,455,436,450,349,460,456,457,397,451,465,460,455,465,458,459,461,461,397,451,458,459,436,450,397,451,0,454,397,451,458,459,376,453,462,460,401,462,349,460,460,349,460,452,454,348,460,0,0,376,349,460,349,460,349,460,397,451,460,461,461,464,398,425,0,397,451,376,453,455,397,451,349,460,465,401,463,376,376,453,453,462,436,436,450,450,397,397,451,451,401,463,462,401,463,462,452,452,401,463,462,349,460,458,459,458,459,458,459,401,425,401,463,462,0,0,460,461,376,453,436,450,456,457,397,451,397,451,461,452,376,376,376,453,453,453,454,455,436,450,456,457,397,451,452,376,376,453,453,455,436,450,456,457,397,451,452,452,436,436,450,450,397,397,451,451,425,464,461,349,460,465,349,460,349,460,349,460,453,460,451,376,464,349,397,376,453,436,450,349,460,456,457,397,451,453,451,349,460,349,460,460,462,401,463,376,453,462,436,450,397,451,401,463,376,453,462,436,450,397,451,401,463,376,453,462,436,450,397,451,401,463,376,453,462,436,450,397,451,401,463,462,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,397,451,468,468,401,397,464,461,456,457,397,451,465,376,453,436,450,456,457,397,451,453,451,401,463,376,453,462,436,450,397,451,462,436,401,463,376,453,462,464,461,436,450,349,460,456,457,397,451,465,401,463,376,453,462,436,450,397,451,376,453,436,450,456,457,455,456,454,457,454,457,464,464,454,454,349,349,456,456,461,460,457,460,461,454,460,457,460,454,456,457,454,456,457,464,464,454,454,349,349,456,461,460,461,460,401,463,462,349,460,465,401,463,452,376,453,462,454,436,450,349,460,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,462,461,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,0,0,461,455,463,450,468,401,463,462,436,450,349,460,397,397,451,397,451,349,460,468,376,453,456,457,397,451,458,459,401,463,462,453,451,459,463,453,451,459,463,468,376,453,456,457,397,451,458,459,401,463,462,376,397,453,451,459,463,468,453,457,451,459,463,401,463,452,376,376,453,453,462,455,436,436,450,450,397,397,451,451,0,420,420,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1279,1280,1281,1273,1281,1282,1282,1282,1280,1283,1284,1283,1284,1284,1284,1283,1284,1283,1284,1284,1284,1283,1284,1283,1284,1284,1284,1284,1284,1284,1284,1275,1285,1275,1285,1286,1282,1280,1287,1286,1280,1287,1288,1273,1281,1277,1289,1278,1290,1288,1291,1292,1277,1289,1278,1290,1288,1291,1292,1289,1290,1288,1292,0,0,0,0,0,466,471,467,472,469,0,0,0,0,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,416,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,416,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,430,431,474,430,431,474,430,431,430,431,416,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,413,0,0,413,413,413,413,413,413,413,413,413,413,413,413,413,395,395,413,413,0,0,0,0,0,0,0,0,0,0,0,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,476,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,477,478,475,393,477,478,475,475,477,476,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,0,0,0,0,0,0,0,0,0,1293,1294,1295,1295,1295,1295,1295,1295,1296,1296,0,1297,0,0,1294,1298,1299,1300,1298,1299,1300,0,0,0,0,0,0,0,0,0,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,360,363,363,392,360,363,384,389,381,392,360,363,384,389,381,360,363,363,360,363,384,389,381,360,363,384,389,381,392,360,363,384,389,381,360,363,363,360,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,360,363,363,360,363,381,389,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,384,389,381,392,392,360,363,384,389,381,360,363,363,360,363,392,384,389,381,360,363,363,389,360,363,363,360,363,363,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,360,360,0,0,0,0,0,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,362,479,479,362,479,386,362,479,386,362,362,479,479,386,386,362,479,386,362,362,479,479,362,479,386,362,479,386,362,479,386,362,479,386,362,362,479,479,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,386,362,479,386,362,362,479,479,479,386,386,362,479,362,362,479,479,362,362,479,479,386,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,0,0,0,0,0,0,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,366,367,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,382,388,387,390,382,382,366,367,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,0,0,0,406,0,396,396,396,396,396,400,396,396,400,396,406,400,396,396,400,396,396,396,476,400,396,400,400,396,396,396,400,400,400,400,400,400,400,400,396,400,400,400,400,400,396,476,400,396,337,336,339,0,0,0,337,336,337,339,336,0,0,335,335,335,338,338,335,335,0,0,0,270,0,270,14,313,14,313,14,313,14,313,14,313,14,14,14,313,14,313,14,313,14,313,313,14,313,14,313,14,313,14,313,14,313,313,14,313,313,14,313,14,313,14,313,270,14,14,313,14,313,14,313,14,313,14,313,14,313,14,313,14,313,14,313,313,313,313,14,14,313,14,313,14,313,14,313,14,313,14,313,14,313,14,313,14,313,0,0,280,280,280,280,280,280,280,0,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,0,280,280,280,280,280,280,280,280,280,280,0,0,0,263,0,25,182,263,25,182,25,182,25,182,25,182,25,25,25,182,25,182,25,182,25,182,25,182,25,25,182,25,182,25,182,0,25,182,182,182,182,182,25,182,25,182,25,182,25,182,182,25,182,25,182,25,182,25,182,25,182,25,182,25,182,25,182,25,182,0,182,25,25,25,182,25,182,25,182,25,182,25,182,25,182,25,182,25,182,182,25,182,0,25,25,0,0,0,62,62,0,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,57,62,57,62,57,62,481,57,62,57,62,481,57,62,481,57,62,481,0,481,57,62,481,57,62,57,57,57,62,62,62,57,62,57,57,62,481,57,62,481,57,57,57,57,62,481,57,62,481,57,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,0,481,481,481,481,481,481,481,481,481,481,481,57,62,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,57,62,481,0,0,481,0,0,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,0,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,0,315,315,315,315,315,315,315,315,315,0,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,0,0,0,0,0,219,0,29,484,483,219,29,484,483,29,484,483,29,484,483,29,484,483,29,29,29,484,483,29,484,483,29,29,29,484,483,483,29,484,483,29,484,483,29,484,483,29,484,483,29,483,484,29,484,483,29,484,483,29,484,483,29,484,483,29,484,483,29,484,483,29,484,483,29,29,484,483,29,484,483,29,484,483,29,484,483,484,483,484,484,29,29,484,29,484,484,484,29,29,484,483,29,484,483,29,484,483,29,484,483,29,484,483,29,484,483,29,484,483,29,484,483,484,496,0,0,494,324,493,0,0,0,0,485,0,0,324,0,492,493,488,485,494,0,496,0,0,489,490,492,0,324,0,0,485,494,0,489,490,0,276,0,0,0,494,485,488,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,316,486,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,93,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,487,318,93,94,488,489,485,490,317,491,316,324,492,493,494,325,93,94,488,489,485,490,317,491,316,324,492,493,494,325,316,317,491,94,317,491,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,486,493,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,0,318,486,93,94,318,486,488,489,485,490,317,491,316,316,324,492,493,494,325,496,94,488,485,317,491,488,488,488,485,485,485,317,317,317,491,491,491,93,94,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,316,316,488,490,317,491,276,276,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,316,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,316,486,316,496,316,0,316,496,316,316,316,0,316,318,486,316,486,490,316,317,491,276,325,316,316,488,316,325,488,490,316,490,0,318,486,316,318,93,94,488,489,485,490,317,491,316,324,492,493,494,325,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,0,94,316,1301,1301,1301,1301,1302,1303,1304,1303,1305,1305,1305,1305,1305,0,495,495,495,0,495,0,498,495,498,495,498,495,498,495,498,495,498,495,498,495,495,498,495,498,495,498,495,498,495,498,495,498,495,498,495,495,498,495,498,495,498,495,498,498,495,498,495,316,498,495,498,495,498,495,498,495,498,495,498,495,498,495,498,495,498,316,495,495,498,495,498,495,498,495,498,495,498,495,498,495,498,495,498,495,498,495,1306,1307,1308,1307,1308,1306,0,311,311,0,0,311,0,0,311,289,0,289,11,501,311,500,11,501,311,500,11,501,311,500,11,501,311,500,11,501,311,500,11,11,11,501,311,500,11,501,311,500,11,311,500,11,311,500,500,11,501,311,500,501,311,11,501,311,500,11,501,311,500,11,501,311,500,0,11,501,311,500,311,500,11,501,311,500,500,11,501,311,500,11,501,311,500,11,501,311,500,11,289,11,501,311,500,11,501,311,500,11,501,311,500,11,501,311,500,11,311,500,11,501,311,500,11,501,311,500,11,501,311,500,11,501,311,500,0,500,0,0,11,500,500,11,11,311,500,11,501,311,500,11,501,311,500,11,501,311,500,11,501,311,500,11,501,311,500,11,501,311,500,11,501,311,500,11,501,311,500,0,1309,1309,1310,0,0,291,0,27,291,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,504,0,0,503,504,504,504,503,503,502,502,0,503,0,504,0,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,502,503,504,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,502,503,504,502,502,502,503,503,503,504,504,504,323,502,503,504,504,323,502,503,504,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,504,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,323,0,0,293,0,293,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,293,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,506,0,506,506,506,0,295,0,28,506,295,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,28,506,28,506,28,506,28,506,28,506,506,28,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,506,28,0,0,286,0,188,508,286,0,0,0,188,0,0,0,508,0,229,0,286,0,326,326,229,229,7,509,187,188,286,507,508,181,510,326,507,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,7,509,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,509,7,509,187,188,286,507,508,181,510,326,326,187,188,286,507,508,510,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,229,229,0,7,509,187,188,286,507,508,181,510,326,187,188,286,507,508,181,508,508,508,181,181,181,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,181,286,229,229,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,0,507,0,507,181,510,326,510,0,510,510,510,510,7,507,510,0,510,510,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,7,509,187,188,286,507,508,181,510,326,181,510,7,509,187,188,286,507,508,181,510,326,0,286,507,187,188,187,188,1311,1311,0,511,511,0,307,0,511,0,307,0,511,512,511,512,511,512,511,512,511,512,511,512,511,512,511,511,511,512,511,512,512,511,512,511,512,511,307,512,511,511,512,511,512,511,512,511,512,511,512,512,512,512,511,512,511,512,511,512,511,511,512,511,512,511,512,511,512,511,307,65,65,512,511,512,511,512,511,512,511,512,511,512,511,512,511,512,511,512,511,307,520,520,525,521,525,560,522,629,0,0,558,0,540,603,514,0,0,612,611,611,637,574,574,574,574,574,574,574,574,574,574,574,574,574,574,522,520,614,524,525,614,519,522,520,564,0,0,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,0,0,0,0,0,0,0,0,0,0,0,0,548,0,530,629,0,530,0,0,0,0,0,0,0,0,0,520,528,528,525,522,523,522,528,520,0,0,526,527,526,527,522,563,619,619,576,0,0,0,0,0,0,0,0,628,0,0,0,0,0,0,556,553,0,555,555,563,555,615,555,615,555,555,615,521,520,522,520,522,521,520,519,599,599,626,514,514,514,514,514,0,540,0,638,0,0,0,0,577,553,632,0,0,556,556,548,0,636,0,514,514,514,514,548,603,0,0,514,514,514,514,514,514,0,524,520,523,528,522,522,522,0,0,611,611,566,0,628,626,610,610,610,610,610,610,610,610,610,610,0,564,0,636,519,525,614,548,0,669,603,603,575,549,601,522,526,526,522,520,613,0,0,0,0,0,0,0,0,0,611,599,599,0,612,0,606,0,0,553,599,599,0,603,603,0,566,562,562,620,576,0,602,669,549,520,0,526,526,519,522,524,524,524,524,524,520,520,520,611,0,0,0,0,558,548,558,619,0,522,523,522,514,620,603,628,549,1312,603,559,635,678,556,556,556,556,556,556,556,556,612,634,634,0,0,0,553,565,602,668,602,669,520,520,520,520,560,519,520,0,0,0,635,0,540,540,540,566,562,1313,590,0,612,0,612,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,514,514,514,514,514,514,514,514,514,514,514,514,520,520,522,525,614,527,559,560,520,659,609,627,627,0,0,0,0,0,0,0,0,0,0,0,0,619,599,0,0,0,558,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,520,519,520,520,520,520,520,520,520,526,527,524,520,522,0,530,629,530,0,0,0,0,0,0,0,0,0,0,626,610,610,610,610,610,610,610,610,552,552,552,610,610,610,610,1312,556,556,556,556,556,632,514,0,540,0,0,625,629,0,577,0,0,678,669,558,0,0,0,0,0,0,0,0,520,527,520,520,520,520,520,520,520,520,520,614,0,629,0,0,0,0,0,0,0,0,0,530,530,0,0,602,669,635,634,562,562,526,520,522,522,626,597,610,610,597,610,610,610,610,610,610,0,625,638,575,610,610,610,610,575,521,523,526,522,520,523,528,522,0,520,522,519,565,668,637,637,637,606,0,0,0,0,0,553,548,522,614,1313,590,1313,590,0,0,0,571,658,0,609,627,616,617,556,599,634,614,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,514,584,584,584,519,520,521,522,523,524,525,526,527,528,520,520,573,560,1314,662,569,584,533,582,547,587,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,529,529,532,533,534,515,535,535,537,538,539,1315,1316,582,536,633,547,514,587,614,592,554,663,582,547,582,547,518,543,543,542,518,579,593,595,583,585,630,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,519,519,520,520,521,521,522,522,523,523,524,524,525,525,526,526,527,527,528,528,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,561,514,514,514,584,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,1317,531,631,588,624,546,546,594,518,518,548,549,519,550,520,521,546,551,522,552,553,554,523,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,524,570,571,572,573,574,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,526,611,612,527,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,638,548,549,519,550,520,521,546,551,522,552,553,554,523,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,524,570,571,572,573,574,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,526,611,612,527,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,638,551,522,552,613,560,545,600,1316,633,551,522,552,613,584,601,550,1318,555,519,520,521,522,523,524,525,526,527,528,522,514,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,514,532,567,594,519,520,521,522,523,524,525,526,527,528,519,520,522,523,524,525,526,527,528,518,518,518,518,1319,569,630,533,515,515,515,515,515,515,515,534,515,515,515,515,515,515,515,515,533,533,515,515,515,535,567,521,549,519,550,520,521,546,551,555,558,559,562,563,566,533,567,569,576,577,578,525,582,583,584,545,592,594,541,597,599,600,601,606,611,612,662,614,617,618,540,619,620,622,624,625,626,547,636,637,663,595,601,581,535,618,623,591,600,545,595,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,539,538,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,1314,515,529,535,554,554,519,520,521,522,523,524,525,526,527,528,535,1320,582,542,542,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,546,546,543,543,653,653,543,543,653,653,543,543,653,653,543,543,653,653,554,554,678,548,549,519,550,520,521,546,551,522,532,532,658,659,552,553,554,523,555,537,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,534,515,515,568,569,529,529,524,570,535,535,517,517,655,655,643,643,642,642,656,656,571,572,657,651,651,654,654,647,647,664,664,518,518,543,543,542,542,573,653,574,665,665,544,544,516,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,666,602,603,604,605,606,607,608,609,610,539,539,538,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,559,663,519,520,521,522,523,524,525,526,527,528,543,579,593,543,542,586,598,588,589,596,533,548,549,519,550,520,521,546,551,522,552,553,554,523,555,556,557,558,559,560,561,562,563,564,565,566,567,569,524,573,574,575,514,576,577,578,525,582,584,587,592,594,595,597,599,600,601,602,603,606,607,608,609,610,526,611,612,527,613,614,615,616,617,618,540,619,620,621,622,623,625,626,627,628,629,630,632,547,634,528,637,548,548,548,549,549,549,519,519,519,550,550,550,520,520,520,521,521,521,546,546,546,551,551,551,522,522,522,552,552,552,553,553,553,554,554,554,523,523,523,555,555,555,556,556,556,557,557,557,558,558,558,559,559,559,560,560,560,561,561,561,562,562,562,563,563,563,564,564,564,565,565,565,566,566,566,567,567,567,569,569,569,524,524,524,573,573,573,574,574,574,575,575,575,514,514,514,576,576,576,577,577,577,578,578,578,525,525,525,582,582,582,587,587,587,592,592,592,594,594,594,595,595,595,597,597,597,599,599,599,600,600,600,601,601,601,602,602,602,603,603,603,606,606,606,607,607,607,608,608,608,609,609,609,610,610,610,526,526,526,611,611,611,612,612,612,527,527,527,613,613,613,615,615,615,616,616,616,617,617,617,618,618,618,540,540,540,619,619,619,620,620,620,621,621,621,622,622,622,623,623,623,625,625,625,626,626,626,627,627,627,628,628,628,629,629,629,630,630,630,632,632,632,547,547,547,634,634,634,528,528,528,637,637,637,543,519,520,521,522,523,524,525,526,527,528,601,534,515,518,653,551,573,663,548,549,519,519,519,519,519,550,520,520,520,520,520,521,521,521,521,521,546,551,522,522,522,522,522,532,552,553,554,523,523,523,523,523,555,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,524,524,524,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,525,525,525,525,582,583,584,585,586,545,587,588,589,591,592,593,594,541,595,596,597,598,599,600,601,666,602,602,603,604,604,605,605,606,607,607,608,609,610,539,538,668,668,526,526,526,526,526,611,612,527,527,527,527,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,528,528,528,528,636,637,663,638,550,1318,535,1314,1320,561,582,595,608,623,662,591,678,548,549,519,519,550,520,521,546,551,522,532,658,658,659,552,553,554,523,555,537,556,557,558,559,560,561,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,604,605,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,519,520,521,522,523,524,525,526,527,528,519,519,520,520,521,521,522,522,523,523,524,524,525,525,526,526,527,527,528,528,519,520,521,522,523,524,525,526,527,528,521,533,533,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,540,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,659,592,567,614,533,654,647,532,532,532,534,534,570,570,534,534,516,663,532,534,515,529,535,517,655,643,642,656,651,654,647,665,544,516,514,514,514,629,514,548,549,519,550,520,521,546,551,522,552,523,555,556,557,558,559,560,561,562,563,564,566,567,569,524,573,574,575,514,576,577,578,525,587,592,594,595,597,599,600,601,603,606,608,610,526,611,612,527,615,616,617,618,540,619,620,621,622,623,625,626,627,628,629,630,634,528,637,535,1314,618,0,0,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,519,520,521,522,523,524,525,526,527,528,518,543,542,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,519,520,521,522,523,524,525,526,527,528,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,519,520,521,522,523,524,525,526,527,528,514,514,595,595,514,514,519,520,521,522,523,524,525,526,527,528,592,594,547,613,514,678,592,595,601,514,595,562,534,590,551,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,1321,1322,1323,1324,1320,1319,572,657,582,583,584,586,545,591,541,596,598,600,622,547,1317,586,591,596,631,534,515,551,578,584,584,584,570,590,622,1322,569,546,546,546,546,546,546,546,546,546,546,546,546,618,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,584,546,546,1315,1316,536,633,535,1320,582,547,618,547,584,588,589,596,543,543,543,543,591,591,600,554,592,601,603,533,519,520,521,522,523,524,525,526,527,528,545,531,608,624,516,515,559,580,1315,1316,536,633,678,551,522,552,565,613,601,618,514,515,533,567,518,543,542,515,550,1318,1316,633,666,1314,662,591,583,518,543,542,515,579,593,614,621,592,556,519,520,521,522,523,524,525,526,527,528,514,533,534,514,1321,1321,518,580,585,624,535,1320,600,524,514,519,520,521,522,523,524,525,526,527,528,543,543,542,653,653,543,515,543,543,653,653,543,543,542,653,653,543,543,542,653,653,543,543,543,543,653,653,543,608,551,529,535,610,1322,1320,531,514,529,594,604,605,668,572,657,559,621,515,595,581,623,587,515,578,567,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,516,666,524,519,520,521,522,523,524,525,526,527,528,589,1315,1316,666,536,633,545,541,617,616,548,549,519,550,520,521,546,551,522,552,553,554,523,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,524,570,571,572,573,574,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,526,611,612,527,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,638,602,604,605,607,668,548,602,604,605,607,668,536,633,519,520,521,522,523,524,525,526,527,528,567,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,1319,630,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,567,519,520,521,522,523,524,525,526,527,528,529,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,529,535,1314,1322,1320,662,559,546,546,0,554,591,0,580,581,1314,1320,630,590,590,535,1314,618,521,516,516,561,592,516,518,543,542,616,617,616,617,617,1325,1325,1326,1326,1327,1327,1326,1327,1325,1328,1329,1329,1330,1331,1330,1332,1332,1333,1333,1334,0,0,0,0,1335,0,1335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,0,0,0,693,0,0,0,0,0,0,0,0,0,695,695,695,695,0,695,0,0,695,0,695,706,706,0,695,694,0,0,0,695,694,695,702,695,707,698,698,694,0,702,694,695,708,695,708,695,695,695,695,695,695,695,695,694,0,702,707,695,695,693,693,702,703,695,702,703,696,0,0,702,0,695,693,698,706,706,698,695,696,698,695,693,693,698,706,706,703,694,702,702,703,695,707,698,703,695,695,695,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,687,691,692,687,691,692,704,699,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,709,705,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,687,691,692,697,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,687,702,703,704,691,691,705,706,707,710,692,692,708,709,700,701,704,705,709,704,704,704,705,705,705,709,709,709,693,693,694,694,695,695,696,696,697,697,698,699,700,701,687,702,702,703,703,704,691,705,706,707,707,710,692,708,708,709,709,695,702,693,693,693,694,694,695,695,695,695,695,696,697,698,699,700,701,687,702,702,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,709,704,705,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,697,687,700,701,704,700,697,705,704,699,709,705,693,694,695,702,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,693,694,695,696,697,702,703,707,708,709,693,694,695,696,697,702,703,707,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,697,1336,1337,1337,1338,1338,1338,1336,1336,1337,1338,1337,1338,1337,1338,1337,1338,1339,1340,1341,1342,1343,1344,1343,1345,1346,1347,1348,1349,1350,1351,1352,1341,1339,1340,1342,1343,1344,1350,1347,1351,1348,1345,1346,1344,1341,1349,1352,1350,1351,1352,1347,1346,1348,1345,1353,1354,1353,1354,1355,1356,1356,1357,1358,1357,1358,1355,1357,1358,1359,1360,1361,1362,1362,1359,1360,1359,1360,1362,1362,1361,735,735,0,747,747,0,0,754,754,742,728,747,728,731,727,730,736,724,736,750,754,737,0,745,721,747,0,0,0,0,0,0,0,0,0,750,750,0,750,0,750,750,0,745,749,722,731,724,728,734,747,753,738,728,754,0,747,754,0,728,734,747,751,742,754,754,754,0,750,0,0,0,727,730,747,747,731,731,735,730,728,747,747,730,753,747,722,728,731,747,724,728,734,750,750,724,750,747,747,750,724,728,750,750,731,746,727,728,750,728,731,728,747,728,731,734,747,731,747,750,721,750,731,747,724,750,750,724,724,750,747,731,731,737,0,750,747,747,730,728,731,736,724,724,750,750,728,747,750,728,747,730,747,727,730,750,724,731,730,747,747,724,753,733,735,747,754,0,0,733,754,728,731,0,736,754,728,747,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,734,0,728,747,750,754,754,754,754,754,754,754,754,0,749,738,0,747,750,750,747,733,746,751,0,724,731,750,750,750,750,750,750,750,724,722,731,730,750,750,747,731,734,735,730,731,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,718,719,718,719,1365,1366,725,743,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,1367,0,740,739,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,744,720,1366,752,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,1363,1364,718,719,0,720,726,732,744,741,720,744,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,718,720,756,721,722,719,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,756,752,725,743,720,725,727,730,733,737,738,739,740,741,742,743,744,720,720,720,725,725,725,727,727,727,730,730,730,733,733,733,737,737,737,738,738,738,739,739,739,742,742,742,743,743,743,757,758,720,756,721,721,722,722,719,723,723,724,724,725,726,727,727,728,728,729,729,730,730,731,731,732,733,734,734,735,735,736,736,737,738,739,740,741,742,743,744,745,745,746,746,747,747,748,748,749,750,750,751,751,752,753,753,754,754,722,723,728,729,731,734,747,748,750,754,757,758,1363,1364,718,720,756,721,721,722,719,723,724,724,725,726,727,727,728,728,728,728,728,728,728,728,728,728,728,729,730,730,731,731,731,731,731,731,732,733,733,734,734,734,734,734,735,736,737,738,739,740,741,742,743,744,745,746,747,747,747,747,747,747,747,747,747,747,747,747,747,747,748,749,750,750,750,751,751,751,751,752,753,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,732,720,737,738,742,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,718,718,1368,720,726,744,752,1367,739,1365,1366,720,757,758,756,744,1365,1366,756,757,758,1366,752,725,743,739,0,740,720,723,729,748,758,756,721,723,724,727,728,729,730,731,734,747,748,750,751,753,741,739,752,1365,1366,726,744,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,721,722,723,724,727,728,729,730,731,734,735,736,745,746,747,748,750,751,753,754,721,722,723,724,727,728,729,730,731,734,735,736,745,746,747,748,750,751,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,740,741,732,732,732,1369,1369,1370,1370,1370,1371,1371,1372,1372,1373,1373,1371,1372,1374,1374,1375,1375,1376,1376,1375,1377,1378,1378,1377,1379,1380,1381,1380,1382,1383,1382,1383,1384,1379,1384,1383,1384,1385,1385,1386,1385,1386,1387,1387,1388,1389,1388,1390,1390,1391,1391,1392,1393,1392,1393,1394,1394,1395,1395,1396,1397,1398,1398,1397,1396,1399,1400,1396,1397,1394,1394,1395,1395,1401,1401,1402,1399,1400,1397,1398,1398,1402,1399,1400,1403,1403,1403,1404,1403,1404,1404,1403,1403,1405,1406,1407,1408,1409,1410,1411,1408,1410,1405,1406,1407,1412,1409,1413,1408,1410,1411,1408,1410,1410,1412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,759,759,759,759,714,0,714,714,0,0,714,767,768,0,0,768,714,0,766,0,0,767,714,766,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,0,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,755,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,772,773,766,767,768,759,769,714,713,712,770,766,767,768,759,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,755,771,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,771,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,755,772,772,773,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,767,767,767,767,755,766,766,767,768,759,759,769,769,714,714,713,713,712,712,770,755,772,773,775,1414,805,766,766,767,768,759,771,769,714,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,775,775,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,0,805,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,805,766,767,768,759,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,1415,771,0,1415,1415,0,805,770,766,771,766,767,768,759,769,714,713,712,770,766,759,769,714,713,712,766,759,769,714,713,712,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,713,712,770,773,1416,1417,1418,1419,1416,1417,1418,1419,1416,1416,1417,1418,1419,0,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,782,781,782,781,782,781,0,780,0,780,781,0,0,782,781,0,0,781,781,0,782,780,781,0,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,777,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,784,778,779,780,781,778,779,780,781,777,784,785,778,782,779,780,781,777,782,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,777,784,785,778,782,779,780,781,777,777,784,785,778,782,779,780,781,778,782,779,779,780,780,781,781,777,784,785,778,782,779,780,780,780,780,781,781,781,777,784,785,778,782,779,780,781,785,785,777,784,785,778,782,779,780,781,778,777,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,778,777,780,781,778,779,780,781,779,780,781,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,784,0,0,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,0,0,0,711,787,711,787,711,787,711,787,711,787,711,711,711,787,711,787,711,711,787,711,711,787,711,711,787,711,787,711,787,711,787,711,787,787,788,787,0,711,787,711,787,711,787,711,787,711,787,711,787,711,787,787,711,787,711,787,711,787,711,787,711,787,787,711,711,711,711,787,787,711,711,711,711,787,787,711,787,711,787,711,787,711,787,711,787,711,787,711,787,711,787,0,0,791,677,791,791,791,791,791,791,791,791,791,791,791,677,791,677,791,677,791,677,791,791,791,791,791,677,791,677,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,677,791,791,791,791,791,791,791,791,791,791,791,677,791,677,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,677,791,791,677,791,677,677,677,677,677,791,677,791,677,791,791,791,677,791,677,677,791,677,791,791,791,791,677,791,677,791,677,791,677,791,677,791,677,791,677,791,677,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,677,791,677,791,791,791,791,791,791,791,791,677,791,677,791,677,791,677,791,677,791,677,791,677,791,677,677,0,641,641,641,641,641,0,0,0,830,1420,817,830,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,817,830,817,830,1420,817,830,1420,817,830,817,830,817,830,1420,817,830,830,817,830,1420,817,830,1420,817,830,817,830,1420,817,830,1420,817,817,817,817,817,817,830,1420,817,830,1420,817,830,1420,817,830,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,817,830,817,830,817,830,817,830,817,830,817,830,817,830,817,830,830,817,830,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,833,689,689,689,689,689,689,689,689,689,689,689,833,689,689,833,689,0,0,0,0,0,836,834,790,834,790,834,790,834,790,834,790,836,790,834,790,834,790,834,790,834,834,790,834,790,834,790,834,790,834,790,834,834,790,834,790,834,790,834,790,836,790,834,790,834,790,834,790,834,790,834,790,834,790,834,790,834,790,834,834,834,836,834,790,834,790,834,790,834,790,834,790,834,790,834,790,834,790,0,0,671,0,0,0,816,0,671,0,799,823,671,799,823,821,0,671,816,671,821,671,0,0,0,0,823,671,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,798,795,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,686,837,799,823,671,797,821,686,837,799,823,671,797,821,1421,798,795,816,686,837,673,799,823,671,797,821,795,686,673,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,673,837,837,799,799,823,823,671,671,797,797,821,821,1421,798,795,816,686,837,673,799,823,671,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,673,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,795,798,673,673,0,1421,686,671,686,837,799,823,671,797,821,837,799,823,671,797,821,837,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,673,850,850,0,849,862,870,862,870,848,885,885,849,849,877,878,0,881,877,878,881,0,848,885,0,885,849,849,849,849,849,848,889,894,0,885,882,850,0,0,889,860,860,868,861,882,885,0,0,848,876,0,889,862,870,889,0,847,871,871,0,889,885,849,865,865,849,860,879,885,859,0,0,863,885,889,849,849,849,849,849,849,867,860,867,867,867,886,849,869,885,0,0,849,849,877,849,863,0,889,0,877,882,878,877,878,849,849,0,849,870,850,870,850,849,0,0,0,0,849,849,879,864,862,849,849,849,860,859,849,894,860,0,839,0,885,0,860,0,885,882,877,858,877,0,839,870,886,850,870,850,889,848,0,0,885,0,885,885,889,877,878,888,849,860,0,849,849,881,881,889,840,849,849,877,858,877,864,0,885,885,860,860,0,885,847,849,849,877,876,877,889,885,0,848,878,849,878,849,849,849,894,0,877,877,876,871,879,849,877,883,883,883,860,849,0,849,849,849,849,849,864,860,860,848,860,849,0,860,839,888,839,861,868,868,868,868,868,868,868,868,868,868,868,868,849,0,848,889,0,885,885,849,849,885,0,0,889,849,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,849,841,840,865,860,0,860,869,848,0,849,0,848,0,885,0,877,877,849,849,849,862,883,849,0,0,0,0,885,849,0,849,839,869,0,0,889,848,0,877,878,889,0,0,885,0,849,849,888,849,861,849,0,0,870,886,850,844,862,885,0,858,839,0,849,849,849,849,849,848,848,0,859,860,860,884,841,880,0,839,860,860,889,885,880,884,884,880,884,884,882,885,839,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,840,841,842,843,846,847,849,892,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,842,850,850,0,866,873,874,890,891,840,841,840,841,840,841,840,841,840,840,841,841,840,841,840,841,887,892,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,848,843,852,843,843,852,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,857,858,859,839,860,861,862,863,864,865,867,840,868,869,873,876,877,878,879,880,881,849,0,845,857,858,859,839,860,861,862,863,864,865,867,840,868,869,873,876,877,878,879,880,881,849,840,841,848,848,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,857,896,896,840,841,846,843,852,846,844,840,841,892,895,896,845,854,843,852,846,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,840,841,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,893,842,842,842,842,840,841,896,845,844,856,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,876,877,878,879,880,881,849,882,883,884,841,885,886,894,845,845,845,856,856,856,857,857,857,858,858,858,859,859,859,839,839,839,860,860,860,861,861,861,862,862,862,850,850,850,863,863,863,864,864,864,865,865,865,866,866,866,867,867,867,840,840,840,868,868,868,869,869,869,851,851,851,848,848,848,848,870,870,870,847,847,847,873,873,873,876,876,876,877,877,877,878,878,878,879,879,879,880,880,880,881,881,881,849,849,849,841,841,841,886,886,886,894,894,894,892,846,840,841,846,887,843,843,843,854,850,845,854,843,852,846,844,856,842,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,840,840,840,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,841,841,841,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,846,844,844,856,842,857,858,859,839,860,861,862,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,840,841,840,840,841,841,840,841,884,840,841,840,841,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,846,854,0,893,896,896,896,896,852,852,843,843,852,896,873,845,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,847,873,876,877,878,879,880,881,849,886,894,882,845,843,843,852,884,843,848,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,872,874,875,851,852,840,841,840,841,840,841,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,843,842,854,846,840,841,842,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,850,840,841,848,844,885,848,843,852,846,840,841,869,869,862,889,843,852,840,841,843,840,841,0,850,843,852,846,856,856,856,892,844,842,866,851,872,874,875,890,892,893,892,885,843,852,846,844,842,870,854,854,840,841,856,866,870,892,872,845,857,858,859,839,860,861,862,863,864,865,867,840,868,869,870,873,876,877,878,879,880,881,849,884,848,895,0,846,843,895,895,840,841,852,892,848,870,848,870,848,840,841,848,842,874,846,846,842,896,846,893,840,841,840,841,844,840,841,847,896,859,863,850,850,850,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,844,842,842,845,850,868,848,840,841,844,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,843,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,866,872,874,875,890,891,870,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,840,841,844,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,0,887,870,850,846,842,842,893,870,854,1422,1423,1424,1424,1424,1424,1425,1426,1427,1427,1427,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1426,1437,1429,1430,1431,1429,1438,1431,1437,1428,1427,1429,1429,1430,1439,1432,1433,1437,1440,1429,1430,1429,1438,1440,1441,1442,1439,1434,1426,1440,1430,1429,1443,1441,1436,1435,1444,1443,1441,1445,1445,1446,1446,1447,1448,1449,1450,1449,1450,1451,1451,1452,1453,1453,1454,1455,1456,1457,1457,1458,1454,1457,1456,1459,1460,1455,1456,1461,1459,1462,1460,1454,1459,1462,1455,1458,1463,1461,1456,1459,1464,1465,1466,1467,1464,1468,1469,1464,1470,1468,1471,1468,1472,1471,1472,1466,1467,1465,1472,1470,1466,904,904,904,904,904,904,0,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,0,0,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,0,904,904,904,0,904,904,904,904,904,904,904,904,904,904,904,904,904,904,906,905,905,0,905,905,905,905,905,914,905,906,905,905,907,907,914,0,0,906,905,0,914,905,905,906,905,914,905,905,905,914,914,905,0,0,0,0,905,905,0,0,905,905,906,0,914,914,0,0,914,0,0,911,917,905,907,906,908,909,912,913,910,911,914,905,906,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,908,905,906,905,906,905,906,905,906,905,905,906,906,905,906,905,906,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,905,907,906,908,909,910,911,905,907,906,908,909,910,911,905,906,917,905,907,906,908,909,912,913,910,911,914,905,906,908,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,905,906,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,905,906,909,905,907,906,909,905,905,905,906,906,906,909,909,909,905,906,905,905,905,905,905,907,907,906,906,906,906,906,908,909,912,913,910,911,914,914,917,905,907,906,908,909,912,913,910,911,914,914,917,905,907,906,908,909,912,913,910,911,914,905,906,905,905,906,906,905,906,905,906,905,906,917,905,907,906,908,909,912,913,910,911,914,909,912,917,905,907,906,908,909,912,913,910,911,914,905,906,905,906,905,906,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,905,906,917,905,907,906,908,909,912,913,910,911,914,905,906,905,906,905,906,905,906,912,909,917,907,905,906,911,907,913,905,906,910,905,906,909,914,905,906,905,906,905,906,910,913,905,907,906,908,909,910,911,907,914,907,914,905,906,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,911,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,913,905,906,917,905,907,906,908,909,912,913,910,911,914,913,908,917,908,908,1473,1473,0,0,923,0,0,923,920,0,0,0,923,923,919,919,919,0,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,918,921,924,918,919,920,921,922,923,924,918,919,920,921,922,923,918,919,920,921,918,919,920,921,924,918,919,920,921,922,923,918,921,922,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,922,918,919,920,921,918,918,918,919,919,919,921,921,921,921,918,919,920,920,921,923,923,924,918,919,920,921,922,923,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,918,919,921,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,919,921,918,921,923,918,921,918,919,920,921,920,923,919,920,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,921,0,0,0,932,0,0,0,0,932,932,925,0,928,928,928,928,0,0,925,0,0,932,932,932,932,932,932,932,932,932,932,932,932,932,932,0,931,933,925,926,927,932,928,929,930,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,926,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,929,926,925,926,927,928,929,930,925,926,927,928,929,930,931,933,925,926,927,932,928,929,930,926,927,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,933,925,926,927,928,929,930,925,925,925,926,926,926,927,927,927,929,929,929,930,930,930,929,931,925,926,927,932,932,928,928,929,930,931,933,925,926,927,932,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,925,926,927,929,930,931,933,925,926,927,932,928,929,930,929,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,929,926,931,929,927,927,0,926,927,932,929,926,925,926,927,928,929,930,932,928,932,928,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,0,929,0,938,0,935,935,935,0,0,938,0,938,938,0,938,938,937,935,937,938,934,938,936,936,934,935,936,934,935,936,937,938,939,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,939,934,935,936,937,938,939,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,934,934,935,935,935,936,936,936,937,937,937,938,938,938,939,939,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,939,939,939,939,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,941,940,942,942,942,942,942,942,942,942,942,942,942,942,942,942,0,0,942,942,942,941,942,0,942,942,942,942,942,942,942,941,940,0,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,943,0,942,941,942,942,942,942,942,942,942,942,942,942,942,942,942,942,943,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,0,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,941,942,942,942,942,940,942,942,942,942,942,943,942,942,942,946,946,942,0,942,942,942,942,0,942,946,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,940,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,943,943,942,942,942,942,942,942,942,942,942,942,942,942,942,0,0,0,949,942,943,944,940,941,945,946,947,948,940,941,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,945,947,940,941,940,941,940,941,940,941,940,940,941,941,940,941,940,941,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,947,947,942,943,944,940,941,945,946,947,948,942,943,944,940,941,945,946,947,948,942,942,940,941,949,942,943,944,940,941,945,946,947,948,940,941,947,949,945,947,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,940,941,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,940,941,948,942,940,941,945,946,948,942,942,942,940,940,940,941,941,941,945,945,945,946,946,946,948,948,948,940,941,944,947,942,943,943,944,940,940,940,940,940,941,941,941,941,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,940,941,940,940,941,941,940,941,940,941,940,941,949,942,943,944,940,941,945,946,947,948,942,942,949,942,940,945,948,949,942,943,944,940,941,945,946,947,948,940,941,940,941,940,941,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,940,941,949,942,943,944,940,941,945,946,947,948,940,941,940,941,940,941,940,941,947,949,940,941,942,940,941,940,941,948,944,940,941,940,941,940,941,942,943,944,940,941,945,946,947,948,943,943,940,941,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,940,941,949,942,943,944,940,941,945,946,947,948,949,0,947,0,0,0,953,954,953,953,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,954,954,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,954,953,954,953,953,954,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,0,0,0,959,958,959,958,959,958,959,958,959,958,959,958,959,958,958,958,959,958,959,958,959,958,959,958,959,958,958,958,958,958,958,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,958,958,958,959,959,0,958,958,958,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,0,0,0,962,962,962,962,962,0,0,962,971,0,0,962,962,898,966,0,971,971,0,971,0,966,971,962,971,956,971,956,956,0,962,971,897,962,956,0,0,956,962,962,962,968,899,962,962,962,962,956,962,962,956,956,968,956,962,956,898,0,0,0,962,962,962,966,956,0,0,968,962,966,956,962,0,962,964,962,0,0,964,966,962,962,971,962,962,962,966,971,0,962,899,0,964,897,962,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,967,955,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,916,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,916,960,960,961,961,916,965,962,964,916,899,966,967,968,969,897,956,902,962,964,916,899,966,967,968,969,897,956,902,966,966,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,902,955,902,916,970,964,916,965,960,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,0,964,916,899,966,967,968,969,971,897,956,964,964,964,916,916,916,966,966,966,971,971,971,970,0,961,972,962,962,970,964,916,899,899,898,966,966,967,965,968,968,969,969,971,897,956,956,961,961,961,961,972,955,961,972,962,962,970,964,916,899,898,966,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,972,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,966,955,955,897,964,916,966,967,971,916,916,0,965,916,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,969,897,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,966,972,970,955,966,966,972,966,966,960,955,966,967,962,955,970,961,962,964,916,899,966,967,968,969,897,956,902,962,899,966,968,969,956,967,962,899,966,968,969,956,897,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,961,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,969,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,965,955,1474,1474,1475,1476,1475,1477,1478,1477,1478,1479,1480,1479,0,0,898,974,0,0,0,899,974,898,964,964,899,964,0,974,974,974,974,974,916,974,974,916,974,974,974,974,974,974,974,0,974,974,974,974,916,916,916,974,974,974,974,974,974,974,974,974,974,974,974,974,974,974,974,974,974,978,990,987,992,987,987,993,979,979,994,991,992,989,980,981,979,978,979,978,980,980,0,0,985,984,984,985,986,0,992,989,989,996,0,996,0,989,996,978,976,980,0,985,991,980,979,994,996,0,985,985,985,985,985,989,989,0,0,987,980,981,992,992,996,985,0,0,0,996,0,978,976,978,985,985,985,973,990,988,990,989,989,989,985,989,994,994,985,989,985,994,991,985,985,990,985,991,991,989,985,994,985,985,985,994,985,985,985,985,992,996,989,985,985,985,985,985,985,989,985,991,992,991,991,992,994,994,985,989,989,985,989,989,989,985,985,985,985,985,985,986,989,989,989,989,985,988,990,991,995,985,990,985,985,989,996,985,986,0,989,0,980,980,994,991,993,993,994,994,991,985,994,989,991,990,992,0,992,989,973,985,986,988,989,995,993,989,989,991,985,992,980,980,989,989,977,980,977,992,987,987,980,980,978,980,979,0,990,993,984,985,986,996,0,0,980,992,992,0,0,993,990,991,994,981,0,0,0,0,976,977,986,973,994,989,989,985,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,963,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,976,977,977,978,978,979,979,980,980,981,981,976,977,978,979,980,981,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,0,976,982,977,983,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,995,996,976,982,977,983,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,995,996,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,979,980,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,963,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,963,976,977,978,979,980,981,976,977,978,979,980,981,976,976,976,977,977,977,978,978,978,979,979,979,980,980,980,981,981,981,963,976,977,978,979,980,981,976,976,976,976,976,982,977,977,977,977,977,983,963,984,984,985,985,986,986,973,973,987,987,988,988,989,989,990,990,991,991,992,992,978,978,978,978,978,993,993,994,994,979,979,979,979,979,980,980,980,980,980,981,981,981,981,981,915,997,995,995,996,996,976,982,977,983,963,984,985,985,985,985,985,986,986,986,986,986,973,973,987,988,989,989,990,991,992,992,992,978,993,994,994,979,980,981,915,997,995,996,996,996,996,996,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,976,976,977,977,978,978,979,979,980,980,981,981,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,915,963,963,963,915,915,915,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,963,997,982,976,977,978,979,980,981,983,976,977,978,979,980,981,982,997,963,976,977,978,979,980,981,985,986,973,987,989,990,992,994,996,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,982,977,983,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,995,996,984,985,986,973,987,988,989,990,991,992,993,994,995,996,984,985,986,973,987,988,989,990,991,992,993,994,995,996,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,983,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,983,963,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,997,997,1481,1482,1483,1482,1483,1482,1481,1484,1484,1485,1486,1487,1488,1489,1488,1489,1490,1488,1489,1487,1486,1491,1492,1493,1493,1493,1494,1494,1495,1496,1497,1498,1496,1497,1498,1499,1500,1495,1496,1498,1500,1501,1501,1502,1503,1504,1505,1504,1505,1505,1502,1505,1503,1506,1507,1508,1509,1510,1506,1508,1509,1510,1511,1506,1507,1508,1509,1510,1511,1511,1512,1513,1512,1002,1005,809,809,809,0,0,0,809,0,0,0,809,0,815,806,809,1009,1009,1010,1009,1010,1010,0,815,806,809,0,0,1009,806,809,815,806,809,1009,1009,1010,809,809,1009,806,809,815,809,1005,813,815,1005,809,0,0,1005,0,0,1002,0,809,809,0,0,0,806,809,809,809,809,809,809,815,0,0,0,809,1002,1002,813,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,1006,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,814,765,763,814,765,763,1006,1002,1002,1002,1002,1002,1002,1002,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1007,812,1003,1004,1005,804,806,1006,1007,1008,808,1009,1010,809,1002,1011,812,1003,1004,1005,804,806,1006,1007,1008,808,1009,1010,809,1002,1011,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,814,765,763,1002,1011,808,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,814,1003,815,1004,1005,804,806,765,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,763,1002,1004,1002,1002,1002,1002,1002,812,814,1003,1003,1003,815,815,1004,1005,1005,804,806,806,765,1006,1007,1008,808,1009,1009,1010,1010,809,809,1002,1002,1002,1002,1002,1011,763,808,813,812,814,1003,815,815,815,815,815,1004,1005,1005,1005,804,806,806,806,806,806,765,1006,1007,1008,808,1009,1010,809,809,809,809,809,809,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,1002,1002,1002,1002,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1003,1002,1002,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,1002,1002,1002,814,812,1003,804,808,804,808,815,1011,1004,808,808,1002,808,1002,1002,812,1003,815,1005,806,809,1003,804,1007,1008,1006,1011,1002,1002,1002,1008,812,1003,1004,1005,804,806,1006,1007,1008,808,1009,1010,809,1002,1011,1003,815,1005,806,1009,1010,809,1003,815,1005,806,1009,1010,809,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,808,1514,1514,1515,1516,1517,1518,1519,1520,1521,1515,1521,1522,1519,1520,1521,1523,1523,1515,1516,1517,1522,1524,1518,1524,1525,1525,1525,825,0,825,822,825,822,822,822,825,822,825,822,0,0,822,822,822,822,822,822,822,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,825,822,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,825,822,822,824,825,825,822,822,822,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,824,825,822,825,822,825,822,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,1526,1527,1528,1529,1529,1526,1527,1528,1529,0,0,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,826,826,1013,1013,826,826,1013,826,1013,826,1013,826,1013,826,826,826,826,826,826,1013,1013,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,826,826,826,826,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,1013,826,1013,1023,802,800,1023,783,1019,1019,0,0,0,1025,0,0,0,0,0,1023,0,0,0,0,803,0,0,783,0,0,783,802,803,811,807,1019,1530,1023,783,828,1018,1023,783,800,1023,811,828,828,803,828,828,828,803,803,803,811,803,811,811,803,803,803,828,1023,1018,803,828,828,802,803,1023,803,1018,1020,783,1023,783,802,1020,1019,1020,783,802,803,803,811,807,1018,803,783,1025,783,1018,1018,1530,783,783,828,0,0,1025,0,0,0,0,0,0,1023,1025,1014,0,0,0,0,0,0,0,0,0,828,828,811,807,783,783,783,802,1019,802,1018,1017,1017,1017,1018,828,807,828,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,810,810,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1014,762,820,793,794,792,764,1014,762,820,793,794,792,764,810,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,801,783,802,1017,1018,803,827,1019,828,829,810,1020,811,807,800,783,802,1017,1018,803,827,1019,828,829,810,1020,811,807,800,810,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,690,762,1021,820,1025,793,1022,794,792,764,1531,827,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1532,827,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,690,1023,1024,801,783,762,762,802,1021,1021,820,820,1025,793,793,1022,1022,1017,1018,803,827,1019,794,794,828,829,810,792,792,1020,811,807,764,764,800,827,810,827,827,827,690,1023,1024,801,783,783,762,802,802,1021,820,1025,793,1022,1017,1018,1018,803,803,827,1019,1019,794,828,828,829,829,810,792,1020,811,811,807,807,764,800,800,1532,827,1026,690,1023,1024,801,783,783,783,762,802,802,802,802,1021,820,1025,793,1022,1017,1018,803,803,803,803,803,827,1019,794,828,829,810,792,1020,811,811,811,807,807,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1024,1024,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,801,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,690,1023,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1014,1014,1014,1021,820,1022,1533,1532,1531,827,810,810,810,810,1533,810,1532,810,827,1014,1532,1533,1532,783,802,803,811,807,783,802,1017,1018,803,827,1019,828,829,810,1020,811,807,800,783,802,1018,803,1019,828,829,811,807,800,783,802,1018,803,1019,828,829,811,807,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1531,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1533,1532,1026,1532,1534,1535,1536,1536,1535,1537,1538,1534,1539,1539,1540,1540,1541,1541,1541,1542,1542,1543,1543,1544,1545,1546,1547,1548,1546,1549,1550,1551,1549,1547,1548,1550,1551,1552,1553,1553,1554,1555,1556,1555,1554,1557,1558,1556,1554,1558,1556,1557,1558,1555,1557,0,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1031,1012,0,0,1028,1012,0,1032,1031,1012,0,1012,1032,0,0,1033,1012,1012,1031,1031,1033,0,1012,0,0,1028,1033,0,0,1012,1031,1031,1031,1031,1031,1031,1031,1033,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,0,1027,0,0,1030,1029,716,717,1031,1032,1033,1012,1030,1029,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1030,1030,1029,1029,1027,716,716,717,717,1031,1031,1032,1032,1033,1033,1012,1012,1027,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1027,1028,1012,1030,1029,716,717,1031,1032,1033,1012,1030,1029,716,717,1031,1032,1033,1012,1030,1029,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1029,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1029,1559,1560,1561,1560,1560,1559,1561,1562,1562,1563,1564,1562,1565,1564,1566,1563,1563,1562,1565,1564,1105,1046,1043,1043,1037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1037,0,0,0,0,1046,1048,1048,1037,0,0,1037,0,0,1090,1037,0,0,0,0,0,0,0,1091,0,1041,1040,1040,1047,1047,1040,1046,1047,1040,1046,1047,0,0,1037,0,1037,0,1057,0,0,1037,0,0,1041,1041,1040,1047,1047,0,0,0,1057,1058,1036,1037,0,0,1046,1047,1058,0,1038,1037,0,0,0,1046,1047,1046,1046,0,1037,0,0,1105,1044,1043,0,1058,774,1036,1046,1046,0,0,0,0,0,0,1040,1040,1040,1040,1040,0,0,1045,1038,1102,0,1567,1045,1046,1047,0,1036,774,1036,1039,1041,1041,1041,1042,1043,1043,1047,0,1037,0,0,0,1046,0,1037,0,1037,1047,0,0,0,1037,0,774,1040,1040,1040,1048,1041,1040,1040,1046,1047,1040,1046,1047,1044,1037,0,0,0,1037,0,1567,1102,0,1037,0,0,0,1037,1046,1042,1037,0,0,0,0,0,0,0,1037,0,1090,1105,1046,1047,1047,1091,0,1046,0,0,1092,1071,1034,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,640,1065,1061,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1065,1083,1049,1076,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1083,1050,1076,0,1051,1051,1051,1051,1051,1087,1088,1067,1070,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1038,1039,1039,1040,1040,1041,1041,1042,1042,1043,1043,1044,1044,1045,1045,1046,1046,1047,1047,1048,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1065,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1068,1080,1095,1096,1097,1098,1060,1060,1056,1071,1051,1092,640,1055,1056,1051,1085,1086,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,838,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1094,1095,1096,1097,1098,1048,1099,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,838,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1094,1095,1096,1097,1098,1048,1099,1053,1077,1065,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,640,1035,648,1067,1068,1069,1071,1072,1074,1075,1077,1080,1081,1084,1085,1086,1087,1053,1088,1052,1054,1093,1105,1094,1095,1096,1097,1098,1078,838,1034,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1043,1045,1051,1051,1049,1051,1051,1051,1070,1095,1096,1097,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1103,1100,1100,838,1104,1092,1050,1086,1077,1053,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1054,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1103,1100,1100,648,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1064,1051,1034,1051,1051,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1061,1051,1051,1051,1051,1051,1051,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1055,1082,1059,0,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1568,1051,1051,1051,1087,1088,1051,1051,1066,1071,1054,1093,1074,1103,774,1057,1058,1036,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1090,1091,1092,1048,774,774,774,1057,1057,1057,1058,1058,1058,1036,1036,1036,1038,1038,1038,1039,1039,1039,1040,1040,1040,1041,1041,1041,1042,1042,1042,1043,1043,1043,1044,1044,1044,1045,1045,1045,1046,1046,1046,1047,1047,1047,1090,1090,1090,1091,1091,1091,1092,1092,1092,1048,1048,1048,1100,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1078,1053,640,1073,1094,1059,1066,1067,1054,1093,1094,1095,1100,1104,774,774,1057,1057,1058,1058,1036,1036,672,672,1038,1038,1038,1038,1038,1039,1039,1039,1039,1039,1040,1040,1040,1040,1040,1041,1041,1041,1041,1041,1042,1042,1042,1042,1042,1043,1043,1043,1043,1043,1044,1044,1044,1044,1044,1045,1045,1045,1045,1045,1046,1046,1046,1046,1046,1047,1047,1047,1047,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1048,1048,1048,1048,1099,1049,1064,1078,1089,1097,838,1077,1104,1102,1101,1110,774,774,774,774,774,1057,1057,1058,1058,1036,1036,672,1038,1039,1040,1041,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1038,1039,1039,1040,1040,1041,1041,1042,1042,1043,1043,1044,1044,1045,1045,1046,1046,1047,1047,1048,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1100,1100,1110,1100,1111,1112,0,1059,1079,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1050,1094,1104,640,1103,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1051,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1100,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1062,1049,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1041,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1101,1063,1049,1064,1065,1066,1067,1071,1072,1075,1077,1053,1052,1089,1071,1075,1077,1061,1065,1065,1041,1100,1050,1083,838,1078,1063,1049,1050,1065,1083,1049,1065,1054,1104,1074,1077,1077,1053,1059,1041,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1053,1068,1095,1096,1097,1098,1111,1085,1083,1051,1112,1078,838,1077,1062,1067,1087,1088,648,1072,1064,1081,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1051,1051,1085,1070,1101,1049,1053,1071,1054,1054,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1063,1049,1068,1082,1055,1056,1089,1057,1058,1036,672,1054,1073,1055,1082,1075,1568,1100,1086,1076,1100,1095,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1112,1035,1111,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1085,1086,1035,1081,1056,1111,1071,1053,1052,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,838,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1094,1095,1096,1097,1098,1048,1099,774,1057,1058,1036,672,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1094,1051,1051,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1034,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1100,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1092,838,1063,1049,1064,1069,1078,1080,1081,1084,1099,1094,1077,1094,1094,1077,1094,1069,1084,1049,1078,0,1079,1100,1050,1051,1079,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1114,1114,1114,1114,1114,1113,688,1114,1115,1113,688,1114,1115,1114,1114,688,688,1113,688,1114,1115,1113,1114,1114,1114,1114,1114,1113,1113,1113,1113,1113,1113,1113,688,1113,1113,1113,1113,1113,1113,1113,1113,1113,688,1114,1115,1113,688,1114,1115,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1114,1113,1114,1114,1113,688,1114,1115,1114,1114,1114,1114,1114,1114,1113,688,1114,1115,1114,1114,1114,1114,1114,1113,1113,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,1113,1113,1113,688,1113,688,1113,1113,688,1114,1115,1114,688,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,1113,1113,1114,1113,1114,1114,1114,1114,1114,1114,1114,1114,1114,1114,1114,1114,1113,1113,1113,1113,1113,688,1114,1114,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,1113,1113,688,1114,1115,1113,1114,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0,0,0,1123,0,0,0,1123,0,0,0,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1116,1126,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1118,1118,1118,1118,1118,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1118,1118,1119,1122,1121,1123,1124,1119,1122,1121,1123,1124,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1118,1118,1118,1126,1118,1118,1125,1125,1125,1125,1125,1125,1125,1119,1125,1125,1125,1125,1125,1125,1125,1122,1135,1126,1117,1136,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1125,1125,1125,1125,1125,1125,1125,1125,1125,1125,1125,1125,1125,1118,1118,1118,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1118,1118,1118,1118,1118,1118,1117,1136,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1126,1117,1117,1118,1118,1118,1118,1118,1125,1122,1125,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1126,1126,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1125,1125,1116,1119,1141,1117,1119,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1126,1118,1119,1122,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1117,1117,1125,1126,1116,1116,1118,1141,1117,1117,1118,1118,1118,1118,1118,1118,1118,1118,1118,1118,1118,1118,1125,1125,1141,1116,1116,1125,1125,1119,1122,1121,1123,1124,1118,1118,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1118,1569,1570,1570,0,0,0,0,0,0,0,0,0,0,0,0,1151,1151,0,1163,0,0,1167,0,0,0,1167,0,1151,0,0,0,0,0,0,1163,0,1149,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1151,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1152,1152,1152,1152,1152,1151,1151,1151,1151,1151,1151,1151,1151,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1158,1152,1152,1150,1151,1150,1151,1151,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1149,1151,1152,1152,1152,1152,1152,1158,1158,1158,1158,1158,1158,1158,1150,1158,1158,1158,1158,1158,1168,1158,1158,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1168,1158,1158,1158,1158,1158,1158,1158,1158,1158,1158,1158,1158,1168,1158,1158,1172,1151,1152,1149,1152,1152,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1152,1152,1152,1152,1152,1152,1180,1174,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1151,1158,1152,1152,1152,1152,1152,1174,1168,1151,1151,1151,1151,1158,1168,1151,1174,1158,1152,1150,1178,1154,1151,1151,1151,1151,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1151,1151,1151,1151,1151,1151,1168,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1158,1158,1158,1172,1150,1176,1151,1150,1180,1174,1168,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1151,1152,1174,1150,1151,1151,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1151,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1158,1151,1151,1151,1151,1158,1151,1172,1172,1172,1152,1176,1158,1158,1158,1155,1174,1172,1158,1158,1151,1172,1152,1152,1151,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1168,1172,1158,1158,1158,1151,1151,1176,1172,1151,1172,1158,1150,1151,1151,1152,1152,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1149,1151,1158,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1158,1152,1571,1571,1571,1572,1572,818,0,819,0,819,818,0,0,0,819,818,0,0,819,818,0,0,819,818,0,0,0,0,0,0,0,674,819,818,0,0,0,0,819,818,0,0,674,819,818,0,0,819,818,819,0,0,819,0,0,819,0,819,0,0,818,0,819,818,0,0,819,818,0,0,1188,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1185,1186,1185,1186,1192,1192,1187,1188,1189,1190,1185,1185,1186,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1185,1186,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1199,1213,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1197,1201,675,1185,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,1187,1187,1187,1188,1188,1188,1189,1189,1189,1190,1190,1190,1185,1185,1185,1186,1186,1186,1191,1191,1191,1192,1192,1192,1193,1193,1193,1194,1194,1194,1195,1195,1195,1196,1196,1196,1197,1197,1197,1198,1198,1198,1199,1199,1199,1200,1200,1200,1201,1201,1201,1202,1202,1202,1203,1203,1203,1204,1204,1204,1205,1205,1205,1206,1206,1206,1207,1207,1207,1208,1208,1208,1209,1209,1209,1210,1210,1210,1211,1211,1211,1212,1212,1212,1213,1213,1213,819,819,819,818,818,818,1203,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,819,819,819,819,819,819,819,819,819,819,819,819,819,819,819,819,818,818,818,818,818,818,818,818,818,818,818,818,818,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1205,1206,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,1212,1212,1208,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1189,1191,1193,1195,1198,1200,1203,1204,1207,1208,1211,1212,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1190,1209,1210,1204,1216,1185,1217,1186,1197,1199,1202,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,674,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1196,1196,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1198,1200,1194,1198,1200,676,1186,0,0,0,0,0,0,661,661,0,0,0,1224,1222,645,661,1218,1219,1220,0,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1218,1219,1220,0,1219,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,645,661,1218,1219,1220,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,645,1221,1221,661,1218,1219,1220,1224,1222,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1223,1223,1223,1223,1224,1222,645,661,1218,1219,1220,0,645,661,645,645,645,661,661,661,1224,1219,1218,1219,1218,1224,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,0,645,661,1219,1224,1222,645,661,1218,1219,1220,0,0,1218,1219,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,645,0,1224,0,0,1222,1224,1223,1223,1223,1223,1223,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,645,1218,1224,1220,1220,1220,0,1236,0,0,0,1236,0,0,298,0,298,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1235,1225,1235,1225,1226,1225,1226,1225,1226,1225,1226,1235,1225,1225,1226,1226,1225,1226,1225,1226,1225,1226,298,0,1225,1226,1226,1226,1226,1226,1225,1226,1225,1226,1225,1226,1225,1226,10,298,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,0,1226,10,1235,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,0,1225,1573,1574,1573,0,0,0,283,0,0,26,59,283,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,26,59,59,26,26,59,26,59,26,59,26,59,59,59,59,59,26,59,26,59,26,59,59,59,26,59,59,283,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,26,59,171,185,0,185,0,171,0,0,175,0,0,185,171,191,24,175,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,24,185,171,24,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,0,185,171,191,24,185,171,185,185,185,185,171,191,24,185,171,171,171,191,24,185,171,191,24,185,171,191,24,185,171,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,0,171,185,171,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,185,171,191,24,0,0,1227,170,0,1227,1228,1228,1228,170,0,170,1228,1227,1228,1227,1228,0,170,1228,1228,1227,1228,170,170,170,170,300,0,0,1228,1228,1228,300,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,8,8,321,170,1227,1228,8,321,170,1227,1228,8,170,1227,1228,8,170,1227,1228,8,321,170,1227,1228,321,321,8,321,170,1227,1228,8,321,170,1227,1228,1228,300,300,8,321,170,1227,1228,8,321,170,1227,1228,170,1227,1228,8,321,170,1227,1228,300,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,300,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,170,321,321,321,321,321,300,321,300,321,8,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,8,321,170,1227,1228,300,1228,321,1258,0,0,0,0,0,1232,1232,0,0,274,0,0,0,274,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,13,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,314,13,301,1231,314,1232,183,1233,0,1233,1231,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,274,274,13,301,1231,314,1232,183,1233,0,13,301,1231,314,1232,183,1233,183,183,183,183,13,301,301,1231,314,1232,183,1233,0,1233,1233,274,1233,314,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,183,274,13,13,301,1231,314,1232,183,1233,301,301,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,301,1233,1233,0,301,0,0,1233,1233,0,1233,1233,0,1233,1233,301,183,1233,301,274,301,301,301,301,301,0,1233,1233,1231,274,314,314,314,1231,13,301,1231,314,1232,183,1233,301,301,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,13,301,1231,314,1232,183,1233,1233,1233,183,301,13,301,1231,314,1232,183,1233,0,274,0,1234,1234,0,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1575,1575,0,232,0,0,225,0,0,4,113,226,231,232,233,223,224,234,235,236,237,238,230,228,239,240,231,237,4,113,233,223,224,234,235,236,238,230,228,225,239,240,226,4,0,0,0,0,226,226,231,237,0,0,0,0,226,231,0,231,237,0,0,226,0,0,0,0,232,52,52,0,52,52,52,0,0,0,0,0,0,0,0,0,0,52,53,242,243,244,245,246,241,52,53,53,52,53,53,242,243,244,245,246,52,53,52,241,242,243,244,245,246,0,303,0,0,303,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,303,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,322,322,322,0,322,0,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,0,1236,0,0,1236,0,298,0,0,298,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,1235,1235,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,1235,10,1235,1236,1237,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,298,0,10,1235,1236,1237,1237,1237,1237,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,298,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,0,1237,10,1235,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,10,1235,1236,1237,0,1573,1574,1573,0,1240,1240,138,1244,1247,1247,1247,1247,1243,1243,1245,1244,1247,0,1247,1247,1247,1247,1247,1243,1243,1243,1243,1241,1247,1241,0,0,0,1245,0,218,1247,1247,0,1247,1243,138,1240,1243,0,0,1243,1247,1247,1243,0,1247,0,1247,1244,1247,1247,1243,0,1241,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1238,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1238,0,0,0,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1238,1239,1242,1243,218,1240,1241,1244,138,1245,0,218,138,218,138,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1238,1242,1242,1240,1244,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,0,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1243,218,1240,1241,1244,138,218,218,218,1240,1240,1240,1241,1241,1241,138,138,138,1242,0,0,0,0,0,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,0,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,0,218,0,1242,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1239,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1242,1247,1242,0,1242,0,0,1238,218,138,1242,1242,0,1242,0,0,0,0,1238,1242,0,1238,1239,1242,1243,218,1240,1241,1244,138,1245,0,0,1242,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,218,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1242,1576,1577,1577,1576,1578,1578,0,0,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,0,0,0,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,0,1246,0,1246,1246,1246,1246,1246,1246,1246,1246,1238,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1238,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,0,0,1252,1252,1252,1252,1252,1252,1252,1252,1252,1252,1252,1242,1252,1252,1252,1252,1252,1252,1252,1252,1252,1242,1252,1252,1252,1252,1242,1252,1252,1252,1252,1252,1252,1252,1252,1252,1242,1242,1242,1242,1242,1242,1242,1252,1242,1252,1252,1252,1252,1252,1252,1252,1252,1242],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[1,[-1]]],[[3,[[2,[-1]]]]],[]],[[4,5],6],[4,7],[4,8],[[4,5],9],[4,10],[4,11],[4,12],[4,13],[[4,5],14],[4,7],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[16,16]],[[[17,[-1]],[18,[-1]]],[[17,[-1]]],[[20,[],[[19,[]]]]]],[[[21,[-1]],[18,[-1]]],[[21,[-1]]],[[20,[],[[19,[]]]]]],[[[18,[-1]],[18,[-1]]],[[18,[-1]]],[[20,[],[[19,[]]]]]],[[16,16],22],0,0,[4,23],[4,24],[4,25],[4,26],[4,27],[4,28],[4,29],0,[21,30],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[-2,[[1,[-1]]],[],[[33,[],[[32,[[1,[-1]]]]]]]],[-2,[[34,[-1]]],[],[[33,[],[[32,[[34,[-1]]]]]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[21,17],[21,30],[21,30],[35,22],0,[4,4],[36,36],[37,37],[38,38],[39,39],[40,40],[41,41],[16,16],[42,42],[43,43],[44,44],[45,45],[46,46],[47,47],[[[17,[-1]]],[[17,[-1]]],48],[[[21,[-1]]],[[21,[-1]]],48],[49,49],[[[50,[-1]]],[[50,[-1]]],48],[[[18,[-1]]],[[18,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[21,17],5],[[51,52],4],[[51,52,-1],4,[[54,[52],[[19,[53]]]]]],[[],4],[[],37],[[],39],[[],43],[[],[[17,[-1]]],55],[[],[[21,[-1]]],55],[[],49],[[],[[18,[-1]]],55],[35],[35,47],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[35,57],[[50,[58]]]],[[35,59],[[50,[58]]]],[4,13],[4,8],[4,12],[4,43],[4,43],[[[17,[-1]],[17,[-1]]],-1,[60,61]],[[16,16]],[[16,30]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[4,7],[4,10],[4,7],[[35,3],22],[[35,57,62,21],22],[[35,59,[63,[43]],21],22],[[35,64],22],[[35,21,-1],22,65],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[66,-2],-1,[],[[54,[],[[19,[-1]]]]]],[[4,4],5],[[36,36],5],[[37,37],5],[[38,38],5],[[39,39],5],[[40,40],5],[[41,41],5],[[16,16],5],[[42,42],5],[[43,43],5],[[44,44],5],[[45,45],5],[[47,47],5],[[[17,[-1]],[17,[-1]]],5,67],[[[21,[-1]],[21,[-1]]],5,67],[[49,49],5],[[[50,[-1]],[50,[-1]]],5,67],[[[18,[-1]],[18,[-1]]],5,67],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],0,0,[[21,30],21],[[50,-1],50,[[68,[50]]]],[4,53],0,[[35,17,43,21],22],[45,69],[[35,17,43,21],22],[[35,70,-1],22,[[68,[42]]]],[[35,71,17,43,21],22],[[44,50,50],50],[[46,50,50],46],[45,45],[[[1,[-1]],72],[[74,[22,73]]],[]],[[[34,[-1]],72],[[74,[22,73]]],[]],[[75,72],76],[[75,72],76],[[4,72],[[74,[22,73]]]],[[4,72],[[74,[22,73]]]],[[36,72],[[74,[22,73]]]],[[37,72],[[74,[22,73]]]],[[38,72],[[74,[22,73]]]],[[39,72],[[74,[22,73]]]],[[40,72],[[74,[22,73]]]],[[41,72],[[74,[22,73]]]],[[16,72],[[74,[22,73]]]],[[42,72],[[74,[22,73]]]],[[43,72],[[74,[22,73]]]],[[44,72],[[74,[22,73]]]],[[45,72],[[74,[22,73]]]],[[46,72],[[74,[22,73]]]],[[47,72],[[74,[22,73]]]],[[[17,[-1]],72],[[74,[22,73]]],77],[[[17,[-1]],72],[[74,[22,73]]],78],[[[21,[-1]],72],[[74,[22,73]]],78],[[49,72],[[74,[22,73]]]],[[[50,[-1]],72],[[74,[22,73]]],78],[[[18,[-1]],72],[[74,[22,73]]],78],[4,13],[4,8],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[79,75],[-1,-1,[]],[80,36],[-1,-1,[]],[81,36],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[82,40],[-1,-1,[]],[41,16],[30,16],[-1,-1,[]],[83,16],[82,42],[43,42],[40,42],[-1,-1,[]],[-1,-1,[]],[[[84,[30]]],43],[[[84,[30]]],43],[85,43],[[[86,[85,30]]],43],[-1,-1,[]],[-1,-1,[]],[69,45],[47,45],[30,45],[30,46],[[[84,[30]]],46],[69,46],[[[84,[30]]],46],[[[84,[69]]],46],[[[84,[69]]],46],[-1,-1,[]],[69,47],[30,47],[-1,-1,[]],[-1,-1,[]],[[[84,[-1]]],[[17,[-1]]],61],[[[22,[-1,-1]]],[[17,[-1]]],61],[[[21,[58]]],21],[-1,-1,[]],[-1,-1,[]],[[[84,[30]]],50],[-1,-1,[]],[46,50],[[[84,[69]]],50],[18,50],[-1,-1,[]],[50,18],[[[84,[-1]]],[[18,[-1]]],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[87,[[63,[16]]]],[88,[[63,[16]]]],[[30,30,30,30],43],[-2,[[34,[-1]]],[],[[89,[],[[19,[-1]]]]]],[[30,30,30],43],[[83,83,83],43],[[30,30,30,30],43],[[83,83,83,30],43],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[90,[[63,[16]]]],0,0,0,[[36,-1],22,91],[[39,-1],22,91],[[44,-1],22,91],[[[50,[-1]],-2],22,92,91],0,0,0,[46,30],[[4,5],7],[4,10],[4,11],[4,12],[4,8],[4,26],[[4,5],14],[[4,5],6],[[4,5],9],[4,13],[[4,5],7],[4,93],[4,[[63,[94]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[21,21],[[63,[21]]]],[[21,21],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[43,[[84,[30]]]],[[[34,[-1]]],[[3,[[95,[89]]]]],[]],[43,[[84,[83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[43,43],[43,22],[45,5],[[21,21],5],0,0,[[35,[99,[[98,[83]]]]],22],[[[1,[-1]],-3],[[1,[-2]]],[],[],[[100,[-1],[[19,[-2]]]],101,102,48]],[[[34,[-1]]],[[34,[-2]]],[],[]],[[50,50],50],[[50,50],50],0,[[16,30]],[[16,16]],[[21,30],21],[[[18,[-1]],-1],[[18,[-1]]],[[103,[],[[19,[]]]],104]],[[40,30],40],0,[[],[[106,[],[[105,[-1]]]]],[78,107]],[[],[[74,[66,108]]]],[[30,30,30,30],43],[30,46],[[-1,-1],[[17,[-1]]],61],[[17,50],21],[[-1,-1],[[50,[-1]]],[]],[[-1,-1],[[18,[-1]]],[]],[[],[[1,[-1]]],[]],[[],[[34,[-1]]],[]],0,0,[4,52],[[41,41],[[63,[109]]]],[[16,16],[[63,[109]]]],[[47,47],[[63,[109]]]],[[-2,-4],[[1,[-3]]],[],[[110,[],[[19,[-1]]]],101],[],[[54,[-1],[[19,[-3]]]],101]],[4,[[63,[94]]]],[4,43],[4,43],[21,17],[4,12],0,0,0,[[[111,[22]]],[[74,[22,75]]]],[[[111,[22]]],[[74,[22,75]]]],[[-2,-4],[[1,[-3]]],[],[[112,[],[[32,[-1]]]],101],[],[[100,[-1],[[19,[-3]]]],101]],[[[106,[],[[105,[-1]]]]],87,[78,107]],[[[106,[],[[105,[-1]]]]],87,[78,107]],[4,43],[4,43],0,[[[2,[-1]]],[[1,[-1]]],[]],[21,50],[21,[[21,[58]]]],[[66,-1],22,[[110,[],[[19,[22]]]],101]],0,[[[106,[],[[105,[-1]]]]],113,[78,107]],[[[106,[],[[105,[-1]]]]],113,[78,107]],0,[[16,16]],[[[17,[-1]],[18,[-1]]],[[17,[-1]]],[[114,[],[[19,[]]]]]],[[[17,[-1]],[17,[-1]]],[[18,[-1]]],[[114,[],[[19,[]]]]]],[[[21,[-1]],[18,[-1]]],[[21,[-1]]],[[114,[],[[19,[]]]]]],[[50,50]],[[[18,[-1]],[18,[-1]]],[[18,[-1]]],[[114,[],[[19,[]]]]]],[[16,16],22],0,0,0,[[[106,[],[[105,[-1]]]]],4,[78,107]],[[[106,[],[[105,[-1]]]]],4,[78,107]],0,[[[106,[],[[105,[-1]]]]],51,[78,107]],[[16,21],[[22,[17,17]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],0,0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[21,21],21],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[106,[],[[105,[-1]]]],-1],22,[78,107]],[4,43],[4,43],[46,30],[[[106,[],[[105,[-1]]]]],[[118,[-1]]],[78,107]],0,0,[-2,[[1,[-1]]],[],[[119,[-1]]]],0,0,0,0,[[[34,[-1]],-2],[[34,[[22,[-2,-1]]]]],[],[92,48,107,102]],[[35,21,-1],22,[[54,[35]]]],[120,39],[-1,37,[[68,[121]]]],[50,21],[[35,18,-1],22,[[54,[35]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[122,[-1]]],5,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[123,21],0,[124,[[3,[125]]]],[123,[[0,[[126,[],[[32,[123]]]]]]]],[127,22],[123,123],[[[71,[-1]]],[[71,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],128],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[124,125],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[129,-1,-2,130,123,131],22,127,[]],[[124,125,-1,-2,130,123,131,21],22,127,[]],[56,22],[56,22],[56,22],[56,22],[[127,70,-1],22,[[68,[42]]]],[128,90],[[123,72],[[74,[22,73]]]],[[[71,[-1]],72],[[74,[22,73]]],78],[[[122,[-1]],72],[[74,[22,73]]],78],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[122,[-1]]],22,[]],[[[122,[-1]]],22,[]],[[[122,[-1]]],5,[]],[[[122,[-1]]],5,[]],[[129,123,-1,17],5,127],0,[[129,-1,50,17,18],132,127],[[124,125,-1,133],132,127],0,[[[122,[-1]],[122,[-2]],-3],22,[],[],[[100,[-2],[[19,[-1]]]]]],0,[[129,123,131,21,-1],134,127],[[124,125,123,131,21,-1],134,127],[132,123],[[[3,[-1]]],[[122,[-1]]],[]],[[129,38,123,131,-1,135,[122,[-2]]],136,127,[]],[[124,125,38,123,131,-1,135,[122,[-2]],21],136,127,[]],[[129,123,-1,119],22,127],[[124,125,123,-1,119],22,127],0,[[129,123,-1],[[63,[[137,[-2,-3,-1]]]]],127,[],[]],[[124,125,123,-1],[[63,[[137,[-2,-3,-1]]]]],127,[],[]],[123,17],[[[122,[-1]],-1],22,[]],[135,[[63,[51]]]],[[[122,[-1]]],[[63,[138]]],[]],0,[[[122,[-1]],138],22,[]],[[[122,[-1]],-2],22,[],54],0,[124,[[50,[45]]]],0,[124,[[50,[45]]]],[124,139],0,0,[124,140],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,[[127,21,-1],22,[[54,[127]]]],[[18,132],123],[[127,18,-1],22,[[54,[127]]]],[[135,51],22],[[128,[98,[83]]],22],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[141,[[98,[83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[141,141],[142,142],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[141,[[98,[83]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[144,[],[[143,[-1]]]],-1],[[50,[58]]],[48,92]],[-1,-2,[],[]],[-1,-2,[],[]],[[[144,[],[[143,[-1]]]],-1,62,21],22,[48,92]],[56,22],[56,22],[[141,141],5],[[142,142],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[141,72],[[74,[22,73]]]],[[142,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[141,-1],22,91],[[142,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,141,[[145,[[98,[83]]]],107,102]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[132,36,36,50],132],[[132,36,36,50],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[133,-1,-2],132,[[68,[45]]],[[68,[45]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[132,21],[132,[[98,[132]]]],[133,133],[132,132],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[133,-1,-2,-3],132,[[68,[45]]],[[68,[45]]],[[54,[133],[[19,[132]]]]]],[[132,46],132],[[],132],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[133,133],5],0,[[133,72],[[74,[22,73]]]],[[132,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[133,-1],133,[[68,[45]]]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[133,133],[133,50],[[133,30],133],[[133,30],133],[133,50],[[133,30],133],[[133,30],133],[[132,-1],132,[[68,[17]]]],[[132,-1],22,[[68,[17]]]],[[50,50],133],[50,132],[[133,30,-1,-2],132,[[54,[133],[[19,[132]]]]],[[54,[133],[[19,[132]]]]]],[[133,-1,-2,-3,-4],132,[[68,[45]]],[[68,[45]]],[[68,[46]]],[[54,[133],[[19,[132]]]]]],[[133,-1,-2,-3,-4,-5],132,[[68,[45]]],[[68,[45]]],[[68,[46]]],[[54,[133],[[19,[132]]]]],[[54,[132,50],[[19,[132]]]]]],[[133,-1,-2,50],50,[[68,[45]]],[[68,[45]]]],[[133,-1],133,[[68,[50]]]],[132,50],[[133,-1,-2,-3],132,[[68,[45]]],[[68,[45]]],[[54,[133],[[19,[50]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[[132,-1],132,[[68,[18]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[133,-1],133,[[68,[45]]]],[[50,[3,[132]]],132],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[146,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[146,-1,133,45,45,46,30,36,[98,[[147,[-2,-3,-1]]]],[98,[125]]],132,127,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[148,148],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[148,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[148,149],[[17,[63,[148]]],148],[148,17],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[149,149],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[149,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[150,[-1,-2,-3]]],[],[],127],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[129,-1,-2,130,123,131],22,127,[]],[[[137,[-1,-2,-3]],-3,-2,130,123,131],22,[],[],127],[[[150,[-1,-2,-3]],-3,-2,130,123,131],22,[],[],127],[56,22],[56,22],[[[150,[-1,-2,-3]]],[[137,[-1,-2,-3]]],[],[],127],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[98,[[147,[-1,-2,-3]]]],125,123,-3],[[63,[[137,[-1,-2,-3]]]]],[],[],127],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[137,[-1,-2,-3]],123,-3,17],5,[],[],127],[[[150,[-1,-2,-3]],123,-3,17],5,[],[],127],[[129,123,-1,17],5,127],[[129,-1,50,17,18],132,127],[[[137,[-1,-2,-3]],-3,50,18],132,[],[],127],[[[150,[-1,-2,-3]],-3,50,17,18],132,[],[],127],[[[137,[-1,-2,-3]],100],[[137,[-4,-2,-3]]],[],[],127,[]],[[[137,[-1,-2,-3]],123,131,21,-3],134,[],[],127],[[[150,[-1,-2,-3]],123,131,21,-3],134,[],[],127],[[129,123,131,21,-1],134,127],[[17,[95,[129]]],[[137,[-1,-2,-3]]],[],[],127],[[],[[150,[-1,-2,-3]]],[],[],127],[[[137,[-1,-2,-3]],38,123,131,-3,135,[122,[-1]]],136,[],[],127],[[[150,[-1,-2,-3]],38,123,131,-3,135,[122,[-1]]],136,[],[],127],[[129,38,123,131,-1,135,[122,[-2]]],136,127,[]],[[[137,[-1,-2,-3]],123,-3,119],22,[],[],127],[[[150,[-1,-2,-3]],123,-3,119],22,[],[],127],[[129,123,-1,119],22,127],[[[137,[-1,-2,-3]],123,-3],[[63,[[137,[-1,-2,-3]]]]],[],[],127],[[[150,[-1,-2,-3]]],[[137,[-1,-2,-3]]],[],[],127],[[[150,[-1,-2,-3]],123,-3],[[63,[[137,[-1,-2,-3]]]]],[],[],127],[[129,123,-1],[[63,[[137,[-2,-3,-1]]]]],127,[],[]],[[[137,[-1,-2,-3]]],17,[],[],127],[[[150,[-1,-2,-3]],-4],[[150,[-1,-2,-3]]],[],[],127,[[68,[[137,[-1,-2,-3]]]]]],[[[137,[-1,-2,-3]],18],[[137,[-1,-2,-3]]],[],[],127],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[3,[[137,[-1,-2,-3]]]]],[[150,[-1,-2,-3]]],[],[],127],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[127,22],[151,22],[151,151],[70,70],[130,130],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],151],[[],70],[[],130],[151],[151,47],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[[70,70],5],[[130,130],5],[[151,17,43,21],22],[[151,17,43,21],22],[[127,70,-1],22,[[68,[42]]]],[[151,70,-1],22,[[68,[42]]]],[[151,71,17,43,21],22],[[151,72],[[74,[22,73]]]],[[70,72],[[74,[22,73]]]],[[130,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[151,[99,[[98,[83]]]]],22],[[],151],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[127,21,-1],22,[[54,[127]]]],[[151,21,-1],22,[[54,[151]]]],[[127,18,-1],22,[[54,[127]]]],[[151,18,-1],22,[[54,[151]]]],0,0,0,[[[89,[],[[19,[-1]]]],128],22,[]],[[[95,[[89,[],[[19,[-1]]]]]],[152,[[95,[112]]]]],[[152,[[95,[112]]]]],[]],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[153,153],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[[154,59],[[50,[58]]]],[-1,-2,[],[]],[[154,59,[63,[43]],21],22],[56,22],[[153,153],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[153,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[153,-1],22,91],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]]],50,[104,67,55]],0,[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],56],22,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[162,162],[163,163],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[164,[],[[155,[-1]]]],[71,[-1]]],163,[104,67]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]]],56,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[[156,[],[[155,[-1]]]]],165,[104,67,55]],[162,56],[[[156,[],[[155,[-1]]]]],[[22,[56,56]]],[104,67,55]],[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]]],-1,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]]],47,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],0,[[162,162],5],[[163,163],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]],-3,17,43,21],22,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]],-2,17,43,21],22,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]],[71,[-1]],17,43,21],22,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[[162,72],[[74,[22,73]]]],[[163,72],[[74,[22,73]]]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[164,[],[[155,[-1]]]],56,56],[[63,[17]]],[104,67]],[[[156,[],[[155,[-1]]]],-1,-2,-3],22,[104,67,55],160,[[100,[],[[19,[[169,[-1]]]]]]]],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],120],-3,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],0,[[[164,[],[[155,[-1]]]],17],[[63,[162]]],[104,67]],[[[164,[],[[155,[-1]]]]],80,[104,67]],0,[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]],56],[[63,[120]]],[104,67,55]],[[[156,[],[[155,[-1]]]]],56,[104,67,55]],0,[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]],[99,[[98,[83]]]]],22,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[[[164,[],[[155,[-1]]]]],50,[104,67]],[[[164,[],[[155,[-1]]]]],30,[104,67]],[[[164,[],[[155,[-1]]]]],30,[104,67]],[-1,[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]]],[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[[156,[],[[155,[-1]]]],170],22,[104,67,55]],[[[164,[],[[155,[-1]]]],50],22,[104,67]],[[[156,[],[[155,[-1]]]]],[[63,[51]]],[104,67,55]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[156,[],[[155,[-1]]]],50,-1,47,171,-2],22,[104,67,55],160],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],-1],22,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[[164,[],[[155,[-1]]]],[71,[-1]]],22,[104,67]],[[[164,[],[[155,[-1]]]]],81,[104,67]],0,[[[71,[-1]]],[[164,[],[[155,[-1]]]]],[104,67]],[120,[[156,[],[[155,[-1]]]]],[104,67,55]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]]],50,[104,67,55]],[172,172],[165,165],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]]],165,[104,67,55]],[[[156,[],[[155,[-1]]]]],[[22,[56,56]]],[104,67,55]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[172,172],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[172,72],[[74,[22,73]]]],[[165,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]],-1,-2,-3],22,[104,67,55],160,[[100,[],[[19,[[169,[-1]]]]]]]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]],56],[[63,[120]]],[104,67,55]],[[[156,[],[[155,[-1]]]]],56,[104,67,55]],[[[156,[],[[155,[-1]]]],170],22,[104,67,55]],[[[156,[],[[155,[-1]]]]],[[63,[51]]],[104,67,55]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[156,[],[[155,[-1]]]],50,-1,47,171,-2],22,[104,67,55],160],[120,[[156,[],[[155,[-1]]]]],[104,67,55]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],56],22,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[173,56],22],[173,173],[[[169,[-1]]],[[169,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]]],56,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[173,56],[[],[[169,[-1]]],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[[169,[-1]],[169,[-1]]],5,67],[[173,72],[[74,[22,73]]]],[[[169,[-1]],72],[[74,[22,73]]],78],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],120],-3,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[173,120]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]]],[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[],173],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],-1],22,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[173,22],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[124,[[3,[125]]]],0,[[[174,[-1,-2]]],[[174,[-1,-2]]],175,168],[176,176],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[119,[63,[176]],21,177],22],[[119,31,[63,[176]]],22],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[124,125],22],[[125,-1],22,[[178,[124]]]],[[125,[98,[-1]]],22,[[178,[124]]]],[[125,[98,[-1]],-2,-3],22,[],[[100,[125,-1]]],[[100,[-1],[[19,[125]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[124,125,-1,-2,130,123,131,21],22,127,[]],[[[174,[-1,-2]],125,-2,-1,130,123,131,21],22,175,168],[56,22],[56,22],[56,22],[[],125],[[176,176],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[119,[[179,[-1]]],[]],[[125,72],[[74,[22,73]]]],[[176,72],[[74,[22,73]]]],[[119,180,[63,[176]]],22],[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,68],[120,[[174,[-1,-2]]],175,168],[-1,-1,[]],[-1,-1,[]],[181,176],[182,176],[-1,-1,[]],[183,176],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[176,-1],22,91],[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,[[68,[45]]]],[[[174,[-1,-2]],80],[[174,[-1,-2]]],175,168],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[124,125,-1,133],132,127],[[[174,[-1,-2]],125,-2,133],132,175,168],[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,[[68,[171]]]],[[124,125,123,131,21,-1],134,127],[-1,[[174,[-2,-3]]],[[68,[[99,[120]]]]],175,168],[-1,125,[[178,[124]]]],[-1,176,[[68,[[99,[120]]]]]],[[124,125,38,123,131,-1,135,[122,[-2]],21],136,127,[]],[[124,125,123,-1,119],22,127],0,[[124,125,123,-1],[[63,[[137,[-2,-3,-1]]]]],127,[],[]],[[119,184,[63,[176]],21,18],22],[[[174,[-1,-2]],185],[[174,[-1,-2]]],175,168],[124,[[50,[45]]]],[[[174,[-1,-2]]],[[50,[45]]],175,168],[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,[[68,[47]]]],[124,[[50,[45]]]],[[[174,[-1,-2]]],139,175,168],[124,139],0,[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,68],[[[174,[-1,-2]]],140,175,168],[124,140],0,0,[[119,186,[63,[176]]],22],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],176],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[174,[-1,-2]],81],[[174,[-1,-2]]],175,168],[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,[[68,[45]]]],0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[119,[63,[176]],21,177],22],[[119,31,[63,[176]]],22],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[119,[[179,[-1]]],[]],[[[179,[-1]],72],[[74,[22,73]]],78],[180,22],0,[[119,180,[63,[176]]],22],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[180,5],[[[95,[119]],-3],[[0,[[119,[-2]]]]],[],[],[[100,[-1],[[19,[-2]]]]]],[[186,56],22],[186,22],[186,22],[[176,-2],[[0,[[119,[-1]]]]],[],[[119,[-1]]]],[[184,187],22],0,[[119,184,[63,[176]],21,18],22],[186,22],[[184,188],22],0,[[119,186,[63,[176]]],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[180,22],[-1,[[63,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[189,189],[[-1,-2],22,[],[]],[-1,-2,[],[]],[[],[[0,[[119,[-1]]]]],[]],[[],189],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[189,189],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[],[[0,[[119,[176]]]]]],[[189,72],[[74,[22,73]]]],[176,[[0,[[119,[-1]]]]],[]],[180,22],[[],[[0,[[119,[-1]]]]],[]],[[],[[0,[[119,[-1]]]]],[]],0,[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[180,5],[-1,-2,[],[]],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[180,22],[-1,[[63,[-2]]],[],[]],0,0,0,[[176,187],[[0,[[119,[-1]]]]],[]],[[184,187],22],[[176,188],[[0,[[119,[-1]]]]],[]],[[184,188],22],0,0,0,0,0,[[176,56],[[0,[[119,[-1]]]]],[]],[[186,56],22],[176,[[0,[[119,[-1]]]]],[]],[186,22],[176,[[0,[[119,[-1]]]]],[]],[186,22],[176,[[0,[[119,[-1]]]]],[]],[186,22],0,0,0,0,0,0,0,0,0,0,0,[[[175,[],[[190,[-1]]]],-1],24,[55,48]],0,[[-1,130,123,191,24,21],22,168],[[191,-1,133,45,45,120,171,[63,[47]],63,80,81,185],132,168],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[140,140],[[-1,-2],22,[],[]],[[140,140],109],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[3,[125]],[98,[-1]],-2,-3,-4],22,[],[[100,[125,-1]]],[[100,[56],[[19,[5]]]]],[[100,[-1],[[19,[125]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[139,-1,[]],[139,-1,[]],[56,22],[56,22],[[140,140],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[139,72],[[74,[22,73]]]],[[140,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[140,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,139,[]],[[],140],[[140,140],[[63,[109]]]],0,[[],140],0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[80,80],[81,81],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[80,80],5],[[81,81],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[80,72],[[74,[22,73]]]],[[81,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[80,-1],22,91],[[81,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[192,[],[[190,[-1]]]],-1],23,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[23,23],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[23,23],5],[[23,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[22,[[196,[],[[193,[-2]],[105,[-3]],[194,[-4]],[195,[-1]]]],[1,[-3]]]]],[],66,[78,107],[55,192]],[[[111,[-1]]],197,[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],87,66,[78,107],[55,192],[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[],66,[78,107],[55,192],[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[[34,[-2]]],66,[78,107],[55,192],[]],0,[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],-3,66,[78,107],[55,192],[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],51,66,[78,107],[55,192],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],-2],[[1,[-2]]],66,[78,107],[55,192],[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[[118,[-2,-3,35]]],66,[78,107],[55,192],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[121,121],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[[],121],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[121,121],5],[[121,72],[[74,[22,73]]]],[[[84,[30]]],121],[30,121],[83,121],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,[-2,[[1,[-1]]],[],[[100,[[63,[51]]],[[19,[-1]]]]]],[51,[[1,[-1]]],[]],0,[[56,-3],[[1,[-1]]],101,[[110,[],[[19,[22]]]],101],[[54,[[198,[-1]]],[[19,[-2]]]],101]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[199,199],[200,200],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[199,199],5],[[200,200],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[199,72],[[74,[22,73]]]],[[200,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[34,[38]]]],[[],[[34,[-1]]],101],[[],[[34,[-1]]],101],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,[[66,-2],-1,[],[[54,[],[[19,[-1]]]]]],[[],[[74,[66,108]]]],[[66,-1],22,[[110,[],[[19,[22]]]],101]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[201,201],[202,202],[203,203],[204,204],[205,205],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],202],[[],203],[[],204],[[],205],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[[201,201],5],[[202,202],5],[[203,203],5],[[204,204],5],[[205,205],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],0,[[201,72],[[74,[22,73]]]],[[202,72],[[74,[22,73]]]],[[203,72],[[74,[22,73]]]],[[204,72],[[74,[22,73]]]],[[205,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[202,-1],22,91],[[203,-1],22,91],[[204,-1],22,91],[[205,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[1,[[74,[22,201]]]]],[[68,[[99,[[98,[83]]]]]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[82,30,43],82],[[82,-1],82,[[33,[],[[32,[206]]]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[206,206],[82,82],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[],206],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[206,206],5],[[82,82],5],[[206,72],[[74,[22,73]]]],[[82,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,82,[[68,[16]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],207],[207,5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[208,[[208,[120]]]],[[207,207],207],[[207,207],22],[[207,207],207],[[207,207],22],[207,58],[[207,207],207],[[207,207],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[208,[-1]]],[[208,[-1]]],48],[209,209],[210,210],[207,207],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[208,[-1]],[208,[-1]]],109,211],[[207,207],109],[207,5],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[207,207],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[207,207],5],[207,5],[[],207],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[207,207],207],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[[],207],[[[208,[-1]],[208,[-1]]],5,67],[[209,209],5],[[210,210],5],[[207,207],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[207,-1],22,[[33,[],[[32,[207]]]]]],[[[208,[-1]],72],[[74,[22,73]]],78],[[209,72],[[74,[22,73]]]],[[210,72],[[74,[22,73]]]],[[207,72],[[74,[22,73]]]],[[207,72],[[74,[22,73]]]],[[207,72],[[74,[22,73]]]],[[207,72],[[74,[22,73]]]],[[207,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[63,[207]]]],[58,207],[58,207],[-1,207,[[33,[],[[32,[207]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[208,[-1]],-2],22,92,91],[[207,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[207,207],22],[[207,207],207],[[207,207],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[207,5],[207,5],0,[207,5],[207,207],[[],[[34,[-1]]],101],[[],[[34,[-1]]],101],[[[208,[-1]],[208,[-1]]],[[63,[109]]],212],[[207,207],[[63,[109]]]],[[207,207],22],[[207,207,5],22],[207,5],[[207,207],207],[[207,207],22],[[207,207],207],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[207,207],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[207,207],207],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[213,213],[[-1,-2],22,[],[]],[[213,213],109],[[-1,-2],109,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[213,213],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[213,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[213,-1],22,91],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[213,213],[[63,[109]]]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[214,214],[131,131],[215,215],[216,216],[134,134],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[134,134],109],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],131],[[],134],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[[214,214],5],[[131,131],5],[[215,215],5],[[216,216],5],[[134,134],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[214,72],[[74,[22,73]]]],[[131,72],[[74,[22,73]]]],[[215,72],[[74,[22,73]]]],[[216,72],[[74,[22,73]]]],[[134,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[214,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[131,21],5],[[134,134],[[63,[109]]]],[131,[[63,[17]]]],[[131,17],[[63,[17]]]],[[131,21],[[63,[17]]]],[[131,21],[[63,[17]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,[-1,[[22,[[217,[],[[193,[-2]],[105,[-3]],[194,[-4]],[195,[-1]]]],[1,[-3]]]]],[],66,[78,107],[55,192]],[[[111,[-1]]],197,[]],[[[111,[-1]]],197,[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],87,66,[78,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],87,66,[78,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[],66,[78,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[],66,[78,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[[34,[-2]]],66,[78,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[[34,[-2]]],66,[78,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],-3,66,[78,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],-3,66,[78,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],51,66,[78,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],-2],[[1,[-2]]],66,[78,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],[[118,[-2,-3,35]]],66,[78,107],[55,192],[]],0,0,0,0,0,0,0,[[[219,[],[[190,[-1]]]],-1],29,[55,48]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[111,[-1]]],[[111,[-1]]],48],[[-1,-2],22,[],[]],[-1,-2,[],[]],[[],[[111,[-1]]],55],0,0,[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],0,[[[111,[-1]],72],76,78],0,[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,[-1,[[111,[-1]]],[]],0,[[-1,56,-4],[[34,[-2]]],92,101,[[110,[],[[19,[220]]]],101],[[54,[[198,[-2]]],[[19,[-3]]]],101]],[[],[[34,[-1]]],[]],[[-1,-3],[[34,[-2]]],92,[],[[112,[],[[32,[-2]]]],101]],[[-1,-2,-5],[[34,[-3]]],92,101,101,[[110,[],[[19,[[22,[-3,-2]]]]]],101],[[177,[-2],[[19,[-4]]]],101,102]],0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[221,221],[[-1,-2],22,[],[]],[-1,-2,[],[]],0,0,[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[-2,[[1,[-1]]],[],[[100,[221],[[19,[-1]]]],107]],[[221,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,0,[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[52,52],[222,222],[223,223],[224,224],[225,225],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,226,[[227,[],[[190,[4]]]]]],[-1,228,[[229,[],[[190,[4]]]]]],[[],230],0,[[],113],[[],226],[[],231],[[],232],[[],233],[[],223],[[],224],[[],234],[[],235],[[],236],[[],237],[[],238],[[],230],[[],228],[[],225],[[],239],[[],240],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[52,52],5],[[222,222],5],[[52,72],[[74,[22,73]]]],[[222,72],[[74,[22,73]]]],[[222,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,113,[[100,[4],[[19,[23]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[25,232],[-1,232,[[100,[4],[[19,[25]]]]]],[-1,-1,[]],[-1,-1,[]],[224,223],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,237,[[100,[4],[[19,[27]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,238,[[100,[4],[[19,[28]]]]]],[-1,-1,[]],[-1,-1,[]],[43,225],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[51,52],222],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[51,52,-1],222,[[54,[52],[[19,[53]]]]]],0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[53,53],[241,241],[242,242],[243,243],[244,244],[245,245],[246,246],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[53,53],5],[[241,241],5],[[242,242],5],[[243,243],5],[[244,244],5],[[245,245],5],[[246,246],5],[[53,72],[[74,[22,73]]]],[[241,72],[[74,[22,73]]]],[[242,72],[[74,[22,73]]]],[[243,72],[[74,[22,73]]]],[[244,72],[[74,[22,73]]]],[[245,72],[[74,[22,73]]]],[[246,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[52,53],[[43,43,43],243],[[43,43],244],[[43,43,43],245],[[43,43,43],246],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[43,43],241],[[43,43],242],0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[247,247],247],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[248,247],248],[[248,249]],[[247,249]],[[247,247],247],[[248,247],22],[[248,249],22],[[247,249],22],[[247,247],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[247,250],[247,250],[247,250],[247,90],[247,30],[247,87],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[248,247],[[63,[248]]]],[[247,247],[[63,[247]]]],[[247,58],[[63,[247]]]],[[248,248],[[63,[247]]]],[[247,58],[[63,[247]]]],[[248,247],[[63,[248]]]],[[247,247],[[63,[247]]]],[248,248],[247,247],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[248,248],109],[[247,247],109],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],247],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,[[74,[247]]],251],[[247,58],247],[[247,249]],[[247,58],22],[[247,247],30],[[247,247],87],[[247,30],247],[[247,87],247],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[248,248],247],[248,247],[[248,248],5],[[248,252],5],[[247,249],5],[[247,247],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[247,[[34,[248]]]],[[248,72],[[74,[22,73]]]],[[247,72],[[74,[22,73]]]],[-1,-1,[]],[253,248],[252,248],[-1,-1,[]],[254,247],[-1,-1,[]],[-1,-1,[]],[90,247],[90,247],[90,247],[90,247],[30,247],[87,247],[-1,-2,[],[]],[-1,-2,[],[]],[[248,-1],22,91],[[247,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[247,5],[[247,58],247],[[247,58],22],[[247,30],247],[[247,87],247],[[90,58],247],[[],248],[[248,252],[[63,[109]]]],[[248,248],[[63,[109]]]],[[247,249],[[63,[109]]]],[[247,247],[[63,[109]]]],[[247,247],247],[[248,248],247],[[247,58],247],[[247,247],247],[[247,-1],74,255],[[248,252]],[[248,247],248],[[248,248],247],[[248,249]],[[247,247],247],[[247,249]],[[248,247],22],[[248,249],22],[[247,249],22],[[247,247],22],[247,58],[247,58],[247,58],[-1,247,[[126,[],[[32,[247]]]]]],[-1,247,[[126,[],[[32,[247]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[249,[[74,[247,256]]]],[-1,[[74,[-2]]],[],[]],[30,[[74,[247,257]]]],[87,[[74,[247,257]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[258,258],[259,259],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[258,258],5],[[259,259],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[258,72],[[74,[22,73]]]],[[259,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[259,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[260,[-1,-2,-3]],36],[[260,[-1,-2,-3]]],[],[],127],[[[261,[-1,-2,-3]],36],[[261,[-1,-2,-3]]],[],[],127],[[[262,[-1,-2,-3]],80],[[262,[-1,-2,-3]]],[],263,127],[[[262,[-1,-2,-3]],81],[[262,[-1,-2,-3]]],[],263,127],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-4,[[264,[-1,-2,-3]]],[],227,127,[[68,[[147,[-1,-2,-3]]]]]],0,[-4,[[265,[-4,-1,-2,-3]]],[],[],266,[[267,[-1,-2,-3]]]],[[268,69],268],[[[262,[-1,-2,-3]]],[[262,[-1,-2,-3]]],[],263,127],[[[262,[-1,-2,-3]]],[[262,[-1,-2,-3]]],[],263,127],0,[[-1,5,-3],[[269,[-2,-4,-5]]],[[68,[51]]],[],[[100,[5],[[19,[-2]]]]],[270,175],168],[[[260,[-1,-2,-3]]],[[3,[125]]],[],[],127],[[[271,[-1,-2,-3]]],[[3,[125]]],48,[],127],[[[261,[-1,-2,-3]]],[[3,[125]]],[],[],127],[[[272,[-1,-2,-3]]],[[3,[125]]],[],[],127],[[[264,[-1,-2,-3]]],[[3,[125]]],48,227,127],[[[273,[-1,-2,-3,-4]]],[[3,[125]]],[77,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]]],[[3,[125]]],[],263,127],[[[275,[-1,-2,-3]]],[[3,[125]]],[],[276,263],127],[[[277,[-1,-2,-3]]],[[3,[125]]],[],229,127],[[[278,[-1,-2,-3]]],[[3,[125]]],[],[263,175],168],[[[279,[-1,-2,-3,-4,-5]]],[[3,[125]]],[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[268,43,43],268],[-4,[[260,[-1,-2,-3]]],[],[],127,[[33,[],[[32,[[147,[-1,-2,-3]]]]]]]],0,0,[[[280,[-1]],120,[63,[-1]],-3],[[273,[-1,-2,-4,-5]]],[77,48],[],[[100,[-1],[[19,[-2]]]]],[274,219],168],[-4,[[147,[-1,-2,-3]]],[],[],127,[[281,[-1,-2,-3]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-4,[[262,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[[[282,[-1]],44],[[282,[-1]]],283],[[[284,[-1]],44],[[284,[-1]]],[]],[[],[[260,[-1,-2]]],[],127],[[],[[261,[-1,-2]]],[],127],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[260,[-1,-2,-3]],125],22,[],[],127],[[[271,[-1,-2,-3]],125],22,48,[],127],[[[261,[-1,-2,-3]],125],22,[],[],127],[[[272,[-1,-2,-3]],125],22,[],[],127],[[[264,[-1,-2,-3]],125],22,48,227,127],[[[262,[-1,-2,-3]],125],22,[],263,127],[[[275,[-1,-2,-3]],125],22,[],[276,263],127],[[[277,[-1,-2,-3]],125],22,[],229,127],[[[285,[-1,-2,-3]],125],22,48,274,168],[[[278,[-1,-2,-3]],125],22,[],[263,175],168],[[[279,[-1,-2,-3,-4,-5]],125],22,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[277,[-1,-2,-3]],286],[[277,[-1,-2,-3]]],[],229,127],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[260,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[],127],[[[271,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,48,[],127],[[[261,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[],127],[[[272,[-1,-2,-3]],125,-3,-4,130,123,131,21],22,[],[],127,[]],[[[264,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,48,227,127],[[[269,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[270,175],168],[[[273,[-1,-2,-3,-4]],125,-4,-3,130,123,131,21],22,[77,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],263,127],[[[275,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[276,263],127],[[[287,[-1,-2,-3,-4]],125,-4,-3,130,123,131,21],22,[48,288,67],[],[289,229,219,263],168],[[[290,[-1]],125,-2,-1,130,123,131,21],22,291,127],[[[292,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,48,[293,175],168],[[[294,[-1]],125,-2,-1,130,123,131,21],22,295,127],[[[277,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],229,127],[[[296,[-1,-2,-3]],125,-4,-3,130,123,131,21],22,[104,[68,[87]],297],48,298,127],[[[299,[-1,-2,-3,-4]],125,-4,-3,130,123,131,21],22,160,[],300,168],[[[285,[-1,-2,-3]],125,-3,-2,123,131,[63,[301]],21],22,48,274,168],[[[285,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,48,274,168],[[[302,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[303,175],168],[[[278,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[263,175],168],[[[304,[-1,-2,-3]],125,-4,-3,130,123,131,21],22,[104,[68,[87]],297],48,298,127],[[[305,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,-3,-2,130,123,131,21],22,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[306,[-1,-2]],125,-3,-4,130,123,131,21],22,[],[[307,[-1]]],308,[]],[[[282,[-1]],125,-2,-1,130,123,131,21],22,283,154],[[309,125,-1,-2,130,123,131,21],22,127,[]],[[[284,[-1]],125,-2,-3,130,123,131,21],22,[48,92],[[144,[],[[143,[-1]]]]],[]],[[[265,[-4,-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[],266,[[267,[-1,-2,-3]]]],[[268,125,35,-1,130,123,131,21],22,[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[284,[-1]],62],[[284,[-1]]],[]],[[309,72],[[74,[22,73]]]],[[[284,[-1]],72],[[74,[22,73]]],78],[[[265,[-4,-1,-2,-3]],72],[[74,[22,73]]],78,78,[78,266],[78,[267,[-1,-2,-3]]]],[[268,72],[[74,[22,73]]]],[[],[[1,[-1]]],[]],[[],[[1,[-1]]],[]],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,68],[[[273,[-1,-2,-3,-4]]],[[273,[-1,-2,-3,-4]]],[77,48],[],[274,219],168],[[[287,[-1,-2,-3,-4]],-5],[[287,[-1,-2,-3,-4]]],[288,67],[],[289,229,219,263],168,68],[[[292,[-1,-2,-3]],-4],[[292,[-1,-2,-3]]],48,293,168,68],[[[299,[-1,-2,-3,-4]],-5],[[299,[-1,-2,-3,-4]]],160,[],300,168,68],[[[285,[-1,-2,-3]]],[[285,[-1,-2,-3]]],48,274,168],[[[302,[-1,-2,-3]],-4],[[302,[-1,-2,-3]]],[],303,168,68],[[[278,[-1,-2,-3]],-4],[[278,[-1,-2,-3]]],[],[263,175],168,68],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,[[282,[-2]]],[[68,[310]]],283],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[278,[-1,-2,-3]],-4],[[278,[-1,-2,-3]]],[],[263,175],168,[[68,[47]]]],[[[287,[-1,-2,-3,-4]],311],[[287,[-1,-2,-3,-4]]],[288,67],[],[289,229,219,263],168],[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[45]]]],[[[261,[-1,-2,-3]],-4],[[261,[-1,-2,-3]]],[],[],127,[[68,[45]]]],[[[264,[-1,-2,-3]],-4],[[264,[-1,-2,-3]]],[],227,127,[[68,[45]]]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,[[68,[45]]]],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,[[68,[45]]]],[[[290,[-1]],-2],[[290,[-1]]],291,[[68,[45]]]],[[[277,[-1,-2,-3]],-4],[[277,[-1,-2,-3]]],[],229,127,[[68,[45]]]],[[[296,[-1,-2,-3]],-4],[[296,[-1,-2,-3]]],[104,[312,[83]],212],48,298,[[68,[47]]]],[[[304,[-1,-2,-3]],-4],[[304,[-1,-2,-3]]],[104,[312,[83]],212],48,298,[[68,[45]]]],[[[306,[-1,-2]],-3],[[306,[-1,-2]]],[],[[307,[-1]]],[[68,[45]]]],[[[282,[-1]],-2],[[282,[-1]]],283,[[68,[45]]]],[[[284,[-1]],-2],[[284,[-1]]],[],[[68,[45]]]],[[[265,[-4,-1,-2,-3]],-5],[[265,[-4,-1,-2,-3]]],[],[],266,[[267,[-1,-2,-3]]],[[68,[45]]]],[[[299,[-1,-2,-3,-4]]],[[299,[-5,-2,-3,-4]]],160,[],300,168,160],[-1,[[294,[-2]]],[[68,[47]]],295],[-1,[[294,[-2]]],[[68,[47]]],295],[-1,309,[[68,[45]]]],[[[269,[-1,-2,-3]],313],[[269,[-1,-2,-3]]],[],[270,175],168],[[[273,[-1,-2,-3,-4]],314],[[273,[-1,-2,-3,-4]]],[77,48],[],[274,219],168],[[[285,[-1,-2,-3]],314],[[285,[-1,-2,-3]]],48,274,168],[[[262,[-1,-2,-3]],182],[[262,[-1,-2,-3]]],[],263,127],[[[277,[-1,-2,-3]],181],[[277,[-1,-2,-3]]],[],229,127],[[[285,[-1,-2,-3]],183],[[285,[-1,-2,-3]]],48,274,168],0,[-2,[[284,[-1]]],[],[[68,[-1]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-5,[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[33,[],[[32,[[22,[-1,[147,[-2,-3,-4]]]]]]]]]],0,[[[260,[-1,-2,-3]],125,-3,133],132,[],[],127],[[[271,[-1,-2,-3]],125,-3,133],132,48,[],127],[[[261,[-1,-2,-3]],125,-3,133],132,[],[],127],[[[272,[-1,-2,-3]],125,-3,133],132,[],[],127],[[[264,[-1,-2,-3]],125,-3,133],132,48,227,127],[[[269,[-1,-2,-3]],125,-3,133],132,[],[270,175],168],[[[273,[-1,-2,-3,-4]],125,-4,133],132,[77,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]],125,-3,133],132,[],263,127],[[[275,[-1,-2,-3]],125,-3,133],132,[],[276,263],127],[[[287,[-1,-2,-3,-4]],125,-4,133],132,[48,288,67],[],[289,229,219,263],168],[[[290,[-1]],125,-2,133],132,291,127],[[[292,[-1,-2,-3]],125,-3,133],132,48,[293,175],168],[[[294,[-1]],125,-2,133],132,295,127],[[[277,[-1,-2,-3]],125,-3,133],132,[],229,127],[[[296,[-1,-2,-3]],125,-4,133],132,[104,[68,[87]],297],48,298,127],[[[299,[-1,-2,-3,-4]],125,-4,133],132,160,[],300,168],[[[285,[-1,-2,-3]],125,-3,133],132,48,274,168],[[[285,[-1,-2,-3]],125,-3,133,[63,[301]]],132,48,274,168],[[[302,[-1,-2,-3]],125,-3,133],132,[],[303,175],168],[[[278,[-1,-2,-3]],125,-3,133],132,[],[263,175],168],[[[304,[-1,-2,-3]],125,-4,133],132,[104,[68,[87]],297],48,298,127],[[[305,[-1,-2,-3]],125,-3,133],132,[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,-3,133],132,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[306,[-1,-2]],125,-3,133],132,[],[[307,[-1]]],308],[[[282,[-1]],125,-2,133],132,283,154],[[309,125,-1,133],132,127],[[[284,[-1]],125,-2,133],132,[48,92],[[144,[],[[143,[-1]]]]]],[[[265,[-4,-1,-2,-3]],125,-3,133],132,[],[],266,[[267,[-1,-2,-3]]]],[[268,125,35,133],132],[[-1,-6],[[279,[-2,-3,-4,-1,-5]]],92,[],[],[],[[68,[[147,[-2,-3,-4]]]]],[[100,[-1],[[19,[-5]]]]]],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[77,48],[],[274,219],168,[[68,[171]]]],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],48,274,168,[[68,[171]]]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,[[68,[47]]]],[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[47]]]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,[[68,[47]]]],[-4,[[271,[-1,-2,-3]]],[],[],127,[[68,[[147,[-1,-2,-3]]]]]],[[[260,[-1,-2,-3]],125,123,131,21,-3],134,[],[],127],[[[271,[-1,-2,-3]],125,123,131,21,-3],134,48,[],127],[[[261,[-1,-2,-3]],125,123,131,21,-3],134,[],[],127],[[[272,[-1,-2,-3]],125,123,131,21,-3],134,[],[],127],[[[264,[-1,-2,-3]],125,123,131,21,-3],134,48,227,127],[[[269,[-1,-2,-3]],125,123,131,21,-3],134,[],[270,175],168],[[[273,[-1,-2,-3,-4]],125,123,131,21,-4],134,[77,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]],125,123,131,21,-3],134,[],263,127],[[[275,[-1,-2,-3]],125,123,131,21,-3],134,[],[276,263],127],[[[287,[-1,-2,-3,-4]],125,123,131,21,-4],134,[48,288,67],[],[289,229,219,263],168],[[[292,[-1,-2,-3]],125,123,131,21,-3],134,48,[293,175],168],[[[277,[-1,-2,-3]],125,123,131,21,-3],134,[],229,127],[[[296,[-1,-2,-3]],125,123,131,21,-4],134,[104,[68,[87]],297],48,298,127],[[[299,[-1,-2,-3,-4]],125,123,131,21,-4],134,160,[],300,168],[[[285,[-1,-2,-3]],125,123,131,21,-3],134,48,274,168],[[[302,[-1,-2,-3]],125,123,131,21,-3],134,[],[303,175],168],[[[278,[-1,-2,-3]],125,123,131,21,-3],134,[],[263,175],168],[[[304,[-1,-2,-3]],125,123,131,21,-4],134,[104,[68,[87]],297],48,298,127],[[[305,[-1,-2,-3]],125,123,131,21,-3],134,[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,123,131,21,-3],134,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[306,[-1,-2]],125,123,131,21,-3],134,[],[[307,[-1]]],308],[[[265,[-4,-1,-2,-3]],125,123,131,21,-3],134,[],[],266,[[267,[-1,-2,-3]]]],[[],[[260,[-1,-2,-3]]],[],[],127],[-4,[[271,[-1,-2,-3]]],[],[],[],[[68,[[147,[-1,-2,-3]]]]]],[[],[[261,[-1,-2,-3]]],[],[],127],[[-1,-4],[[272,[-2,-1,-3]]],[],[],127,[[68,[[147,[-2,-1,-3]]]]]],[-4,[[264,[-1,-2,-3]]],[],227,127,[[68,[[147,[-1,-2,-3]]]]]],[[-1,5,-3],[[269,[-2,-4,-5]]],[[68,[51]]],[],[[100,[5],[[19,[-2]]]]],[270,175],168],[[[280,[-1]],120,[63,[-1]],-3],[[273,[-1,-2,-4,-5]]],[77,48],[],[[100,[-1],[[19,[-2]]]]],[274,219],168],[-4,[[262,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[[[316,[-1]],-5],[[275,[-2,-3,-4]]],[],[],[276,263],127,[[100,[317,-1,5],[[19,[[318,[-2,-3,-4]]]]]]]],[[-2,[63,[-1]],-4],[[287,[-1,-3,-5,-6]]],[288,67],[[68,[[99,[[98,[-1]]]]]]],[],[[100,[-1],[[19,[-3]]]]],[289,229,219,263],168],[[[319,[30]],30],[[290,[-1]]],291],[[-1,-2,[63,[-2]],-4],[[292,[-3,-5,-6]]],[[68,[51]]],[320,104],48,[[54,[-2],[[19,[-3]]]]],293,168],[-4,[[277,[-1,-2,-3]]],[],229,127,[[68,[[147,[-1,-2,-3]]]]]],[[[319,[-1]],-1,-3],[[296,[-1,-2,-4]]],[104,[312,[83]],212],48,[[100,[-1],[[19,[-2]]]]],298],[[[321,[-1]]],[[299,[173,-2,-3,-1]]],168,[],300],[[120,120],[[285,[-1,-2,-3]]],48,274,168],[[-1,5,-3],[[302,[-2,-4,-5]]],[[68,[[63,[51]]]]],[],[[100,[5],[[19,[-2]]]]],303,168],[[-4,-5,322],[[278,[-1,-2,-3]]],[],[263,175],168,[[68,[[147,[-1,-2,-3]]]]],[[68,[[99,[120]]]]]],[[[319,[-1]],-1,-3],[[304,[-1,-2,-4]]],[104,[312,[83]],212],48,[[100,[-1],[[19,[-2]]]]],298],[-4,[[305,[-1,-2,-3]]],[],[],127,[[100,[50],[[19,[[147,[-1,-2,-3]]]]]]]],[[-1,-6],[[279,[-2,-3,-4,-1,-5]]],92,[],[],[],[[68,[[147,[-2,-3,-4]]]]],[[100,[-1],[[19,[-5]]]]]],[-2,[[306,[-1,-2]]],[],[[307,[-1]]]],[-1,[[282,[-2]]],[[68,[59]]],283],[[-1,-2],309,[[68,[45]]],[[68,[45]]]],[-2,[[284,[-1]]],[],[[68,[-1]]]],[-4,[[265,[-4,-1,-2,-3]]],[],[],266,[[267,[-1,-2,-3]]]],[323,268],[[[299,[-1,-2,-3,-4]],-5],[[299,[-1,-2,-3,-4]]],160,[],300,168,[[100,[170],[[19,[-2]]]]]],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,[[100,[317],[[19,[-1]]]]]],[[[273,[-1,-2,-3,-4]],-2],[[273,[-1,-2,-3,-4]]],[77,48],[],[274,219],168],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,[[100,[324],[[19,[-1]]]]]],[[[260,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],127],[[[271,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,48,[],127],[[[261,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],127],[[[272,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],127],[[[264,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,48,227,127],[[[269,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[270,175],168],[[[273,[-1,-2,-3,-4]],125,38,123,131,-4,135,[122,[-2]],21],136,[77,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],263,127],[[[275,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[276,263],127],[[[287,[-1,-2,-3,-4]],125,38,123,131,-4,135,[122,[-2]],21],136,[48,288,67],[],[289,229,219,263],168],[[[292,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,48,[293,175],168],[[[277,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],229,127],[[[296,[-1,-2,-3]],125,38,123,131,-4,135,[122,[-2]],21],136,[104,[68,[87]],297],48,298,127],[[[299,[-1,-2,-3,-4]],125,38,123,131,-4,135,[122,[-2]],21],136,160,[],300,168],[[[285,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,48,274,168],[[[302,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[303,175],168],[[[278,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[263,175],168],[[[304,[-1,-2,-3]],125,38,123,131,-4,135,[122,[-2]],21],136,[104,[68,[87]],297],48,298,127],[[[305,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[306,[-1,-2]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[[307,[-1]]],308],[[[265,[-4,-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],266,[[267,[-1,-2,-3]]]],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[77,48],[],[274,219],168,[[100,[51],[[19,[-2]]]]]],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],48,274,168,[[100,[51],[[19,[-1]]]]]],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[77,48],[],[274,219],168,[[100,[-1],[[19,[-2]]]]]],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],48,274,168,[[100,[51],[[19,[-1]]]]]],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[264,[-1,-2,-3]],-1],[[264,[-1,-2,-3]]],[],227,127],[[[264,[-1,-2,-3]],[63,[-1]]],[[264,[-1,-2,-3]]],[],227,127],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[296,[-1,-2,-3]],-2],[[296,[-1,-2,-3]]],[104,[312,[83]],212],48,298],[[[304,[-1,-2,-3]],-2],[[304,[-1,-2,-3]]],[104,[312,[83]],212],48,298],[[[275,[-1,-2,-3]],-4,-5],[[275,[-1,-2,-3]]],[],[276,263],127,[[68,[47]]],[[100,[325],[[19,[-1]]]]]],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[277,[-1,-2,-3]],-4],[[277,[-1,-2,-3]]],[],229,127,[[100,[326],[[19,[-1]]]]]],[[[285,[-1,-2,-3]],-1],[[285,[-1,-2,-3]]],48,274,168],[[[260,[-1,-2,-3]],125,123,-3,119],22,[],[],127],[[[271,[-1,-2,-3]],125,123,-3,119],22,48,[],127],[[[261,[-1,-2,-3]],125,123,-3,119],22,[],[],127],[[[272,[-1,-2,-3]],125,123,-3,119],22,[],[],127],[[[264,[-1,-2,-3]],125,123,-3,119],22,48,227,127],[[[262,[-1,-2,-3]],125,123,-3,119],22,[],263,127],[[[275,[-1,-2,-3]],125,123,-3,119],22,[],[276,263],127],[[[277,[-1,-2,-3]],125,123,-3,119],22,[],229,127],[[[285,[-1,-2,-3]],125,123,-3,119],22,48,274,168],[[[281,[],[[327,[-1]],[328,[-2]]]],-1,119],22,55,[]],[[[305,[-1,-2,-3]],125,123,-3,119],22,[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,123,-3,119],22,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],0,[[[260,[-1,-2,-3]],125,123,-3],[[63,[[137,[-1,-2,-3]]]]],[],[],127],[[[271,[-1,-2,-3]],125,123,-3],[[63,[[137,[-1,-2,-3]]]]],48,[],127],[[[261,[-1,-2,-3]],125,123,-3],[[63,[[137,[-1,-2,-3]]]]],[],[],127],[[[272,[-1,-2,-3]],125,123,-3],[[63,[[137,[-1,-4,-3]]]]],[],[],127,[]],[[[264,[-1,-2,-3]],125,123,-3],[[63,[[137,[-1,-2,-3]]]]],48,227,127],[[[273,[-1,-2,-3,-4]],125,123,-4],[[63,[[137,[-2,-3,-4]]]]],[77,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]],125,123,-3],[[63,[[137,[-1,-2,-3]]]]],[],263,127],[[[275,[-1,-2,-3]],125,123,-3],[[63,[[137,[-1,-2,-3]]]]],[],[276,263],127],[[[287,[-1,-2,-3,-4]],125,123,-4],[[63,[[137,[-2,-3,-4]]]]],[48,288,67],[],[289,229,219,263],168],[[[277,[-1,-2,-3]],125,123,-3],[[63,[[137,[-1,-2,-3]]]]],[],229,127],[[[278,[-1,-2,-3]],125,123,-3],[[63,[[137,[-1,-2,-3]]]]],[],[263,175],168],[[[305,[-1,-2,-3]],125,123,-3],[[63,[[137,[-1,-2,-3]]]]],[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,123,-3],[[63,[[137,[-1,-2,-3]]]]],[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[46]]]],[[[261,[-1,-2,-3]],-4],[[261,[-1,-2,-3]]],[],[],127,[[68,[46]]]],[[[264,[-1,-2,-3]],-4],[[264,[-1,-2,-3]]],[],227,127,[[68,[46]]]],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[77,48],[],[274,219],168,[[68,[46]]]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,[[68,[46]]]],[[[287,[-1,-2,-3,-4]],-5],[[287,[-1,-2,-3,-4]]],[288,67],[],[289,229,219,263],168,[[68,[46]]]],[[[299,[-1,-2,-3,-4]],-5],[[299,[-1,-2,-3,-4]]],160,[],300,168,[[68,[46]]]],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],48,274,168,[[68,[46]]]],[[[278,[-1,-2,-3]],-4],[[278,[-1,-2,-3]]],[],[263,175],168,[[68,[47]]]],0,[[[285,[-1,-2,-3]]],[[285,[-1,-2,-3]]],48,274,168],0,[[-2,[63,[-1]],-4],[[287,[-1,-3,-5,-6]]],[288,67],[[68,[[99,[[98,[-1]]]]]]],[],[[100,[-1],[[19,[-3]]]]],[289,229,219,263],168],[[[287,[-1,-2,-3,-4]],-5],[[287,[-1,-2,-3,-4]]],[288,67],[],[289,229,219,263],168,[[68,[51]]]],0,[[[319,[30]],30],[[290,[-1]]],291],[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[[147,[-1,-2,-3]]]]]],[[[261,[-1,-2,-3]],-4],[[261,[-1,-2,-3]]],[],[],127,[[68,[[147,[-1,-2,-3]]]]]],0,0,[[-1,-2,[63,[-2]],-4],[[292,[-3,-5,-6]]],[[68,[51]]],[104,320],48,[[54,[-2],[[19,[-3]]]]],293,168],[-4,[[305,[-1,-2,-3]]],[],[],127,[[100,[50],[[19,[[147,[-1,-2,-3]]]]]]]],[-4,[[261,[-1,-2,-3]]],[],[],127,[[33,[],[[32,[[147,[-1,-2,-3]]]]]]]],0,0,0,[-4,[[277,[-1,-2,-3]]],[],229,127,[[68,[[147,[-1,-2,-3]]]]]],0,[-2,[[306,[-1,-2]]],[],[[307,[-1]]]],[[[260,[-1,-2,-3]]],[[50,[45]]],[],[],127],[[[271,[-1,-2,-3]]],[[50,[45]]],48,[],127],[[[261,[-1,-2,-3]]],[[50,[45]]],[],[],127],[[[272,[-1,-2,-3]]],[[50,[45]]],[],[],127],[[[264,[-1,-2,-3]]],[[50,[45]]],48,227,127],[[[269,[-1,-2,-3]]],[[50,[45]]],[],[270,175],168],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,[[68,[47]]]],[[[273,[-1,-2,-3,-4]]],[[50,[45]]],[77,48],48,[263,274,229,219],168],[[[273,[-1,-2,-3,-4]],30],[[273,[-1,-2,-3,-4]]],[77,48],[],[274,219],168],[[[262,[-1,-2,-3]]],[[50,[45]]],[],263,127],[[[275,[-1,-2,-3]]],[[50,[45]]],[],[276,263],127],[[[287,[-1,-2,-3,-4]]],[[50,[45]]],[48,288,67],[],[289,229,219,263],168],[[[290,[-1]]],[[50,[45]]],291],[[[292,[-1,-2,-3]]],[[50,[45]]],48,[293,175],168],[[[292,[-1,-2,-3]],-4],[[292,[-1,-2,-3]]],48,293,168,[[68,[47]]]],[[[294,[-1]]],[[50,[45]]],295],[[[277,[-1,-2,-3]]],[[50,[45]]],[],229,127],[[[296,[-1,-2,-3]]],[[50,[45]]],[104,[68,[87]],297],48,298],[[[299,[-1,-2,-3,-4]]],[[50,[45]]],160,[],300,168],[[[285,[-1,-2,-3]]],[[50,[45]]],48,274,168],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],48,274,168,[[68,[47]]]],[[[302,[-1,-2,-3]]],[[50,[45]]],[],[303,175],168],[[[302,[-1,-2,-3]],-4],[[302,[-1,-2,-3]]],[],303,168,[[68,[47]]]],[[[278,[-1,-2,-3]],-4],[[278,[-1,-2,-3]]],[],[263,175],168,[[68,[47]]]],[[[278,[-1,-2,-3]]],[[50,[45]]],[],[263,175],168],[[[304,[-1,-2,-3]]],[[50,[45]]],[104,[68,[87]],297],48,298],[[[305,[-1,-2,-3]]],[[50,[45]]],[],[],127],[[[279,[-1,-2,-3,-4,-5]]],[[50,[45]]],[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[306,[-1,-2]]],[[50,[45]]],[],[[307,[-1]]]],[[[282,[-1]]],[[50,[45]]],283],[309,[[50,[45]]]],[[[284,[-1]]],[[50,[45]]],[48,92]],[[[265,[-4,-1,-2,-3]]],[[50,[45]]],[],[],266,[[267,[-1,-2,-3]]]],[268,[[50,[45]]]],[[[279,[-1,-2,-3,-4,-5]]],[[50,[45]]],[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],0,[[[319,[-1]],-1,-3],[[296,[-1,-2,-4]]],[104,[312,[83]],212],48,[[100,[-1],[[19,[-2]]]]],298],[[[278,[-1,-2,-3]],5],[[278,[-1,-2,-3]]],[],[263,175],168],0,[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[47]]]],[[[261,[-1,-2,-3]],-4],[[261,[-1,-2,-3]]],[],[],127,[[68,[47]]]],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,[[68,[47]]]],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,[[68,[47]]]],[[[292,[-1,-2,-3]],-4],[[292,[-1,-2,-3]]],48,293,168,[[68,[47]]]],[[[302,[-1,-2,-3]],-4],[[302,[-1,-2,-3]]],[],303,168,[[68,[47]]]],[[[271,[-1,-2,-3]]],139,48,[],127],[[[272,[-1,-2,-3]]],139,[],[],127],[[[264,[-1,-2,-3]]],139,48,227,127],[[[269,[-1,-2,-3]]],139,[],[270,175],168],[[[273,[-1,-2,-3,-4]]],139,[77,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]]],139,[],263,127],[[[275,[-1,-2,-3]]],139,[],[276,263],127],[[[287,[-1,-2,-3,-4]]],139,[48,288,67],[],[289,229,219,263],168],[[[292,[-1,-2,-3]]],139,48,[293,175],168],[[[277,[-1,-2,-3]]],139,[],229,127],[[[296,[-1,-2,-3]]],139,[104,[68,[87]],297],48,298],[[[299,[-1,-2,-3,-4]]],139,160,[],300,168],[[[285,[-1,-2,-3]]],139,48,274,168],[[[302,[-1,-2,-3]]],139,[],[303,175],168],[[[278,[-1,-2,-3]]],139,[],[263,175],168],[[[304,[-1,-2,-3]]],139,[104,[68,[87]],297],48,298],[[[305,[-1,-2,-3]]],139,[],[],127],[[[279,[-1,-2,-3,-4,-5]]],139,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[306,[-1,-2]]],139,[],[[307,[-1]]]],[[[265,[-4,-1,-2,-3]]],139,[],[],266,[[267,[-1,-2,-3]]]],[[[296,[-1,-2,-3]],-4],[[296,[-1,-2,-3]]],[104,[312,[83]],212],48,298,[[68,[-1]]]],[[[304,[-1,-2,-3]],-1],[[304,[-1,-2,-3]]],[104,[312,[83]],212],48,298],[[[264,[-1,-2,-3]],-4],[[264,[-1,-2,-3]]],[],227,127,68],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,68],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[77,48],[],[274,219],168,[68,68,48]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,68],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,68],[[[287,[-1,-2,-3,-4]],-5],[[287,[-1,-2,-3,-4]]],[288,67],[],[289,229,219,263],168,68],[[[290,[-1]],-2],[[290,[-1]]],291,68],[[[292,[-1,-2,-3]],-4],[[292,[-1,-2,-3]]],48,293,168,68],[[[294,[-1]],-2],[[294,[-1]]],295,68],[[[277,[-1,-2,-3]],-4],[[277,[-1,-2,-3]]],[],229,127,68],[[[296,[-1,-2,-3]],-4],[[296,[-1,-2,-3]]],[104,[312,[83]],212],48,298,68],[[[299,[-1,-2,-3,-4]],-5],[[299,[-1,-2,-3,-4]]],160,[],300,168,68],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],48,274,168,68],[[[302,[-1,-2,-3]],-4],[[302,[-1,-2,-3]]],[],303,168,68],[[[278,[-1,-2,-3]],-4],[[278,[-1,-2,-3]]],[],[263,175],168,68],[[[304,[-1,-2,-3]],-4],[[304,[-1,-2,-3]]],[104,[312,[83]],212],48,298,68],[[[282,[-1]],-2],[[282,[-1]]],283,68],0,[-1,[[282,[-2]]],[[68,[59]]],283],[[[271,[-1,-2,-3]]],140,48,[],127],[[[272,[-1,-2,-3]]],140,[],[],127],[[[264,[-1,-2,-3]]],140,48,227,127],[[[269,[-1,-2,-3]]],140,[],[270,175],168],[[[273,[-1,-2,-3,-4]]],140,[77,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]]],140,[],263,127],[[[275,[-1,-2,-3]]],140,[],[276,263],127],[[[287,[-1,-2,-3,-4]]],140,[48,288,67],[],[289,229,219,263],168],[[[292,[-1,-2,-3]]],140,48,[293,175],168],[[[277,[-1,-2,-3]]],140,[],229,127],[[[296,[-1,-2,-3]]],140,[104,[68,[87]],297],48,298],[[[299,[-1,-2,-3,-4]]],140,160,[],300,168],[[[285,[-1,-2,-3]]],140,48,274,168],[[[302,[-1,-2,-3]]],140,[],[303,175],168],[[[278,[-1,-2,-3]]],140,[],[263,175],168],[[[304,[-1,-2,-3]]],140,[104,[68,[87]],297],48,298],[[[305,[-1,-2,-3]]],140,[],[],127],[[[279,[-1,-2,-3,-4,-5]]],140,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[306,[-1,-2]]],140,[],[[307,[-1]]]],[[[265,[-4,-1,-2,-3]]],140,[],[],266,[[267,[-1,-2,-3]]]],0,[-1,[[174,[-2,-3]]],288,175,168],[[[302,[-1,-2,-3]],80],[[302,[-1,-2,-3]]],[],303,168],0,[[[321,[-1]]],[[299,[173,-2,-3,-1]]],168,48,300],0,[[120,120],[[285,[-1,-2,-3]]],48,274,168],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[77,48],[],[274,219],168,[68,48]],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,[[68,[171]]]],[[[287,[-1,-2,-3,-4]],-5],[[287,[-1,-2,-3,-4]]],[288,67],[],[289,229,219,263],168,[[68,[171]]]],[[[292,[-1,-2,-3]],-4],[[292,[-1,-2,-3]]],48,293,168,[[68,[171]]]],[[[302,[-1,-2,-3]],-4],[[302,[-1,-2,-3]]],[],303,168,[[68,[171]]]],[[[269,[-1,-2,-3]],185],[[269,[-1,-2,-3]]],[],[270,175],168],[[[287,[-1,-2,-3,-4]],185],[[287,[-1,-2,-3,-4]]],[288,67],[],[289,229,219,263],168],[[[292,[-1,-2,-3]],185],[[292,[-1,-2,-3]]],48,293,168],[[[302,[-1,-2,-3]],185],[[302,[-1,-2,-3]]],[],303,168],[[[278,[-1,-2,-3]],185],[[278,[-1,-2,-3]]],[],[263,175],168],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,[[68,[47]]]],[[[287,[-1,-2,-3,-4]],-5],[[287,[-1,-2,-3,-4]]],[288,67],[],[289,229,219,263],168,[[68,[47]]]],[[[292,[-1,-2,-3]],-4],[[292,[-1,-2,-3]]],48,293,168,[[68,[47]]]],[[[302,[-1,-2,-3]],-4],[[302,[-1,-2,-3]]],[],303,168,[[68,[47]]]],0,[[-1,-4],[[272,[-2,-1,-3]]],[],[],127,[[68,[[147,[-2,-1,-3]]]]]],0,[[-1,5,-3],[[302,[-2,-4,-5]]],[[68,[[63,[51]]]]],[],[[100,[5],[[19,[-2]]]]],303,168],0,[[-4,-5,322],[[278,[-1,-2,-3]]],[],[263,175],168,[[68,[[147,[-1,-2,-3]]]]],288],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[281,[],[[327,[-1]],[328,[-2]]]],-1,-2],[[63,[-3]]],55,[],[]],[-1,[[294,[-2]]],[[68,[47]]],295],[-1,[[294,[-2]]],[[68,[47]]],295],0,[[[319,[-1]],-1,-3],[[304,[-1,-2,-4]]],[104,[312,[83]],212],48,[[100,[-1],[[19,[-2]]]]],298],[-1,309,[[68,[45]]]],[[[281,[],[[327,[-1]],[328,[-2]]]],-1],[[147,[-2,-3,-4]]],55,[],[],[]],[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[45]]]],[[[261,[-1,-2,-3]],-4],[[261,[-1,-2,-3]]],[],[],127,[[68,[45]]]],[[[264,[-1,-2,-3]],-4],[[264,[-1,-2,-3]]],[],227,127,[[68,[45]]]],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,[[68,[45]]]],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[77,48],[],[274,219],168,[[68,[45]]]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,[[68,[45]]]],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,[[68,[45]]]],[[[287,[-1,-2,-3,-4]],-5],[[287,[-1,-2,-3,-4]]],[288,67],[],[289,229,219,263],168,[[68,[45]]]],[[[290,[-1]],-2],[[290,[-1]]],291,[[68,[45]]]],[[[292,[-1,-2,-3]],-4],[[292,[-1,-2,-3]]],48,293,168,[[68,[45]]]],[[[277,[-1,-2,-3]],-4],[[277,[-1,-2,-3]]],[],229,127,[[68,[45]]]],[[[296,[-1,-2,-3]],-4],[[296,[-1,-2,-3]]],[104,[312,[83]],212],48,298,[[68,[45]]]],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],48,274,168,[[68,[45]]]],[[[302,[-1,-2,-3]],-4],[[302,[-1,-2,-3]]],[],303,168,[[68,[45]]]],[[[304,[-1,-2,-3]],-4],[[304,[-1,-2,-3]]],[104,[312,[83]],212],48,298,[[68,[47]]]],[[[306,[-1,-2]],-3],[[306,[-1,-2]]],[],[[307,[-1]]],[[68,[45]]]],[[[282,[-1]],-2],[[282,[-1]]],283,[[68,[45]]]],[[[284,[-1]],-2],[[284,[-1]]],[],[[68,[45]]]],[[[265,[-4,-1,-2,-3]],-5],[[265,[-4,-1,-2,-3]]],[],[],266,[[267,[-1,-2,-3]]],[[68,[45]]]],[-4,[[260,[-1,-2,-3]]],[],[],127,[[33,[],[[32,[[147,[-1,-2,-3]]]]]]]],[-4,[[261,[-1,-2,-3]]],[],[],127,[[33,[],[[32,[[147,[-1,-2,-3]]]]]]]],[-1,309,[[68,[45]]]],[-1,309,[[68,[45]]]],0,0,0,0,0,[[[227,[],[[190,[-1]]]],-1],12,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[12,12],[329,329],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],12],[[],329],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[227,[],[[190,[-1]]]],-1],12,55],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,21,131,5,-2,-3],12,127,227,[[54,[],[[19,[329]]]]]],[56,22],[56,22],[[329,329],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[12,72],[[74,[22,73]]]],[[329,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[227,[],[[190,[-1]]]],-1],12,55],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[133,45,45,46,-1],132,[[54,[133],[[19,[132]]]]]],[[123,131,5],134],[[],329],[[[227,[],[[190,[-1]]]],-1],12,55],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[38,123,131,[122,[-1]],[63,[-1]],-2],136,48,[[54,[],[[19,[329]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[330,17],[[17,30],331],[332,22],[333,333],[334,334],[331,331],[335,335],[336,336],[337,337],[338,338],[339,339],[340,340],[341,341],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],332],[[],334],[[],335],[[],336],[[],337],[[],338],[[],340],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[266,[],[[342,[-1]]]],[3,[-1]]],22,[]],[[[267,[],[[327,[-1]]]],-1,-2,-3,21,131],3,55,266,[]],[[332,35,50,-1],343,[[54,[330]]]],[[340,-1],22,[[177,[331,43]]]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[333,333],5],[[339,339],5],[[341,341],5],0,0,[[330,331,-1],22,[[68,[334]]]],[[330,17,50,-1],22,[[68,[334]]]],[[330,-1],22,[[68,[340]]]],[[332,72],[[74,[22,73]]]],[[333,72],[[74,[22,73]]]],[[334,72],[[74,[22,73]]]],[[331,72],[[74,[22,73]]]],[[335,72],[[74,[22,73]]]],[[336,72],[[74,[22,73]]]],[[337,72],[[74,[22,73]]]],[[338,72],[[74,[22,73]]]],[[339,72],[[74,[22,73]]]],[[340,72],[[74,[22,73]]]],[[341,72],[[74,[22,73]]]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[344,333],[-1,-1,[]],[344,334],[-1,-1,[]],[43,334],[333,334],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[43,339],[-1,-1,[]],[333,339],[51,340],[120,340],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[330,30],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[330,343],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[17,17],331],0,0,0,0,[[[267,[],[[327,[-1]]]],-1,21,131],134,55],[[35,50],330],[[],332],[-1,331,[[54,[345]]]],0,[333,346],0,0,[331,347],[[17,50],331],[[330,30],22],0,[[330,-1],22,[[68,[30]]]],[[330,-1],22,[[68,[18]]]],0,0,[330,50],0,0,[[330,331,-1],22,[[68,[335]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[331,[349,[30,348,348]]],331],[[330,18],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[267,[],[[327,[-1]]]],-1,341,21,131],[[22,[136,[63,[-2]]]]],55,[]],0,[330,30],0,[[330,21,-2],-1,[],[[54,[330],[[19,[-1]]]]]],[[335,43],335],[[335,336],335],[[335,337],335],[[330,-2],-1,[],[[54,[330],[[19,[-1]]]]]],[[335,30],335],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[136,136],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[136,136],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[136,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[136,136],136],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[350,350],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[350,350],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[350,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[344,30,43],344],[[344,-1],344,[[33,[],[[32,[206]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[344,344],[346,346],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],0,[[344,344],5],[[346,346],5],[[344,72],[[74,[22,73]]]],[[346,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,5,[]],[[17,17],344],[[40,21],346],[344,346],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[[345,351],22],[[345,17,17,30],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[345,17,17,17],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[345,331],0,[[345,17,30],22],[351,351],[[-1,-2],22,[],[]],[345,22],[-1,-2,[],[]],[-1,-2,[],[]],[[],345],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[345,352],22],0,[[351,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[345,17],22],[[345,17],22],[[],345],[[345,17,17],22],0,[[345,17,50],22],0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[352,352],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],0,0,[[352,72],[[74,[22,73]]]],[351,352],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[353,354],[347,355],[356,357],[[347,358],[[98,[30]]]],[[355,358],[[98,[30]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],359],[[],[[361,[360]]]],[356,362],[56,363],[356,22],[364,364],[353,353],[354,354],[[[365,[-1,-2]]],[[365,[-1,-2]]],48,48],[347,347],[355,355],[356,356],[357,357],[[[366,[-1]]],[[366,[-1]]],48],[367,367],[368,368],[369,369],[370,370],[371,371],[372,372],[373,373],[358,358],[374,374],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],364],[[],347],[[],356],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[364,364],5],[[[365,[-1,-2]],[365,[-1,-2]]],5,67,67],[[368,368],5],[[369,369],5],[[370,370],5],[[371,371],5],[[372,372],5],[[373,373],5],[[358,358],5],[[374,374],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[353,374],[[365,[358,373]]]],[[354,374],[[365,[358,373]]]],[[[366,[-1]],374],[[365,[-1,22]]],[]],[[367,374],[[365,[358,373]]]],[[353,[98,[-1]],[98,[-2]]],[[375,[-1,-2]]],[],[]],[347,[[63,[[22,[[376,[30,348]],[98,[30]]]]]]]],[355,[[63,[[22,[[376,[30,348]],[98,[30]]]]]]]],[[364,72],[[74,[22,73]]]],[[353,72],[[74,[22,73]]]],[[354,72],[[74,[22,73]]]],[[[365,[-1,-2]],72],[[74,[22,73]]],78,78],[[347,72],[[74,[22,73]]]],[[355,72],[[74,[22,73]]]],[[356,72],[[74,[22,73]]]],[[357,72],[[74,[22,73]]]],[[368,72],[[74,[22,73]]]],[[369,72],[[74,[22,73]]]],[[370,72],[[74,[22,73]]]],[[371,72],[[74,[22,73]]]],[[372,72],[[74,[22,73]]]],[[373,72],[[74,[22,73]]]],[[358,72],[[74,[22,73]]]],[[374,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[353,354],[[[365,[-1,-2]]],-1,48,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[347,355],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,347,[[33,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]]],[-1,356,[[33,[],[[32,[355]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,373],[56,358],[[377,358],[[98,[30]]]],[[378,358],[[98,[30]]]],[[347,358],[[98,[30]]]],[[355,358],[[98,[30]]]],[[356,56],355],[[357,56],355],[[379,373],[[376,[30,348]]]],[[347,373],[[376,[30,348]]]],[[355,373],[[376,[30,348]]]],[[[366,[-1]],373],[[376,[30,348]]],380],[[379,358],[[376,[30,348]]]],[[347,358],[[376,[30,348]]]],[[355,358],[[376,[30,348]]]],[[[366,[-1]],358],[[376,[30,348]]],380],[[[365,[-1,-2]],-3],22,92,92,91],[[372,-1],22,91],[[373,-1],22,91],[[358,-1],22,91],[[374,-1],22,91],[347,381],[355,381],[[[366,[-1]]],382,[]],[[347,373],[[376,[30,348]]]],[[347,358],[[376,[30,348]]]],[[355,358],[[376,[30,348]]]],[[355,373],[[376,[30,348]]]],[[[366,[-1]],358],-1,[]],[356,[[161,[56]]]],[357,[[161,[56]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[353,383],[347,384],[355,384],[355,384],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[365,[-1,-2]]],5,[],[]],[355,5],[356,5],[357,5],[[371,385],5],[370,5],[[371,385],5],[370,5],[353,383],[354,383],[347,384],[355,384],[356,386],[357,386],[[[366,[-1]]],[[387,[-1]]],[]],[367,388],[347,389],[355,389],0,0,[347,[[63,[[22,[[376,[30,348]],[98,[30]]]]]]]],[355,[[63,[[22,[[376,[30,348]],[98,[30]]]]]]]],[356,56],[357,56],0,[[[98,[30]],56],378],[[],347],[[],356],[[353,374],[[63,[374]]]],[[354,374],[[63,[374]]]],[[353,374],374],[[354,374],374],[377,56],[378,56],[347,56],[355,56],[373,56],[358,56],[370,370],0,0,[[[366,[-1]]],[[390,[-1]]],380],[[353,[98,[-1]],[98,[-2]]],[[391,[-1,-2]]],[],[]],0,0,0,[380,[[376,[30,348]]]],[[356,56,56,56],22],[347,[[393,[392]]]],[355,[[393,[392]]]],[[],[[394,[360]]]],0,[[[365,[-1,-2]]],-1,48,[]],[370,30],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[373,56],[358,56],[374,56],0,[[[365,[[376,[30,348]],[376,[30,348]]]],-1],[[365,[[376,[30,348]],[376,[30,348]]]]],[[395,[30]]]],[[347,-1],347,[[395,[30]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[56,347],[[56,56,56],356],[[[365,[-1,-2]]],[[365,[[376,[30,348]],[376,[30,348]]]]],380,380],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[396,[376,[30,348]],30,372,[98,[30]]],22],[[[361,[-1]],[376,[30,348]],30,372],22,396],[[396,[376,[30,348]],[397,[30,348]],[398,[30]],372,[98,[30]]],22],[[[361,[-1]],[376,[30,348]],[397,[30,348]],[398,[30]],372],22,396],[[396,[399,[30]],[98,[30]]],[[22,[358,358]]]],[[[361,[-1]],[399,[30]]],[[22,[358,358]]],396],[[396,[376,[30,348]],[98,[30]]],358],[[[361,[-1]],[376,[30,348]]],358,396],[[396,[366,[[376,[30,348]]]],[98,[30]]],22],[[400,[366,[[376,[30,348]]]]],22],[[[361,[-1]],[366,[[376,[30,348]]]]],22,396],[[396,[401,[30,348]],372,[98,[30]]],22],[[[361,[-1]],[401,[30,348]],372],22,396],[[396,[401,[30,348]],402,372,[98,[30]]],22],[[[361,[-1]],[401,[30,348]],402,372],22,396],[[[394,[-1]],[376,[30,348]],[397,[30,348]],[398,[30]],[398,[30]]],22,396],[[400,[397,[30,348]],[398,[30]],364,[376,[30,348]]],22],[[[394,[-1]],[397,[30,348]],[398,[30]],364,[376,[30,348]]],22,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[396,[376,[30,348]],[98,[30]]],358],[[[403,[-1]],[376,[30,348]],[98,[30]]],358,396],[[[404,[-1,-2]],[376,[30,348]],[98,[30]]],358,396,[[395,[30]]]],[[[361,[-1]],[376,[30,348]]],358,396],[[[361,[-1]],[376,[30,348]],[98,[30]]],358,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[[406,[],[[405,[-1]]]]],-1,[]],[[[403,[-1]]],[],[406,396]],[[[403,[-1]]],[],406],[[[404,[-1,-2]]],[],406,[]],[[[394,[-1]]],[],[396,406]],[[[394,[-1]]],[],[406,396]],[[[361,[-1]]],[],[396,406]],[[[361,[-2]]],-1,[],[[406,[],[[405,[-1]]]],396]],[402,402],[[[361,[-1]]],[[361,[-1]]],[48,396]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[400,22],[396,22],[[[394,[-1]]],22,396],[[[394,[-1]]],22,396],[[[361,[-1]]],22,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[396,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]],[376,[30,348]],[376,[30,348]]],22],[[[403,[-1]],[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396],[[[404,[-1,-2]],[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396,[[395,[30]]]],[[[394,[-1]],[376,[30,348]],[376,[30,348]],[376,[30,348]]],358,396],[[[394,[-1]],[376,[30,348]],[376,[30,348]],[376,[30,348]]],22,396],[[[361,[-1]],[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396],[[[361,[-1]],[376,[30,348]],[376,[30,348]],[376,[30,348]]],358,396],[[[394,[-1]]],[[376,[30,348]]],396],[[],402],[[],[[361,[-1]]],[396,55]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[[396,5],22],[[[403,[-1]],5],22,396],[[[404,[-1,-2]],5],22,396,[[395,[30]]]],[[[361,[-1]],5],22,396],[[[361,[-1]],5],22,396],[[402,402],5],[[[361,[-1]],[361,[-1]]],5,[67,396]],[[396,[365,[[22,[[376,[30,348]],[98,[30]]]],[376,[30,348]]]]],22],[[[361,[360]],[98,[355]]],22],[[396,30],[[403,[396]]]],[[[394,[-1]],30],[[394,[[403,[-1]]]]],396],[[[361,[-1]],30],[[361,[[403,[-1]]]]],396],[[402,72],[[74,[22,73]]]],[[402,72],[[74,[22,73]]]],[[[361,[-1]],72],[[74,[22,73]]],[78,396]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[361,[-1]],-2],22,[92,396],91],[[400,30],22],[[[394,[-1]],30],22,396],[[],56],[[],56],[[],56],[[],56],[[],56],[[[361,[-1]]],-1,396],[[[361,[-1]]],-1,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[361,[-1]]],-1,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[396,[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]]],22],[[[403,[-1]],[376,[30,348]],[98,[30]]],358,396],[[[404,[-1,-2]],[376,[30,348]],[98,[30]]],358,396,[[395,[30]]]],[[[394,[-1]],[376,[30,348]]],22,396],[[[394,[-1]],[376,[30,348]]],358,396],[[[361,[-1]],[376,[30,348]],[98,[30]]],358,396],[[[361,[-1]],[376,[30,348]]],358,396],[[400,[376,[30,348]]],22],[[[394,[-1]],[376,[30,348]]],358,396],[[[394,[-1]],[376,[30,348]]],22,396],[[-1,30],[[403,[-1]]],396],[[-1,-2],[[404,[-1,-2]]],[],[]],[-1,[[394,[-1]]],396],[30,402],[[],[[361,[-1]]],[55,396]],[396,56],[[[403,[-1]]],56,396],[[[404,[-1,-2]]],56,396,[[395,[30]]]],[[[361,[-1]]],56,396],[[402,402],[[63,[109]]]],[[396,[365,[[376,[30,348]],[376,[30,348]]]],[98,[30]]],22],[[[361,[-1]],[365,[[376,[30,348]],[376,[30,348]]]]],22,396],[[396,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]],[376,[30,348]]],22],[[[403,[-1]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396],[[[404,[-1,-2]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396,[[395,[30]]]],[[[394,[-1]],[376,[30,348]],[376,[30,348]]],358,396],[[[394,[-1]],[376,[30,348]],[376,[30,348]]],22,396],[[[361,[-1]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396],[[[361,[-1]],[376,[30,348]],[376,[30,348]]],358,396],[[400,[397,[30,348]],[398,[30]],364,[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]],[398,[30]],364,[397,[30,348]]],22,396],[[400,[397,[30,348]],[397,[30,348]],[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]],[397,[30,348]],[397,[30,348]]],22,396],[[400,30],22],[[[394,[-1]],30],22,396],[[400,[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]]],22,396],[[400,[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]]],22,396],[[400,[397,[30,348]],[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]],[397,[30,348]]],22,396],[[400,30],22],[[[394,[-1]],30],22,396],[[396,56,56],22],[[400,56,56],22],[[[403,[-1]],56,56],22,396],[[[404,[-1,-2]],56,56],22,396,[[395,[30]]]],[[[394,[-1]],56,56],22,396],[[[394,[-1]],56,56],22,396],[[[361,[-1]],56,56],22,396],[[[361,[-1]],56,56],22,396],[[[403,[-1]],30],22,396],[[[404,[-1,-2]],-2],22,[],[]],[[[394,[[404,[-1,-2]]]],-2],22,396,[[395,[30]]]],[[400,[376,[30,348]],[376,[30,348]]],22],[[[394,[-1]],[376,[30,348]],[376,[30,348]]],22,396],[[400,[376,[30,348]]],22],[[[394,[-1]],[376,[30,348]]],22,396],[[400,[397,[30,348]],[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]],[397,[30,348]]],22,396],[[400,[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]]],22,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],0,0,[[396,-1],[[404,[396,-1]]],[[395,[30]]]],[[[394,[-1]],-2],[[394,[[404,[-1,-2]]]]],396,[[395,[30]]]],[[[361,[-1]],-2],[[361,[[404,[-1,-2]]]]],396,[[395,[30]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[400,30],22],[[[394,[-1]],30],22,396],[[56,56],[[361,[-1]]],[55,396]],[396,[[394,[396]]]],[[[361,[-1]]],[[394,[-1]]],396],[-1,[[361,[-1]]],396],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[359,358],374],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[359,353],[[[391,[-1,-2]]],[[391,[-1,-2]]],48,48],[359,359],[[[375,[-1,-2]]],[[375,[-1,-2]]],48,48],[383,383],[[[407,[-1,-2]]],[[407,[-1,-2]]],48,48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[359,373,373,358],374],[[],359],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[[359,5],[[63,[374]]]],[[[391,[-1,-2]]],[[375,[-1,-2]]],[],[]],[[[391,[-1,-2]],72],[[74,[22,73]]],78,78],[[359,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[391,[-1,-2]],373],[[376,[30,348]]],380,380],[[[391,[-1,-2]],358],[[376,[30,348]]],380,380],[[[391,[-1,-2]],358],-1,[],[]],[[[391,[-1,-2]],373],-2,[],[]],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[391,[-1,-2]]],383,[],[]],[[359,358],374],[[],359],[[[375,[-1,-2]]],[[63,[[365,[-1,-2]]]]],[],[]],[383,[[63,[[365,[358,373]]]]]],[[[407,[-1,-2]]],[[63,[[365,[[376,[30,348]],[376,[30,348]]]]]]],380,380],[[[375,[-1,-2]]],[[407,[-1,-2]]],380,380],[[359,373,358],374],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[56,359],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[408,[-1]]],-1,409],0,[[[410,[-1]]],[[399,[-1]]],409],[[[410,[-1]]],[[399,[-1]]],409],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[398,[-1]],[398,[-1]]],[[398,[-1]]],[[20,[],[[19,[]]]]]],[[[398,[-1]],[398,[-1]]],[[398,[-1]]],[104,[20,[],[[19,[]]]]]],[[[398,[-1]],[398,[-1]]],22,411],[[[413,[],[[412,[-1]]]],-1],[[413,[],[[412,[-1]]]]],409],[[[414,[-1]],-1],[[414,[-1]]],409],[[[414,[-1]],-1],[[414,[-1]]],409],[[[415,[-1]],-1],[[415,[-1]]],409],[[[415,[-1]],-1],[[415,[-1]]],409],[[[399,[-1]],-1],[[399,[-1]]],409],[[[399,[-1]],-1],[[399,[-1]]],409],[[[416,[-1]],-1],[[416,[-1]]],409],[[[416,[-1]],-1],[[416,[-1]]],409],0,[[[398,[-1]],[398,[-1]]],[[398,[-1]]],[[417,[],[[19,[]]]],[114,[],[[19,[]]]],[20,[],[[19,[]]]],[103,[],[[19,[]]]],418,419,104]],[[],-1,420],[[[398,[-1]],[398,[-1]],-1],5,[]],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[408,[-1]]],-1,409],0,[[[410,[-1]]],[[399,[-1]]],409],[[[415,[-1]]],[[399,[-1]]],409],[[[416,[-1]]],[[399,[-1]]],409],[[[410,[-1]]],[[399,[-1]]],409],[[[413,[],[[412,[-1]]]],-1],[[413,[],[[412,[-1]]]]],409],[[[414,[-1]],-1],[[414,[-1]]],409],[[[414,[-1]],-1],[[414,[-1]]],409],[[[415,[-1]],-1],[[415,[-1]]],409],[[[415,[-1]],-1],[[415,[-1]]],409],[[[399,[-1]],-1],[[399,[-1]]],409],[[[399,[-1]],-1],[[399,[-1]]],409],[[[416,[-1]],-1],[[416,[-1]]],409],[[[416,[-1]],-1],[[416,[-1]]],409],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[414,[-1]]],[[401,[-1,348]]],409],[[[415,[-1]]],[[401,[-1,348]]],409],[[[399,[-1]]],[[401,[-1,348]]],409],[[[416,[-1]]],[[401,[-1,348]]],409],[[[410,[-1]]],[[401,[-1,348]]],409],[[[414,[-1]]],[[22,[-1,-1]]],409],[[[415,[-1]]],[[22,[-1,-1]]],409],[[[416,[-1]]],[[22,[-1,-1]]],409],[[[410,[-1]]],[[22,[-1,-1]]],409],[[[414,[-1]]],[[22,[-1,-1]]],409],[[[415,[-1]]],[[22,[-1,-1]]],409],[[[416,[-1]]],[[22,[-1,-1]]],409],[[[410,[-1]]],[[22,[-1,-1]]],409],[[[416,[-1]]],[[410,[-1]]],409],[[[408,[-1]]],-1,409],0,[[[410,[-1]]],[[399,[-1]]],409],[[[398,[-1]]],[[398,[-2]]],[421,104],421],[[[410,[-1]]],[[399,[-1]]],409],0,[[[376,[-1,348]],-1],[[414,[-1]]],409],[[[399,[-1]],[401,[-1,348]]],[[63,[[399,[-1]]]]],409],[[[399,[-1]],[161,[-1]]],[[63,[[399,[-1]]]]],409],[[[399,[-1]],[161,[-1]]],[[63,[[399,[-1]]]]],409],[[[414,[-1]]],[[414,[-1]]],48],[[[422,[-1]]],[[422,[-1]]],48],[[[415,[-1]]],[[415,[-1]]],48],[[[399,[-1]]],[[399,[-1]]],48],[[[423,[-1]]],[[423,[-1]]],48],[[[408,[-1]]],[[408,[-1]]],48],[[[416,[-1]]],[[416,[-1]]],48],[[[410,[-1]]],[[410,[-1]]],48],[[[398,[-1]]],[[398,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[399,[-1]],[376,[-1,348]]],[[376,[-1,348]]],409],[[[416,[-1]],[376,[-1,348]]],-1,409],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[410,[-1]],[376,[-1,348]]],5,409],[[[399,[-1]],[399,[-1]]],5,409],0,0,0,0,[[[415,[-1]],[415,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[415,[-1]],[415,[-1]]],[[424,[[22,[-1,-1]]]]],409],[[],[[398,[-1]]],55],[-1,[[398,[-1]]],425],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[413,[],[[412,[-1]]]],-1],[[397,[-1,348]]],409],[[[414,[-1]],-1],[[397,[-1,348]]],409],[[[415,[-1]],-1],[[397,[-1,348]]],409],[[[415,[-1]],-1],[[397,[-1,348]]],409],[[[399,[-1]],-1],[[397,[-1,348]]],409],[[[416,[-1]],-1],[[397,[-1,348]]],409],[[[416,[-1]],-1],[[397,[-1,348]]],409],[[[399,[-1]],[376,[-1,348]]],-1,409],[[[423,[-1]],[376,[-1,348]]],-1,409],[[[408,[-1]],[376,[-1,348]]],-1,409],[[[416,[-1]],[376,[-1,348]]],-1,409],[[[398,[-1]],[398,[-1]]],-1,[[426,[],[[19,[]]]]]],[[[398,[-1]],-1],[[398,[-1]]],[[426,[],[[19,[]]]]]],[[[398,[-1]],-1],22,427],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[415,[-1]],-1,[376,[-1,348]]],[[415,[-1]]],409],[[[416,[-1]],-1,[376,[-1,348]]],[[416,[-1]]],409],[[[415,[-1]],-1,[376,[-1,348]],-1],[[415,[-1]]],409],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[414,[-1]]],[[398,[-1]]],409],[409,409],[[[414,[-1]],[414,[-1]]],5,67],[[[422,[-1]],[422,[-1]]],5,67],[[[415,[-1]],[415,[-1]]],5,67],[[[399,[-1]],[399,[-1]]],5,67],[[[408,[-1]],[408,[-1]]],5,67],[[[416,[-1]],[416,[-1]]],5,67],[[[410,[-1]],[410,[-1]]],5,67],[[[398,[-1]],[398,[-1]]],5,67],[[[423,[-1]]],[[408,[-1]]],409],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[[414,[-1]]],[[401,[-1,348]]],409],[[[415,[-1]]],[[401,[-1,348]]],409],[[[416,[-1]]],[[401,[-1,348]]],409],[[[414,[-1]]],[[22,[-1,-1]]],409],[[[415,[-1]]],[[22,[-1,-1]]],409],[[[416,[-1]]],[[22,[-1,-1]]],409],[[[414,[-1]]],[[22,[-1,-1]]],409],[[[415,[-1]]],[[22,[-1,-1]]],409],[[[416,[-1]]],[[22,[-1,-1]]],409],[[[415,[-1]]],[[22,[[408,[-1]],[408,[-1]]]]],409],[[[416,[-1]]],[[22,[[408,[-1]],[408,[-1]]]]],409],0,[[[414,[-1]],-1],[[428,[-1]]],409],[[[415,[-1]],-1],[[429,[-1]]],409],[[[416,[-1]],-1],[[430,[-1]]],409],[[[416,[-1]],-1],[[431,[-1]]],409],[[[416,[-1]],-1],-1,409],[[[413,[],[[412,[-1]]]]],[[413,[],[[412,[-1]]]]],409],[[[414,[-1]]],[[414,[-1]]],409],[[[414,[-1]]],[[414,[-1]]],409],[[[415,[-1]]],[[415,[-1]]],409],[[[415,[-1]]],[[415,[-1]]],409],[[[399,[-1]]],[[399,[-1]]],409],[[[399,[-1]]],[[399,[-1]]],409],[[[416,[-1]]],[[416,[-1]]],409],[[[416,[-1]]],[[416,[-1]]],409],[[[414,[-1]],72],[[74,[22,73]]],78],[[[422,[-1]],72],[[74,[22,73]]],78],[[[415,[-1]],72],[[74,[22,73]]],78],[[[399,[-1]],72],[[74,[22,73]]],78],[[[423,[-1]],72],[[74,[22,73]]],78],[[[408,[-1]],72],[[74,[22,73]]],78],[[[416,[-1]],72],[[74,[22,73]]],78],[[[410,[-1]],72],[[74,[22,73]]],78],[[[398,[-1]],72],[[74,[22,73]]],78],[[[414,[-1]],-2],22,409,[[177,[[415,[-1]]]]]],[[[422,[-1]],-2],22,409,[[177,[[415,[-1]]]]]],[[[414,[-1]],-1,-2],22,409,[[177,[[399,[-1]]]]]],[[[422,[-1]],-1,-2],22,409,[[177,[[399,[-1]]]]]],[[[415,[-1]],-1,-2],22,409,[[177,[[399,[-1]]]]]],[[[416,[-1]],-1,-2],22,409,[[177,[[399,[-1]]]]]],[[[413,[],[[412,[-1]]]],-1,177],22,409],[[[414,[-1]],177],22,409],[[[414,[-1]],-1,-2],22,409,[[177,[[399,[-1]],[161,[-1]]]]]],[[[422,[-1]],-1,-2],22,409,[[177,[[399,[-1]],[161,[-1]]]]]],[[[415,[-1]],-1,-2],22,409,[[177,[[399,[-1]],[161,[-1]]]]]],[[[415,[-1]],177],22,409],[[[399,[-1]],177],22,409],[[[416,[-1]],-1,-2],22,409,[[177,[[399,[-1]],[161,[-1]]]]]],[[[416,[-1]],177],22,409],[[[415,[-1]],-2],22,409,[[177,[-1]]]],[[[414,[-1]],-2],22,409,[[177,[-1]]]],[[[415,[-1]],-2],22,409,[[177,[-1]]]],[[[414,[-1]],-2],22,409,[[177,[-1]]]],[[[415,[-1]],-2],22,409,[[177,[-1]]]],[[[415,[-1]],-2],22,409,[[177,[[415,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[416,[-1]]]]]],[[[415,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[[414,[-1]],-2],22,409,[[177,[[416,[-1]]]]]],[[[422,[-1]],-2],22,409,[[177,[[416,[-1]]]]]],[[[415,[-1]],-1,-2],22,409,[[177,[[416,[-1]]]]]],[[[414,[-1]],-2],22,409,[[177,[[416,[-1]],[161,[-1]]]]]],[[[422,[-1]],-2],22,409,[[177,[[416,[-1]],[161,[-1]]]]]],[[[415,[-1]],-1,-2],22,409,[[177,[[416,[-1]],[161,[-1]]]]]],[[[415,[-1]],-2],22,409,[[177,[[415,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[416,[-1]]]]]],[[[415,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[[415,[-1]],-2],22,409,[[177,[[415,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[416,[-1]]]]]],[[[415,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[],[[398,[-1]]],[419,[20,[],[[19,[]]]]]],[[],[[398,[-1]]],[419,[20,[],[[19,[]]]]]],[[],[[398,[-1]]],[419,[20,[],[[19,[]]]]]],[[[413,[],[[412,[-1]]]]],[[376,[-1,348]]],409],[[[414,[-1]]],[[376,[-1,348]]],409],[[[414,[-1]]],[[376,[-1,348]]],409],[-1,-1,[]],[[[422,[-1]]],[[414,[-1]]],409],[-1,-1,[]],[[[415,[-1]]],[[376,[-1,348]]],409],[-1,-1,[]],[[[415,[-1]]],[[376,[-1,348]]],409],[[[399,[-1]]],[[376,[-1,348]]],409],[-1,-1,[]],[[[399,[-1]]],[[376,[-1,348]]],409],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[416,[-1]]],[[376,[-1,348]]],409],[[[416,[-1]]],[[376,[-1,348]]],409],[-1,-1,[]],[-1,-1,[]],0,0,0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[422,[-1]]],[[414,[-1]]],409],[[[398,[-1]]],-1,[]],[[[414,[-1]],-1],[[398,[-1]]],409],[[[398,[-1]],-2],22,92,91],0,[[[399,[-1]],-1],[[63,[[376,[-1,348]]]]],409],[[[399,[-1]],-1],[[63,[-1]]],409],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[[399,[-1]],[399,[-1]]],[[63,[[376,[-1,348]]]]],409],[[[423,[-1]],[423,[-1]]],[[63,[[376,[-1,348]]]]],409],[[[399,[-1]],[399,[-1]]],[[63,[[22,[-1,-1]]]]],409],[[[399,[-1]],[399,[-1]]],5,409],[[[410,[-1]],[410,[-1]]],5,409],[[[423,[-1]],[401,[-1,348]]],5,409],[[[399,[-1]],[423,[-1]]],5,409],[[[410,[-1]],[399,[-1]]],5,409],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[408,[-1]]],[[408,[-1]]],409],[[[416,[-1]],-1],5,409],[[[398,[-1]]],5,60],[[[408,[-1]]],5,409],[[[415,[-1]],-1],5,409],[[[416,[-1]],-1],5,409],[[[415,[-1]]],5,409],[[[416,[-1]]],5,409],[[[415,[-1]],-1],5,409],[[[422,[-1]]],5,409],[[[408,[-1]]],5,409],[[[415,[-1]]],5,409],[[[416,[-1]]],5,409],[[[415,[-1]]],5,409],[[[416,[-1]]],5,409],0,[[[399,[-1]]],-1,409],[[[416,[-1]]],-1,409],[[[398,[-1]],[398,[-1]],-1],[[398,[-1]]],[[417,[],[[19,[]]]],[114,[],[[19,[]]]],[20,[],[[19,[]]]],[103,[],[[19,[]]]],418,419,104]],[[[399,[-1]],[423,[-1]]],[[63,[[376,[-1,348]]]]],409],[[[399,[-1]],[423,[-1]]],[[63,[-1]]],409],[[[415,[-1]],[423,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[416,[-1]],[423,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[415,[-1]],[423,[-1]]],[[424,[-1]]],409],[[[416,[-1]],[423,[-1]]],[[424,[-1]]],409],[[[415,[-1]],[399,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[416,[-1]],[399,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[415,[-1]],[399,[-1]]],[[424,[[22,[-1,-1]]]]],409],[[[416,[-1]],[399,[-1]]],[[424,[[22,[-1,-1]]]]],409],[[[416,[-1]]],[[63,[-1]]],409],[[[416,[-1]]],[[63,[-1]]],409],0,0,0,0,0,0,0,[[[399,[-1]]],[[376,[-1,348]]],409],0,[[[398,[-1]],-1],[[398,[-1]]],[[103,[],[[19,[]]]]]],[[[398,[-1]],-1],22,432],[[[398,[-1]]],[[398,[-1]]],[[433,[],[[19,[]]]]]],[[-1,-1,-1],[[408,[-1]]],409],[[[408,[-1]]],[[397,[-1,348]]],409],[[[415,[-1]],-1],58,409],[[[408,[-1]],-1],[[408,[-1]]],409],[[[399,[-1]],[423,[-1]]],5,409],[[[399,[-1]],[399,[-1]]],5,409],[[[408,[-1]],[376,[-1,348]]],[[408,[-1]]],409],[[[398,[-1]],[398,[-1]]],[[63,[109]]],212],[[],[[398,[-1]]],[419,[20,[],[[19,[]]]]]],[[-1,-1],[[376,[-1,348]]],[]],0,[[[398,[-1]]],[[398,[-1]]],[[114,[],[[19,[]]]],[417,[],[[19,[]]]],[20,[],[[19,[]]]],434,419,212,104]],[[[408,[-1]],[376,[-1,348]]],[[376,[-1,348]]],409],0,[[[415,[-1]],[416,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[415,[-1]],[416,[-1]]],[[424,[[22,[-1,-1]]]]],409],[-1,[[398,[-1]]],[]],0,0,0,[[[413,[],[[412,[-1]]]],-1],[[376,[-1,348]]],409],[[[414,[-1]],-1],[[376,[-1,348]]],409],[[[414,[-1]],-1],[[376,[-1,348]]],409],[[[415,[-1]],-1],[[376,[-1,348]]],409],[[[415,[-1]],-1],[[376,[-1,348]]],409],[[[399,[-1]],-1],[[376,[-1,348]]],409],[[[399,[-1]],-1],[[376,[-1,348]]],409],[[[416,[-1]],-1],[[376,[-1,348]]],409],[[[416,[-1]],-1],[[376,[-1,348]]],409],[[[414,[-1]],-1],[[397,[-1,348]]],409],[[[399,[-1]],-1],22,409],[[[398,[-1]]],[[398,[-1]]],[[114,[],[[19,[]]]],[417,[],[[19,[]]]],[20,[],[[19,[]]]],434,419,212,104]],[[[423,[-1]],[376,[-1,348]]],-1,409],[[[408,[-1]],[376,[-1,348]]],-1,409],[[[398,[-1]]],[[22,[-1,-1]]],435],[[-1,-1],[[436,[-1,348]]],[]],[[[415,[-1]],-1],[[424,[-1]]],409],[[[399,[-1]],-1],-1,409],[[[415,[-1]],-1],[[424,[-1]]],409],[[[399,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[408,[-1]],-1],[[63,[-1]]],409],[[[399,[-1]],-1],-1,409],[[[408,[-1]],-1],[[63,[-1]]],409],[[[413,[],[[412,[-1]]]],-1],[[22,[[413,[],[[412,[-1]]]],[413,[],[[412,[-1]]]]]]],409],[[[414,[-1]],-1],[[22,[[414,[-1]],[414,[-1]]]]],409],[[[414,[-1]],-1],[[22,[[414,[-1]],[414,[-1]]]]],409],[[[415,[-1]],-1],[[22,[[415,[-1]],[415,[-1]]]]],409],[[[415,[-1]],-1],[[22,[[415,[-1]],[415,[-1]]]]],409],[[[399,[-1]],-1],[[22,[[399,[-1]],[399,[-1]]]]],409],[[[399,[-1]],-1],[[22,[[399,[-1]],[399,[-1]]]]],409],[[[416,[-1]],-1],[[22,[[416,[-1]],[416,[-1]]]]],409],[[[416,[-1]],-1],[[22,[[416,[-1]],[416,[-1]]]]],409],[[[399,[-1]],-1],[[22,[[399,[-1]],[399,[-1]]]]],409],[[[413,[],[[412,[-1]]]],[161,[-1]]],[[413,[],[[412,[-1]]]]],409],[[[414,[-1]],[161,[-1]]],[[414,[-1]]],409],[[[414,[-1]],[161,[-1]]],[[414,[-1]]],409],[[[415,[-1]],[161,[-1]]],[[415,[-1]]],409],[[[415,[-1]],[161,[-1]]],[[415,[-1]]],409],[[[399,[-1]],[161,[-1]]],[[399,[-1]]],409],[[[399,[-1]],[161,[-1]]],[[399,[-1]]],409],[[[416,[-1]],[161,[-1]]],[[416,[-1]]],409],[[[416,[-1]],[161,[-1]]],[[416,[-1]]],409],[[[399,[-1]],[376,[-1,348]]],-1,409],[[[423,[-1]],[376,[-1,348]]],-1,409],[[[416,[-1]],[376,[-1,348]]],-1,409],[[[399,[-1]]],-1,409],0,[[[398,[-1]],[398,[-1]]],[],[[114,[],[[19,[]]]]]],[[[398,[-1]],[398,[-1]]],22,437],[-2,[[398,[-1]]],[20,104,434],[[126,[],[[32,[[398,[-1]]]]]]]],[-2,[[398,[-1]]],[20,434],[[126,[],[[32,[[398,[-1]]]]]]]],0,0,[[[408,[-1]]],[[397,[-1,348]]],409],[[[413,[],[[412,[-1]]]]],[[376,[-1,348]]],409],[[[414,[-1]]],[[376,[-1,348]]],409],[[[414,[-1]]],[[376,[-1,348]]],409],[[[415,[-1]]],[[376,[-1,348]]],409],[[[415,[-1]]],[[376,[-1,348]]],409],[[[399,[-1]]],[[376,[-1,348]]],409],[[[399,[-1]]],[[376,[-1,348]]],409],[[[416,[-1]]],[[376,[-1,348]]],409],[[[416,[-1]]],[[376,[-1,348]]],409],0,0,0,0,[[[422,[-1]]],[[414,[-1]]],409],[[[416,[-1]]],[[415,[-1]]],409],[[[398,[-1]]],-1,425],[[[415,[-1]]],[[415,[30]]],409],[[[399,[-1]]],[[399,[30]]],409],[[[423,[-1]]],[[423,[30]]],409],[[[416,[-1]]],[[416,[30]]],409],[[[398,[-1]]],[[398,[30]]],[421,104]],[[[415,[-1]]],[[415,[87]]],409],[[[399,[-1]]],[[399,[87]]],409],[[[423,[-1]]],[[423,[87]]],409],[[[416,[-1]]],[[416,[87]]],409],[[[398,[-1]]],[[398,[87]]],[421,104]],[[[399,[-1]]],[[423,[-1]]],409],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[415,[-1]]],[[416,[-1]]],409],[[[415,[-1]]],-1,409],[[[414,[-1]]],[[422,[-1]]],409],[[[399,[-1]]],[[397,[-1,348]]],409],0,[[[410,[-1]],-2],[[410,[-1]]],409,[[395,[-1]]]],[[[415,[-1]],-2],[[415,[-1]]],409,[[395,[-1]]]],[[[399,[-1]],-2],[[399,[-1]]],409,[[395,[-1]]]],[[[416,[-1]],-2],[[416,[-1]]],409,[[395,[-1]]]],[[[399,[-1]],[397,[-1,348]]],[[399,[-1]]],409],[[[398,[-1]]],[[63,[[398,[-2]]]]],[421,104],421],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[[],[[398,[-1]]],[419,[20,[],[[19,[]]]]]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,[30,409],[[-1,-1],[[397,[-1,348]]],[]],0,[[[399,[-1]],-1],[[63,[[376,[-1,348]]]]],409],[[[399,[-1]],-1],[[63,[-1]]],409],0,[[[413,[],[[412,[-1]]]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],0,0,0,[[[415,[-1]]],-1,409],[[[416,[-1]]],-1,409],[[[415,[-1]]],-1,409],[[[416,[-1]]],-1,409],0,0,[[[413,[],[[412,[-1]]]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],0,0,0,[[[415,[-1]]],-1,409],[[[416,[-1]]],-1,409],[[[415,[-1]]],-1,409],[[[416,[-1]]],-1,409],[[],[[398,[-1]]],434],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],0,[-1,-1,[]],0,[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[428,[-1]]],[[63,[[376,[-1,348]]]]],409],0,0,0,0,0,0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[424,[-1]]],[[98,[-1]]],[]],[[[424,[-1]]],[],[]],[[[424,[-1]]],[[98,[-1]]],[]],[438,120],[[[424,[-1]]],[],[]],[[[424,[-1]]],[[98,[-1]]],[]],[438,120],[[[424,[-1]]],[[98,[-1]]],[]],[438,120],[[[424,[-1]]],[[98,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[438,120],[-1,-2,[],[]],[-1,-2,[],[]],[[[424,[-1]]],[[98,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[438,120],[-1,-2,[],[]],[[[424,[-1]]],56,[]],[438,56],[[[424,[-1]]],22,[]],[438,22],[[[424,[-1]]],[[424,[-1]]],48],[[[439,[-1]]],[[439,[-1]]],48],[438,438],[[[440,[-1]]],[[440,[-1]]],48],[[[424,[-1]],[424,[-1]]],22,48],[[438,438],22],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[424,[-1]],[424,[-1]]],109,211],[[438,438],109],[[[440,[-1]],[440,[-1]]],109,211],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[424,[-1]]],[]],[[],438],[56,-1,[]],[[[424,[-1]]],[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[438,120],[56,-1,[]],[[[424,[-1]]],[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[438,120],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[424,[-1]],-2],[[441,[-1]]],[],[[442,[56]]]],[[[424,[-1]]],22,[]],[56,22],[[[439,[-1]]],22,[]],[56,22],[[[441,[-1]]],22,[]],[56,22],[56,22],[56,22],[[[440,[-1]]],-1,[]],[[[424,[-1]],[98,[-1]]],5,67],[[[424,[-1]],[424,[-1]]],5,67],[[438,438],5],[[438,120],5],[[[440,[-1]],[440,[-1]]],5,67],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[[424,[-1]],-2],22,[],[[33,[],[[32,[-1]]]]]],[[[424,[83]]],[[74,[22,108]]]],[[[424,[-1]],72],[[74,[22,73]]],78],[[[439,[-1]],72],[[74,[22,73]]],78],[[438,72],[[74,[22,73]]]],[[438,72],[[74,[22,73]]]],[[[440,[-1]],72],[[74,[22,73]]],[]],[[[440,[-1]],72],[[74,[22,73]]],[]],[[[84,[-1]]],[[424,[-1]]],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[120,[[74,[438,[440,[120]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[84,[83]]],[[74,[438,443]]]],[-2,[[424,[-1]]],[],[[33,[],[[32,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[120,[[74,[438]]]],[[[424,[-1]],[424,[-1]]],5,212],[[438,120],5],[[438,438],5],[[[424,[-1]],[424,[-1]]],5,212],[[438,120],5],[[438,438],5],[[[424,[-1]],-2],22,92,91],[[438,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[[424,[-1]],56,-1],22,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[424,[-1]]],[[74,[[84,[-1]],[424,[-1]]]]],[]],[[[424,[-1]]],[[84,[-1]]],[]],[[[424,[-1]]],[[439,[-1]]],[]],[[[424,[-1]]],[],[]],[[[424,[-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[424,[-1]]],5,[]],[438,5],[[[424,[-1]]],5,[]],[438,5],[[[424,[-1]],[424,[-1]]],5,212],[[438,120],5],[[438,438],5],[[[424,[-1]]],56,[]],[438,56],[-1,56,[]],[-1,83,[]],[[[424,[-1]],[424,[-1]]],5,212],[[438,438],5],[[438,120],5],[[],[[424,[-1]]],[]],[[],438],[-1,[[440,[-1]]],[]],[[],[[424,[-1]]],[]],[[],438],[[[439,[-1]]],63,[]],[[[441,[-1]]],63,[]],[[[439,[-1]]],63,[]],[[[441,[-1]]],63,[]],[[[424,[-1]],[424,[-1]]],[[63,[109]]],212],[[438,120],[[63,[109]]]],[[438,438],[[63,[109]]]],[[[440,[-1]],[440,[-1]]],[[63,[109]]],212],[[[424,[-1]]],[[63,[-1]]],[]],[438,[[63,[444]]]],[[[424,[-1]],56],[[63,[-1]]],[]],[[[424,[-1]],-1],22,[]],[[438,444],22],[[438,120],22],[[[424,[-1]],-1],22,[]],[[[424,[-1]]],56,[]],[438,56],[[[424,[-1]],56],-1,[]],[[438,56],444],[[[424,[-1]],-2],22,[],[[177,[-1],[[19,[5]]]]]],[[[424,[-1]],56],22,[]],[[438,56],22],[[[440,[-1]]],440,[]],[[[439,[-1]]],[[22,[56,[63,[56]]]]],[]],[[[441,[-1]]],[[22,[56,[63,[56]]]]],[]],[-1,83,[]],[[[424,[-1]],56],[[63,[-1]]],[]],[[[424,[-1]],56],-1,[]],[[[424,[-1]]],[[424,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[[[424,[-1]],56],22,[]],[[438,56],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[[[424,[-1]],[98,[-1]]],[[74,[22,440]]],104],[-1,[[74,[-2]]],[],[]],[[[98,[-1]]],[[74,[[424,[-1]]]]],48],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[120,[[74,[438]]]],[445,[[74,[438]]]],[-1,[[74,[-2]]],[],[]],[[[424,[-1]],56,-1],[[74,[22,[440,[-1]]]]],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[[[424,[-1]],-1],[[74,[22,[440,[-1]]]]],[]],[[438,444],[[74,[22,[440,[444]]]]]],[[438,120],[[74,[22,[440,[120]]]]]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[424,[83]],[98,[83]]],[[74,[56,108]]]],[[-1,[98,[87]]],[[74,[22,108]]],[]],[[-1,[98,[385]]],[[74,[22,108]]],[]],[[-1,[98,[446]]],[[74,[22,108]]],[]],[[-1,30],[[74,[22,108]]],[]],[[-1,[98,[90]]],[[74,[22,108]]],[]],[[-1,87],[[74,[22,108]]],[]],[[-1,58],[[74,[22,108]]],[]],[[-1,[98,[88]]],[[74,[22,108]]],[]],[[-1,[98,[58]]],[[74,[22,108]]],[]],[[-1,90],[[74,[22,108]]],[]],[[-1,[98,[250]]],[[74,[22,108]]],[]],[[-1,[98,[447]]],[[74,[22,108]]],[]],[[-1,[98,[83]]],[[74,[22,108]]],[]],[[-1,83],[[74,[22,108]]],[]],[[-1,69],[[74,[22,108]]],[]],[[-1,88],[[74,[22,108]]],[]],[[-1,[98,[448]]],[[74,[22,108]]],[]],[[-1,[98,[69]]],[[74,[22,108]]],[]],[[-1,448],[[74,[22,108]]],[]],[[-1,250],[[74,[22,108]]],[]],[[-1,385],[[74,[22,108]]],[]],[[-1,[98,[30]]],[[74,[22,108]]],[]],[[-1,446],[[74,[22,108]]],[]],[[-1,447],[[74,[22,108]]],[]],[[-1,58],[[74,[22,108]]],[]],[[-1,[98,[90]]],[[74,[22,108]]],[]],[[-1,447],[[74,[22,108]]],[]],[[-1,385],[[74,[22,108]]],[]],[[-1,446],[[74,[22,108]]],[]],[[-1,[98,[69]]],[[74,[22,108]]],[]],[[-1,448],[[74,[22,108]]],[]],[[-1,88],[[74,[22,108]]],[]],[[-1,[98,[83]]],[[74,[22,108]]],[]],[[-1,69],[[74,[22,108]]],[]],[[-1,250],[[74,[22,108]]],[]],[[-1,30],[[74,[22,108]]],[]],[[-1,[98,[448]]],[[74,[22,108]]],[]],[[-1,[98,[87]]],[[74,[22,108]]],[]],[[-1,[98,[30]]],[[74,[22,108]]],[]],[[-1,[98,[447]]],[[74,[22,108]]],[]],[[-1,[98,[250]]],[[74,[22,108]]],[]],[[-1,[98,[58]]],[[74,[22,108]]],[]],[[-1,83],[[74,[22,108]]],[]],[[-1,90],[[74,[22,108]]],[]],[[-1,87],[[74,[22,108]]],[]],[[-1,[98,[88]]],[[74,[22,108]]],[]],[[-1,[98,[446]]],[[74,[22,108]]],[]],[[-1,[98,[385]]],[[74,[22,108]]],[]],[[438,444],[[74,[22,73]]]],[[438,120],[[74,[22,73]]]],[[],438],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[-1,-1,[]],0,[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[429,[-1]]],[[63,[[376,[-1,348]]]]],409],[[[429,[-1]]],[[22,[56,[63,[56]]]]],409],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[436,[-1,-2]]],[[436,[-1,-2]]],449,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],449,[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],449,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],449,[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[],20,[]],[[[452,[-1,-2]],[452,[-1,-2]]],[],[20,104],[]],[[[376,[-1,-2]],[436,[-1,-2]]],[],20,[]],[[[376,[-1,-2]],[397,[-1,-2]]],[],20,[]],[[[453,[-1,-2]],[450,[-1,-2]]],[],20,[]],[[[453,[-1,-2]],[451,[-1,-2]]],[],20,[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[],20,[],[]],[[[455,[-1,-2]],[455,[-1,-2]]],[[455,[-1,-2]]],[[20,[],[[19,[]]]]],[]],[[[436,[-1,-2]],[436,[-1,-2]]],[],20,[]],[[[436,[-1,-2]],[436,[-1,-2]]],[[436,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[450,[-1,-2]],[450,[-1,-2]]],[[450,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[450,[-1,-2]],[450,[-1,-2]]],[],20,[]],[[[456,[-1,-2,-3]],[456,[-1,-3,-4]]],[],20,[],[],[]],[[[457,[-1,-2,-3]],[457,[-1,-3,-4]]],[],20,[],[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[],[20,104],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[],20,[]],[[[451,[-1,-2]],[451,[-1,-2]]],[],[20,104],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[],20,[]],[[[452,[-1,-2]],[452,[-1,-2]]],22,411,[]],[[[376,[-1,-2]],[436,[-1,-2]]],22,411,[]],[[[376,[-1,-2]],[397,[-1,-2]]],22,[104,[20,[],[[19,[]]]]],[]],[[[453,[-1,-2]],[451,[-1,-2]]],22,[104,[20,[],[[19,[]]]]],[]],[[[453,[-1,-2]],[450,[-1,-2]]],22,411,[]],[[[455,[-1,-2]],[455,[-1,-2]]],22,411,[]],[[[436,[-1,-2]],[436,[-1,-2]]],22,411,[]],[[[450,[-1,-2]],[450,[-1,-2]]],22,411,[]],[[[456,[-1,-2,-3]],[456,[-1,-3,-3]]],22,411,[],[]],[[[457,[-1,-2,-3]],[457,[-1,-3,-3]]],22,411,[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],22,[104,[20,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],22,[104,[20,[],[[19,[]]]]],[]],[[[376,[-1,-2]],[436,[-1,-2]]],[[376,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[453,[-1,-2]],[450,[-1,-2]]],[[453,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[458,5],[459,5],[[458,458],458],[[459,459],459],0,[[[397,[-1,-2]]],[[398,[-1]]],[425,104],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[398,[-1]]],[[114,[],[[19,[]]]],425,104,[103,[],[[19,[]]]],[20,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[398,[-1]]],[425,435],[]],[458,5],[459,5],[[],-1,420],[[],[[376,[-1,-2]]],[],[]],[[],[[453,[-1,-2]]],[],[]],[[],-1,[]],[[],-1,420],[[],-1,420],[[],[[397,[-1,-2]]],[],[]],[[],[[451,[-1,-2]]],[],[]],[[[349,[-1,-2,-3]],[349,[-1,-2,-3]]],5,[],[],[]],[[[460,[-1,-2,-3]],[460,[-1,-2,-3]]],5,[],[],[]],[[[452,[-1,-2]],[452,[-1,-2]],-1],5,[],[]],[[[376,[-1,-2]],[376,[-1,-2]],[376,[-1,-2]]],5,[],[]],[[[453,[-1,-2]],[453,[-1,-2]],[453,[-1,-2]]],5,[],[]],[[[461,[-1,-2,-3]],[461,[-1,-2,-3]],-1],5,[],[],[]],[[[349,[-1,-2,-3]],[349,[-1,-2,-3]],-1],5,[],[],[]],[[[349,[-1,-2,-3]],[349,[-1,-2,-3]],-1],5,[],[],[]],[[[460,[-1,-2,-3]],[460,[-1,-2,-3]],-1],5,[],[],[]],[[[460,[-1,-2,-3]],[460,[-1,-2,-3]],-1],5,[],[],[]],[[[397,[-1,-2]],[397,[-1,-2]],[397,[-1,-2]]],5,[],[]],[[[451,[-1,-2]],[451,[-1,-2]],[451,[-1,-2]]],5,[],[]],0,0,[[[401,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],-1,[104,[103,[],[[19,[]]]]],[]],[[[436,[-1,-2]]],[],[103,104],[]],[[[451,[-1,-2]],[398,[-1]]],[[461,[-1,-2,-3]]],435,[],[]],[[[398,[-1]]],[[461,[-1,-2,-3]]],435,[],[]],[[[398,[-1]]],[[461,[-1,-2,-3]]],435,[],[]],[[[398,[-1]]],[[461,[-1,-2,-3]]],435,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-1,-1,-1,-1,-1],[[463,[-1,-2]]],104,[]],[[5,5],458],[[5,5,5],459],[[[401,[-1,-2]]],[[401,[-3,-2]]],[421,104],[],421],[[[463,[-1,-2]]],[[463,[-3,-2]]],[421,104],[],421],[[[452,[-1,-2]]],[[452,[-3,-2]]],[421,48],[],421],[[[376,[-1,-2]]],[[376,[-3,-2]]],[421,104],[],421],[[[453,[-1,-2]]],[[453,[-3,-2]]],[421,104],[],421],[[[462,[-1,-2]]],[[462,[-3,-2]]],[421,104],[],421],[[[454,[-1,-2,-3]]],[[454,[-4,-2,-3]]],421,[],[],421],[[[436,[-1,-2]]],[[436,[-3,-2]]],[421,104],[],421],[[[450,[-1,-2]]],[[450,[-3,-2]]],[421,104],[],421],[[[349,[-1,-2,-3]]],[[349,[-4,-2,-3]]],[421,104],[],[],421],[[[460,[-1,-2,-3]]],[[460,[-4,-2,-3]]],[421,104],[],[],421],[[[397,[-1,-2]]],[[397,[-3,-2]]],[421,104],[],421],[[[451,[-1,-2]]],[[451,[-3,-2]]],[421,104],[],421],[[[401,[-1,-2]]],[[401,[-1,-3]]],104,[],[]],[[[463,[-1,-2]]],[[463,[-1,-3]]],104,[],[]],[[[452,[-1,-2]]],[[452,[-1,-3]]],48,[],[]],[[[376,[-1,-2]]],[[376,[-1,-3]]],104,[],[]],[[[453,[-1,-2]]],[[453,[-1,-3]]],104,[],[]],[[[462,[-1,-2]]],[[462,[-1,-3]]],104,[],[]],[[[464,[-1,-2,-3]]],[[464,[-1,-4,-5]]],104,[],[],[],[]],[[[461,[-1,-2,-3]]],[[461,[-1,-4,-5]]],104,[],[],[],[]],[[[436,[-1,-2]]],[[436,[-1,-3]]],104,[],[]],[[[450,[-1,-2]]],[[450,[-1,-3]]],104,[],[]],[[[397,[-1,-2]]],[[397,[-1,-3]]],104,[],[]],[[[451,[-1,-2]]],[[451,[-1,-3]]],104,[],[]],[[[465,[-1,-2,-3]]],[[465,[-1,-4,-5]]],104,[],[],[],[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],466,[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],[466,104],[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],[466,104],[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],466,[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],[466,104],[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],466,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],466,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],[466,104],[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],[466,104],[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],466,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],[466,104],[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],466,[]],[[[401,[-1,-2]]],[[376,[-1,-2]]],[104,467,[20,[],[[19,[]]]],[426,[],[[19,[]]]]],[]],[[[463,[-1,-2]]],[[453,[-1,-2]]],[104,467,[20,[],[[19,[]]]],[426,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],[[376,[-1,-2]]],[104,467,[20,[],[[19,[]]]],[426,[],[[19,[]]]]],[]],[[[376,[-1,-2]],[376,[-1,-2]],[376,[-1,-2]]],[[376,[-1,-2]]],[104,212],[]],[[[453,[-1,-2]],[453,[-1,-2]],[453,[-1,-2]]],[[453,[-1,-2]]],[104,212],[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[[454,[-1,-2,-3]]],[104,212],[],[]],[[[436,[-1,-2]],[436,[-1,-2]],[436,[-1,-2]]],[[436,[-1,-2]]],[104,212],[]],[[[450,[-1,-2]],[450,[-1,-2]],[450,[-1,-2]]],[[450,[-1,-2]]],[104,212],[]],[[[397,[-1,-2]],[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[104,212],[]],[[[451,[-1,-2]],[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[104,212],[]],[[[397,[-1,-2]],-1,-1],[[397,[-1,-2]]],435,[]],[[[451,[-1,-2]],-1,-1],[[451,[-1,-2]]],435,[]],[[[401,[-1,-2]]],[[401,[-1,-2]]],48,[]],[[[463,[-1,-2]]],[[463,[-1,-2]]],48,[]],[[[468,[-1,-2]]],[[468,[-1,-2]]],48,[]],[[[452,[-1,-2]]],[[452,[-1,-2]]],48,[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],48,[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],48,[]],[[[462,[-1,-2]]],[[462,[-1,-2]]],48,[]],[[[464,[-1,-2,-3]]],[[464,[-1,-2,-3]]],48,[],[]],[[[461,[-1,-2,-3]]],[[461,[-1,-2,-3]]],48,[],[]],[[[454,[-1,-2,-3]]],[[454,[-1,-2,-3]]],48,[],[]],[[[455,[-1,-2]]],[[455,[-1,-2]]],48,[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],48,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],48,[]],[[[349,[-1,-2,-3]]],[[349,[-1,-2,-3]]],48,[],[]],[[[460,[-1,-2,-3]]],[[460,[-1,-2,-3]]],48,[],[]],[[[456,[-1,-2,-3]]],[[456,[-1,-2,-3]]],48,[],[]],[[[457,[-1,-2,-3]]],[[457,[-1,-2,-3]]],48,[],[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],48,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],48,[]],[[[465,[-1,-2,-3]]],[[465,[-1,-2,-3]]],48,[],[]],[458,458],[459,459],[348,348],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[452,[-1,-2]],[452,[-1,-2]]],109,211,[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],109,211,[],[]],[[348,348],109],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[[426,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[[426,[],[[19,[]]]],104],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[[103,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[[103,[],[[19,[]]]],104],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[401,[-1,-2]],[376,[-1,-2]]],5,212,[]],[[[463,[-1,-2]],[453,[-1,-2]]],5,212,[]],[[[462,[-1,-2]],[376,[-1,-2]]],5,[104,212,[20,[],[[19,[]]]]],[]],[[[436,[-1,-2]],[436,[-1,-2]]],5,212,[]],[[[450,[-1,-2]],[450,[-1,-2]]],5,212,[]],[[[401,[-1,-2]],[401,[-1,-2]]],5,212,[]],[[[463,[-1,-2]],[463,[-1,-2]]],5,212,[]],[[[462,[-1,-2]],[462,[-1,-2]]],5,[104,469,212,[20,[],[[19,[]]]]],[]],[425,425],[[[397,[-1,-2]],[397,[-1,-2]]],-1,[[114,[],[[19,[]]]],[103,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[465,[-1,-2,-3]]],[[22,[[451,[-1,-2]],[461,[-1,-2,-3]]]]],[],[],[]],0,[[],[[401,[-1,-2]]],55,[]],[[],[[463,[-1,-2]]],55,[]],[[],[[452,[-1,-2]]],55,[]],[[],[[376,[-1,-2]]],55,[]],[[],[[453,[-1,-2]]],55,[]],[[],[[462,[-1,-2]]],55,[]],[[],[[454,[-1,-2,-3]]],55,[],[]],[[],[[455,[-1,-2]]],55,[]],[[],[[436,[-1,-2]]],55,[]],[[],[[450,[-1,-2]]],55,[]],[[],[[349,[-1,-2,-3]]],[469,467],[],[]],[[],[[460,[-1,-2,-3]]],[469,467],[],[]],[[],[[456,[-1,-2,-3]]],469,[],[]],[[],[[457,[-1,-2,-3]]],469,[],[]],[[],[[397,[-1,-2]]],55,[]],[[],[[451,[-1,-2]]],55,[]],[[],348],[425,425],[[[463,[-1,-2]]],-1,[104,[114,[],[[19,[]]]]],[]],0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[349,[-1,-2,-3]]],-1,[104,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],67,469,467],[],[]],[[[460,[-1,-2,-3]]],-1,[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[376,[-1,-2]],[376,[-1,-2]]],-1,[[435,[],[[19,[]]]],114],[]],[[[453,[-1,-2]],[453,[-1,-2]]],-1,[[435,[],[[19,[]]]],114],[]],[[[401,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[401,[-1,-2]],-1],[],[104,426],[]],[[[463,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[463,[-1,-2]],-1],[],[104,426],[]],[[[452,[-1,-2]],[454,[-1,-3,-2]]],[],426,[],[]],[[[452,[-1,-2]],-1],[],426,[]],[[[452,[-1,-2]],[452,[-1,-3]]],[],426,[],[]],[[[376,[-1,-2]],-1],[],[104,426],[]],[[[376,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[453,[-1,-2]],-1],[],[104,426],[]],[[[453,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[462,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[462,[-1,-2]],-1],[],[104,426],[]],[[[455,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[455,[-1,-2]],-1],[],[104,426],[]],[[[436,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[436,[-1,-2]],-1],[],[104,426],[]],[[[450,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[450,[-1,-2]],-1],[],[104,426],[]],[[[397,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[397,[-1,-2]],-1],[],[104,426],[]],[[[451,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[451,[-1,-2]],-1],[],[104,426],[]],[[[401,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[401,[-1,-2]],-1],22,[104,427],[]],[[[463,[-1,-2]],-1],22,[104,427],[]],[[[463,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[452,[-1,-2]],-1],22,[104,[426,[],[[19,[]]]]],[]],[[[376,[-1,-2]],-1],22,[104,[426,[],[[19,[]]]]],[]],[[[376,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[453,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[453,[-1,-2]],-1],22,[104,427],[]],[[[462,[-1,-2]],-1],22,[104,427],[]],[[[462,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[455,[-1,-2]],-1],22,[104,427],[]],[[[455,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[436,[-1,-2]],-1],22,[104,427],[]],[[[436,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[450,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[450,[-1,-2]],-1],22,[104,427],[]],[[[397,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[397,[-1,-2]],-1],22,[104,[426,[],[[19,[]]]]],[]],[[[451,[-1,-2]],-1],22,[104,[426,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[376,[-1,-2]],[436,[-1,-2]]],[[376,[-1,-2]]],470,[]],[[[453,[-1,-2]],[450,[-1,-2]]],[[453,[-1,-2]]],470,[]],[[[397,[-1,-2]],[397,[-1,-2]]],-1,[[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],-1,[[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[401,[-1,-2]],[401,[-1,-2]]],5,67,[]],[[[463,[-1,-2]],[463,[-1,-2]]],5,67,[]],[[[468,[-1,-2]],[468,[-1,-2]]],5,67,[]],[[[452,[-1,-2]],[452,[-1,-2]]],5,67,[]],[[[376,[-1,-2]],[376,[-1,-2]]],5,67,[]],[[[453,[-1,-2]],[453,[-1,-2]]],5,67,[]],[[[462,[-1,-2]],[462,[-1,-2]]],5,67,[]],[[[464,[-1,-2,-3]],[464,[-1,-2,-3]]],5,67,[],[]],[[[461,[-1,-2,-3]],[461,[-1,-2,-3]]],5,67,[],[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],5,67,[],[]],[[[455,[-1,-2]],[455,[-1,-2]]],5,67,[]],[[[436,[-1,-2]],[436,[-1,-2]]],5,67,[]],[[[450,[-1,-2]],[450,[-1,-2]]],5,67,[]],[[[349,[-1,-2,-3]],[349,[-1,-2,-3]]],5,67,[],[]],[[[460,[-1,-2,-3]],[460,[-1,-2,-3]]],5,67,[],[]],[[[456,[-1,-2,-3]],[456,[-1,-2,-3]]],5,67,[],[]],[[[457,[-1,-2,-3]],[457,[-1,-2,-3]]],5,67,[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],5,67,[]],[[[451,[-1,-2]],[451,[-1,-2]]],5,67,[]],[[[465,[-1,-2,-3]],[465,[-1,-2,-3]]],5,67,67,67],[[458,458],5],[[459,459],5],[[348,348],5],[[[436,[-1,-2]],[436,[-1,-2]]],458,67,[]],[[[450,[-1,-2]],[450,[-1,-2]]],459,67,[]],[[[397,[-1,-2]],[397,[-1,-2]]],458,67,[]],[[[451,[-1,-2]],[451,[-1,-2]]],459,67,[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[[398,[-1]],[398,[-1]],[398,[-1]]],[[461,[-1,-2,-3]]],435,[],[]],[[[376,[-1,-2]],-1],[[453,[-1,-2]]],104,[]],[[[397,[-1,-2]],-1],[[451,[-1,-2]]],104,[]],[[425,425],425],[[[376,[-1,-2]]],[[376,[-1,-2]]],[471,104],[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],471,[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],[471,104],[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],471,[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],471,[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],[471,104],[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],[471,104],[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],471,[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],471,[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],[471,104],[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],471,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],[471,104],[]],[[[401,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[463,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[468,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[452,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[376,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[453,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[462,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[461,[-1,-2,-3]],72],[[74,[22,73]]],78,[],[]],[[[454,[-1,-2,-3]],72],[[74,[22,73]]],78,[],[]],[[[455,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[436,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[450,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[349,[-1,-2,-3]],72],[[74,[22,73]]],[104,78,67,467,469],[],[]],[[[460,[-1,-2,-3]],72],[[74,[22,73]]],[104,78,67,467,469],[],[]],[[[456,[-1,-2,-3]],72],[[74,[22,73]]],78,[],[]],[[[457,[-1,-2,-3]],72],[[74,[22,73]]],78,[],[]],[[[397,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[451,[-1,-2]],72],[[74,[22,73]]],78,[]],[[[465,[-1,-2,-3]],72],[[74,[22,73]]],78,78,78],[[458,72],[[74,[22,73]]]],[[459,72],[[74,[22,73]]]],[[348,72],[[74,[22,73]]]],[-1,-1,[]],[[[436,[-1,-2]]],[[401,[-1,-2]]],[104,469,212],[]],[-1,-1,[]],[[[450,[-1,-2]]],[[463,[-1,-2]]],[104,469,212],[]],[-1,-1,[]],[[[376,[-1,-2]]],[[468,[-1,-2]]],[469,467],[]],[[[451,[-1,-2]]],[[468,[-1,-2]]],469,[]],[[[397,[-1,-2]]],[[468,[-1,-2]]],469,[]],[[[453,[-1,-2]]],[[468,[-1,-2]]],467,[]],[-1,-1,[]],[-1,-1,[]],[[[84,[-1]]],[[376,[-1,-2]]],[],[]],[[[22,[-1,-1]]],[[376,[-1,-2]]],[],[]],[[[84,[-1]]],[[453,[-1,-2]]],[],[]],[[[22,[-1,-1,-1]]],[[453,[-1,-2]]],[],[]],[-1,-1,[]],[[[436,[-1,-2]]],[[462,[-1,-2]]],469,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[84,[-1]]],[[436,[-1,-2]]],[],[]],[[[397,[-1,-2]]],[[436,[-1,-2]]],[],[]],[[[22,[-1,-1]]],[[436,[-1,-2]]],[],[]],[[[84,[-1]]],[[450,[-1,-2]]],[],[]],[[[451,[-1,-2]]],[[450,[-1,-2]]],[],[]],[[[22,[-1,-1,-1]]],[[450,[-1,-2]]],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[397,[-1,-2]]],[[456,[-1,-2,-3]]],[],[],[]],[-1,-1,[]],[[[451,[-1,-2]]],[[457,[-1,-2,-3]]],[],[],[]],[-1,-1,[]],[[[84,[-1]]],[[397,[-1,-2]]],[],[]],[[[436,[-1,-2]]],[[397,[-1,-2]]],[],[]],[[[22,[-1,-1]]],[[397,[-1,-2]]],[],[]],[-1,-1,[]],[[[22,[-1,-1,-1]]],[[451,[-1,-2]]],[],[]],[-1,-1,[]],[[[84,[-1]]],[[451,[-1,-2]]],[],[]],[[[461,[-1,-2,-3]]],[[465,[-1,-2,-3]]],[],[],[]],[-1,-1,[]],[[[451,[-1,-2]]],[[465,[-1,-3,-2]]],[],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[398,[-1]],-1],[[397,[-1,-2]]],[425,[103,[],[[19,[]]]],104],[]],[[[84,[-1]]],[[349,[-1,-2,-3]]],104,[],[]],[[[84,[-1]]],[[460,[-1,-2,-3]]],104,[],[]],[[[84,[[84,[-1]]]]],[[349,[-1,-2,-3]]],104,[],[]],[[[84,[[84,[-1]]]]],[[460,[-1,-2,-3]]],104,[],[]],[[[452,[-1,-2]]],[[455,[-1,-2]]],104,[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[376,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]],[452,[-1,-2]]],[[453,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]],[452,[-1,-2]],[452,[-1,-2]]],[[455,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[436,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]],[452,[-1,-2]]],[[450,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[397,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]],[452,[-1,-2]]],[[451,[-1,-2]]],[],[]],[[[376,[-1,-2]],[436,[-1,-2]]],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[-1,[[401,[-2,-3]]],33,[104,469,212],[]],[-1,[[463,[-2,-3]]],33,[104,469,212],[]],[-1,[[462,[-2,-3]]],33,[104,469,212,[114,[],[[19,[]]]]],[]],[[[461,[-1,-2,-3]]],[[465,[-1,-2,-3]]],[],[],[]],[[[454,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[436,[-1,-2]]],[[401,[-1,-2]]],469,[]],[[[450,[-1,-2]]],[[463,[-1,-2]]],469,[]],[[[436,[-1,-2]]],[[462,[-1,-2]]],469,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[451,[-1,-2]]],[[465,[-1,-3,-2]]],[],[],[]],[[[401,[-1,348]]],[[401,[-1,-2]]],104,[]],[[[463,[-1,348]]],[[463,[-1,-2]]],104,[]],[[[376,[-1,348]]],[[376,[-1,-2]]],[],[]],[[[453,[-1,348]]],[[453,[-1,-2]]],[],[]],[[[462,[-1,348]]],[[462,[-1,-2]]],104,[]],[[[464,[-1,348,348]]],[[464,[-1,-2,-3]]],104,[],[]],[[[461,[-1,348,348]]],[[461,[-1,-2,-3]]],104,[],[]],[[[436,[-1,348]]],[[436,[-1,-2]]],[],[]],[[[450,[-1,348]]],[[450,[-1,-2]]],[],[]],[[[349,[-1,348,348]]],[[349,[-1,-2,-3]]],104,[],[]],[[[460,[-1,348,348]]],[[460,[-1,-2,-3]]],104,[],[]],[[[456,[-1,348,348]]],[[456,[-1,-2,-3]]],104,[],[]],[[[457,[-1,348,348]]],[[457,[-1,-2,-3]]],104,[],[]],[[[397,[-1,348]]],[[397,[-1,-2]]],[],[]],[[[451,[-1,348]]],[[451,[-1,-2]]],[],[]],[[[465,[-1,348,348]]],[[465,[-1,-2,-3]]],[],[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[455,[-1,-2]]],[[433,[],[[19,[]]]]],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[455,[-1,-2]]],[[433,[],[[19,[]]]]],[]],[[[452,[-1,-2]]],-1,48,[]],[[[454,[-1,-2,-3]]],-1,[],[],[]],[[[464,[-1,-2,-3]]],[[398,[-1]]],104,[],[]],[[[436,[-1,-2]],[436,[-1,-2]]],458,212,[]],[[[450,[-1,-2]],[450,[-1,-2]]],459,212,[]],[[[397,[-1,-2]],[397,[-1,-2]]],458,212,[]],[[[451,[-1,-2]],[451,[-1,-2]]],459,212,[]],[[[401,[-1,-2]],-3],22,92,[],91],[[[463,[-1,-2]],-3],22,92,[],91],[[[468,[-1,-2]],-3],22,92,[],91],[[[452,[-1,-2]],-3],22,92,[],91],[[[376,[-1,-2]],-3],22,92,[],91],[[[453,[-1,-2]],-3],22,92,[],91],[[[462,[-1,-2]],-3],22,92,[],91],[[[464,[-1,-2,-3]],-4],22,92,[],[],91],[[[461,[-1,-2,-3]],-4],22,92,[],[],91],[[[454,[-1,-2,-3]],-4],22,92,[],[],91],[[[455,[-1,-2]],-3],22,92,[],91],[[[436,[-1,-2]],-3],22,92,[],91],[[[450,[-1,-2]],-3],22,92,[],91],[[[349,[-1,-2,-3]],-4],22,92,[],[],91],[[[460,[-1,-2,-3]],-4],22,92,[],[],91],[[[456,[-1,-2,-3]],-4],22,92,[],[],91],[[[457,[-1,-2,-3]],-4],22,92,[],[],91],[[[397,[-1,-2]],-3],22,92,[],91],[[[451,[-1,-2]],-3],22,92,[],91],[[[465,[-1,-2,-3]],-4],22,92,92,92,91],[[458,-1],22,91],[[459,-1],22,91],[[348,-1],22,91],[[[401,[-1,-2]]],-1,[104,[114,[],[[19,[]]]]],[]],[[[463,[-1,-2]]],-1,[104,[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],0,0,[[[455,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],0,[[],[[464,[-1,-2,-3]]],434,[],[]],[[],[[461,[-1,-2,-3]]],[434,418],[],[]],[[],[[454,[-1,-2,-3]]],467,[],[]],[[],[[349,[-1,-2,-3]]],[469,467],[],[]],[[],[[460,[-1,-2,-3]]],[469,467],[],[]],[[],[[456,[-1,-2,-3]]],469,[],[]],[[],[[457,[-1,-2,-3]]],469,[],[]],[[],[[465,[-1,-2,-3]]],[],[],[]],[[[401,[-1,-2]],-1,-1],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[463,[-1,-2]],-1,-1,-1],[[463,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]],-1,-1],[[462,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[[401,[-1,-2]],[455,[-1,-2]]],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]],[455,[-1,-2]]],[[462,[-1,-2]]],[104,469,212,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[401,[-1,-2]],[401,[-1,-2]]],[[63,[[401,[-1,-2]]]]],[104,212],[]],[[[463,[-1,-2]],[463,[-1,-2]]],[[63,[[463,[-1,-2]]]]],[104,212],[]],[[[462,[-1,-2]],[462,[-1,-2]]],[[63,[[462,[-1,-2]]]]],[104,212,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[401,[-1,-2]],[401,[-1,-2]]],[[401,[-1,-2]]],[104,212],[]],[[[463,[-1,-2]],[463,[-1,-2]]],[[463,[-1,-2]]],[104,212],[]],[[[401,[-1,-2]],[401,[-1,-2]]],5,212,[]],[[[463,[-1,-2]],[463,[-1,-2]]],5,212,[]],[[[462,[-1,-2]],[462,[-1,-2]]],5,[104,212,[20,[],[[19,[]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[376,[-1,-2]]],[[84,[-1]]],[],[]],[[[376,[-1,-2]]],[[22,[-1,-1]]],[],[]],[[[453,[-1,-2]]],[[84,[-1]]],[],[]],[[[453,[-1,-2]]],[[22,[-1,-1,-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[436,[-1,-2]]],[[22,[-1,-1]]],[],[]],[-1,-2,[],[]],[[[436,[-1,-2]]],[[84,[-1]]],[],[]],[[[450,[-1,-2]]],[[22,[-1,-1,-1]]],[],[]],[-1,-2,[],[]],[[[450,[-1,-2]]],[[84,[-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[456,[-1,-2,-3]]],[[349,[-1,-2,-3]]],[469,467],[],[]],[[[456,[-1,-2,-3]]],[[397,[-1,-2]]],[],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[457,[-1,-2,-3]]],[[451,[-1,-2]]],[],[],[]],[[[457,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[469,467],[],[]],[[[397,[-1,-2]]],[[22,[-1,-1]]],[],[]],[[[397,[-1,-2]]],[[84,[-1]]],[],[]],[-1,-2,[],[]],[[[451,[-1,-2]]],[[84,[-1]]],[],[]],[-1,-2,[],[]],[[[451,[-1,-2]]],[[22,[-1,-1,-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[464,[-1,-2,-3]]],[[464,[-1,-3,-2]]],435,[],[]],[[[461,[-1,-2,-3]]],[[461,[-1,-3,-2]]],435,[],[]],[[[454,[-1,-2,-3]]],[[454,[-3,-2]]],[467,426],[],[]],[[[349,[-1,-2,-3]]],[[63,[[349,[-1,-3,-2]]]]],[104,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],67,469,467],[],[]],[[[460,[-1,-2,-3]]],[[63,[[460,[-1,-3,-2]]]]],[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[456,[-1,-2,-3]]],[[456,[-3,-2]]],[433,104],[],[]],[[[457,[-1,-2,-3]]],[[457,[-3,-2]]],[433,104],[],[]],[[[465,[-1,-2,-3]]],[[465,[-1,-3,-2]]],[],[],[]],[[[460,[-1,-2,-3]]],5,[469,467,67],[],[]],[[[460,[-1,-2,-3]]],5,[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[401,[-1,-2]]],5,212,[]],[[[463,[-1,-2]]],5,212,[]],[[[462,[-1,-2]]],5,[104,469,212],[]],[[[436,[-1,-2]]],5,[469,212],[]],[[[450,[-1,-2]]],5,[469,212],[]],[[[401,[-1,-2]]],5,60,[]],[[[463,[-1,-2]]],5,60,[]],[[[376,[-1,-2]]],5,60,[]],[[[453,[-1,-2]]],5,60,[]],[[[462,[-1,-2]]],5,60,[]],[[[436,[-1,-2]]],5,60,[]],[[[450,[-1,-2]]],5,60,[]],[[[397,[-1,-2]]],5,60,[]],[[[451,[-1,-2]]],5,60,[]],[[[454,[-1,-2,-3]]],5,[67,467],[],[]],[[[456,[-1,-2,-3]]],5,[469,67],[],[]],[[[457,[-1,-2,-3]]],5,[469,67],[],[]],[[[349,[-1,-2,-3]]],5,[104,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],67,469,467],[],[]],[[[460,[-1,-2,-3]]],5,[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[401,[-1,-2]]],5,212,[]],[[[463,[-1,-2]]],5,212,[]],[[[461,[-1,-2,-3]]],5,[],[],[]],[[[436,[-1,-2]]],5,449,[]],[[[450,[-1,-2]]],5,449,[]],[[[455,[-1,-2]]],5,[469,67],[]],0,0,0,[[[397,[-1,-2]]],-1,435,[]],[[[451,[-1,-2]]],-1,435,[]],[[[401,[-1,-2]],[401,[-1,-2]],-1],[[401,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[463,[-1,-2]],[463,[-1,-2]],-1],[[463,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[452,[-1,-2]],[452,[-1,-2]],-1],[[452,[-1,-2]]],[467,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[20,[],[[19,[]]]],48],[]],[[[376,[-1,-2]],[376,[-1,-2]],-1],[[376,[-1,-2]]],[467,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[20,[],[[19,[]]]],104],[]],[[[453,[-1,-2]],[453,[-1,-2]],-1],[[453,[-1,-2]]],[467,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[20,[],[[19,[]]]],104],[]],[[[462,[-1,-2]],[462,[-1,-2]],-1],[[462,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[461,[-1,-2,-3]],[461,[-1,-2,-3]],-1],[[461,[-1,-2,-3]]],435,[],[]],[[[436,[-1,-2]],[436,[-1,-2]],-1],[[436,[-1,-2]]],[467,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[20,[],[[19,[]]]],104],[]],[[[450,[-1,-2]],[450,[-1,-2]],-1],[[450,[-1,-2]]],[467,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[20,[],[[19,[]]]],104],[]],[[[397,[-1,-2]],[397,[-1,-2]],-1],[[397,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[451,[-1,-2]],[451,[-1,-2]],-1],[[451,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[436,[-1,-2]],[436,[-1,-2]]],458,212,[]],[[[450,[-1,-2]],[450,[-1,-2]]],459,212,[]],[[[397,[-1,-2]],[397,[-1,-2]]],458,212,[]],[[[451,[-1,-2]],[451,[-1,-2]]],459,212,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[452,[-1,-2]],[452,[-1,-2]]],[[452,[-1,-2]]],212,[]],[[[376,[-1,-2]],[376,[-1,-2]]],[[376,[-1,-2]]],212,[]],[[[453,[-1,-2]],[453,[-1,-2]]],[[453,[-1,-2]]],212,[]],[[[462,[-1,-2]]],[[376,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[[454,[-1,-2,-3]]],212,[],[]],[[[436,[-1,-2]],[436,[-1,-2]]],[[436,[-1,-2]]],212,[]],[[[450,[-1,-2]],[450,[-1,-2]]],[[450,[-1,-2]]],212,[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],212,[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],212,[]],0,0,[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[452,[-1,-2]]],212,[]],[[[376,[-1,-2]],[376,[-1,-2]]],[[376,[-1,-2]]],212,[]],[[[453,[-1,-2]],[453,[-1,-2]]],[[453,[-1,-2]]],212,[]],[[[462,[-1,-2]]],[[376,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[[454,[-1,-2,-3]]],212,[],[]],[[[436,[-1,-2]],[436,[-1,-2]]],[[436,[-1,-2]]],212,[]],[[[450,[-1,-2]],[450,[-1,-2]]],[[450,[-1,-2]]],212,[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],212,[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],212,[]],0,0,[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],[[[401,[-1,-2]],-1],[],[104,103],[]],[[[401,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[463,[-1,-2]],-1],[],[104,103],[]],[[[463,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[452,[-1,-2]],-1],[],103,[]],[[[452,[-1,-2]],[454,[-1,-2,-3]]],[],103,[],[]],[[[376,[-1,-2]],-1],[],[104,103],[]],[[[376,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[453,[-1,-2]],-1],[],[104,103],[]],[[[453,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[462,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[462,[-1,-2]],-1],[],[104,103],[]],[[[454,[-1,-2,-3]],[454,[-1,-3,-4]]],[],103,[],[],[]],[[[455,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[455,[-1,-2]],-1],[],[104,103],[]],[[[436,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[436,[-1,-2]],-1],[],[104,103],[]],[[[450,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[450,[-1,-2]],-1],[],[104,103],[]],[[[397,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[397,[-1,-2]],-1],[],[104,103],[]],[[[451,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[451,[-1,-2]],-1],[],[104,103],[]],[[[401,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[401,[-1,-2]],-1],22,[104,432],[]],[[[463,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[463,[-1,-2]],-1],22,[104,432],[]],[[[452,[-1,-2]],-1],22,[104,[103,[],[[19,[]]]]],[]],[[[376,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[376,[-1,-2]],-1],22,[104,[103,[],[[19,[]]]]],[]],[[[453,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[453,[-1,-2]],-1],22,[104,432],[]],[[[462,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[462,[-1,-2]],-1],22,[104,432],[]],[[[455,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[455,[-1,-2]],-1],22,[104,432],[]],[[[436,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[436,[-1,-2]],-1],22,[104,432],[]],[[[450,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[450,[-1,-2]],-1],22,[104,432],[]],[[[397,[-1,-2]],-1],22,[104,[103,[],[[19,[]]]]],[]],[[[397,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[451,[-1,-2]],-1],22,[104,[103,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[460,[-1,-2,-3]],-1],[[460,[-1,-2,-3]]],[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[452,[-1,-2]]],[],433,[]],[[[376,[-1,-2]]],[],433,[]],[[[453,[-1,-2]]],[],433,[]],[[[455,[-1,-2]]],[[455,[-1,-2]]],[[433,[],[[19,[]]]]],[]],[[[436,[-1,-2]]],[],433,[]],[[[450,[-1,-2]]],[],433,[]],[[[397,[-1,-2]]],[],433,[]],[[[451,[-1,-2]]],[],433,[]],[[[376,[-1,-2]],[376,[-1,-2]]],[[401,[-1,-2]]],[],[]],[[[453,[-1,-2]],[453,[-1,-2]]],[[463,[-1,-2]]],[],[]],[[-1,-1,-1,-1],[[468,[-1,-2]]],[],[]],[-1,[[452,[-1,-2]]],[],[]],[[-1,-1],[[376,[-1,-2]]],[],[]],[[-1,-1,-1],[[453,[-1,-2]]],[],[]],[[[376,[-1,-2]],[436,[-1,-2]]],[[462,[-1,-2]]],[],[]],[[[398,[-1]]],[[464,[-1,-2,-3]]],[],[],[]],[-1,[[454,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1],[[455,[-1,-2]]],[],[]],[[-1,-1],[[436,[-1,-2]]],[],[]],[[-1,-1,-1],[[450,[-1,-2]]],[],[]],[[-1,-1,-1,-1,-1,-1],[[349,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1],[[460,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[456,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1],[[457,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[397,[-1,-2]]],[],[]],[[-1,-1,-1],[[451,[-1,-2]]],[],[]],[[[461,[-1,-2,-3]],[451,[-1,-3]]],[[465,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1,-1,-1],[[460,[-1,-2,-3]]],[469,467],[],[]],[-1,[[455,[-1,-2]]],104,[]],[[[451,[-1,-2]],[461,[-1,-2,-3]]],[[465,[-1,-2,-3]]],[],[],[]],[458,5],[459,5],[[[461,[-1,-2,-3]]],-1,435,[],[]],[[[461,[-1,-2,-3]]],[[461,[-1,-2,-3]]],435,[],[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],435,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],435,[]],[458,458],[459,459],[[[436,[-1,-2]],[436,[-1,-2]]],458,67,[]],[[[450,[-1,-2]],[450,[-1,-2]]],459,67,[]],[[[397,[-1,-2]],[397,[-1,-2]]],458,67,[]],[[[451,[-1,-2]],[451,[-1,-2]]],459,67,[]],0,[[],[[454,[-1,-2,-3]]],467,[],[]],[[],[[397,[-1,-2]]],467,[]],[[],[[451,[-1,-2]]],467,[]],[[458,458],458],[[459,459],459],[[],[[376,[-1,-2]]],469,[]],[[],[[453,[-1,-2]]],469,[]],0,[[-1,-1,-1,-1,-1,-1],[[460,[-1,-2,-3]]],[],[],[]],[[[401,[-1,-2]],[455,[-1,-2]]],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]],[455,[-1,-2]]],[[462,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[349,[-1,-2,-3]],[401,[-1,-2]]],[[401,[-1,-3]]],[[114,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[460,[-1,-2,-3]],[401,[-1,-2]]],[[63,[[401,[-1,-3]]]]],[[114,[],[[19,[]]]],[426,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[460,[-1,-2,-3]],[463,[-1,-2]]],[[63,[[463,[-1,-3]]]]],[[114,[],[[19,[]]]],[426,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[349,[-1,-2,-3]],[462,[-1,-2]]],[[462,[-1,-3]]],[[114,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[460,[-1,-2,-3]],[462,[-1,-2]]],[[63,[[462,[-1,-3]]]]],[[114,[],[[19,[]]]],[426,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[63,[109]]],212,[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[[63,[109]]],212,[],[]],[[348,348],[[63,[109]]]],[-1,[[460,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[376,[-1,-2]]],[],[]],[[-1,-1,-1],[[453,[-1,-2]]],[],[]],[[[376,[30,-1]]],[[376,[30,348]]],[]],[[[349,[-1,-2,-3]],[398,[-1]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],469,425],[],[]],[[[460,[-1,-2,-3]],-1,-1,-1,[398,[-1]]],[[460,[-1,-2,-3]]],[[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,469,467,425],[],[]],[[[349,[-1,-2,-3]],-1,-1],[[349,[-1,-2,-3]]],[104,[103,[],[[19,[]]]]],[],[]],[[[460,[-1,-2,-3]],-1,-1,-1],[[460,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[349,[-1,-2,-3]],[397,[-1,-2]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[460,[-1,-2,-3]],[451,[-1,-2]]],[[460,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[[114,[],[[19,[]]]],[426,[],[[19,[]]]],104,[103,[],[[19,[]]]],[20,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[[114,[],[[19,[]]]],[426,[],[[19,[]]]],104,[103,[],[[19,[]]]],[20,[],[[19,[]]]]],[]],[[[460,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[104,[103,[],[[19,[]]]],[426,[],[[19,[]]]],469,467,67],[],[]],[[-1,-1,-1,-1],[[461,[-1,-2,-3]]],[],[],[]],0,[-1,[[464,[-1,-2,-3]]],[],[],[]],0,[425,425],[[-1,-1,-1,-1],[[462,[-1,-2]]],[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[376,[-1,-2]],[436,[-1,-2]]],[[376,[-1,-2]]],470,[]],[[[453,[-1,-2]],[450,[-1,-2]]],[[453,[-1,-2]]],470,[]],0,[[[397,[-1,-2]]],[[397,[-1,-2]]],60,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],60,[]],[[[398,[-1]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],469,425],[],[]],[[-1,-1,-1,[398,[-1]]],[[460,[-1,-2,-3]]],[],[],[]],0,[[[401,[-1,-2]]],[[401,[-1,-2]]],472,[]],[[[463,[-1,-2]]],[[463,[-1,-2]]],472,[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],472,[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],[472,104],[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],472,[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],[472,104],[]],[[[462,[-1,-2]]],[[462,[-1,-2]]],[471,466,472,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],[472,104],[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],472,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],472,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],[472,104],[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],472,[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],[472,104],[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],472,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],[472,104],[]],[[[401,[-1,-2]]],[[401,[-1,-2]]],[471,466],[]],[[[463,[-1,-2]]],[[463,[-1,-2]]],[471,466],[]],[[[462,[-1,-2]]],[[462,[-1,-2]]],[471,466,472,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[401,[-1,-2]]],[[401,[-1,-2]]],[471,466],[]],[[[463,[-1,-2]]],[[463,[-1,-2]]],[471,466],[]],[[[462,[-1,-2]]],[[462,[-1,-2]]],[471,466,472,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[452,[-1,-2]]],473,[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[452,[-1,-2]]],473,[]],[[[401,[-2,-3]],-1,-1],[[401,[-2,-3]]],104,[[103,[-1],[[19,[]]]],104],[]],[[[463,[-2,-3]],-1,-1,-1],[[463,[-2,-3]]],104,[[103,[-1],[[19,[]]]],104],[]],[[[462,[-2,-3]],-1,-1],[[462,[-2,-3]]],104,[104,[103,[-1],[[19,[]]]]],[]],[[-1,-1],[[349,[-1,-2,-3]]],469,[],[]],[[-1,-1,-1],[[460,[-1,-2,-3]]],[469,467],[],[]],[[458,[376,[-1,-2]],[376,[-1,-2]]],[[376,[-1,-2]]],[],[]],[[459,[453,[-1,-2]],[453,[-1,-2]]],[[453,[-1,-2]]],[],[]],[[458,[436,[-1,-2]],[436,[-1,-2]]],[[436,[-1,-2]]],[],[]],[[459,[450,[-1,-2]],[450,[-1,-2]]],[[450,[-1,-2]]],[],[]],[[458,[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[],[]],[[459,[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[],[]],[[[401,[-1,-2]],[436,[-1,-2]]],22,[104,[114,[],[[19,[]]]]],[]],[425,425],[[[401,[-1,-2]]],[[436,[-1,-2]]],[104,[114,[],[[19,[]]]]],[]],[[[463,[-1,-2]]],[[450,[-1,-2]]],[104,[114,[],[[19,[]]]]],[]],0,[[-1,-1],[[436,[-1,-2]]],[],[]],[[-1,-1,-1],[[450,[-1,-2]]],[],[]],[[[398,[-1]],[398,[-1]]],[[460,[-1,-2,-3]]],[425,469,467],[],[]],[[[461,[-1,-2,-3]],[461,[-1,-2,-3]],-1],[[461,[-1,-2,-3]]],[],[],[]],[-1,[[376,[-1,-2]]],48,[]],[-1,[[453,[-1,-2]]],48,[]],[-1,[[436,[-1,-2]]],48,[]],[-1,[[450,[-1,-2]]],48,[]],[-1,[[456,[-1,-2,-3]]],48,[],[]],[-1,[[457,[-1,-2,-3]]],48,[],[]],[-1,[[397,[-1,-2]]],48,[]],[-1,[[451,[-1,-2]]],48,[]],[[[397,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[20,[],[[19,[]]]]],[]],[[[451,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[20,[],[[19,[]]]]],[]],[[[461,[-1,-2,-3]]],-1,435,[],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[],114,[]],[[[376,[-1,-2]],[376,[-1,-2]]],[],114,[]],[[[376,[-1,-2]],[397,[-1,-2]]],[],114,[]],[[[376,[-1,-2]],[436,[-1,-2]]],[],114,[]],[[[453,[-1,-2]],[453,[-1,-2]]],[],114,[]],[[[453,[-1,-2]],[450,[-1,-2]]],[],114,[]],[[[453,[-1,-2]],[451,[-1,-2]]],[],114,[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[],114,[],[]],[[[455,[-1,-2]],[455,[-1,-2]]],[[455,[-1,-2]]],[[114,[],[[19,[]]]]],[]],[[[436,[-1,-2]],[436,[-1,-2]]],[],114,[]],[[[450,[-1,-2]],[450,[-1,-2]]],[],114,[]],[[[456,[-1,-2,-3]],[456,[-1,-4,-3]]],[],114,[],[],[]],[[[457,[-1,-2,-3]],[457,[-1,-4,-3]]],[],114,[],[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[],114,[]],[[[451,[-1,-2]],[451,[-1,-2]]],[],114,[]],[[[452,[-1,-2]],[452,[-1,-2]]],22,437,[]],[[[376,[-1,-2]],[397,[-1,-2]]],22,[104,[114,[],[[19,[]]]]],[]],[[[376,[-1,-2]],[436,[-1,-2]]],22,437,[]],[[[453,[-1,-2]],[450,[-1,-2]]],22,437,[]],[[[453,[-1,-2]],[451,[-1,-2]]],22,[104,[114,[],[[19,[]]]]],[]],[[[455,[-1,-2]],[455,[-1,-2]]],22,437,[]],[[[436,[-1,-2]],[436,[-1,-2]]],22,437,[]],[[[450,[-1,-2]],[450,[-1,-2]]],22,437,[]],[[[456,[-1,-2,-3]],[456,[-1,-3,-3]]],22,437,[],[]],[[[457,[-1,-2,-3]],[457,[-1,-3,-3]]],22,437,[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],22,[104,[114,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],22,[104,[114,[],[[19,[]]]]],[]],[-3,[[452,[-1,-2]]],[[20,[],[[19,[]]]],104,469],[],[[126,[],[[32,[[452,[-1,-2]]]]]]]],[-3,[[452,[-1,-2]]],[[20,[],[[19,[]]]],469],[],[[126,[],[[32,[[452,[-1,-2]]]]]]]],[-3,[[436,[-1,-2]]],[[20,[],[[19,[]]]],469],[],[[126,[],[[32,[[436,[-1,-2]]]]]]]],[-3,[[436,[-1,-2]]],[[20,[],[[19,[]]]],104,469],[],[[126,[],[[32,[[436,[-1,-2]]]]]]]],[-3,[[450,[-1,-2]]],[[20,[],[[19,[]]]],469],[],[[126,[],[[32,[[450,[-1,-2]]]]]]]],[-3,[[450,[-1,-2]]],[[20,[],[[19,[]]]],104,469],[],[[126,[],[[32,[[450,[-1,-2]]]]]]]],[-3,[[397,[-1,-2]]],[[20,[],[[19,[]]]],469],[],[[126,[],[[32,[[397,[-1,-2]]]]]]]],[-3,[[397,[-1,-2]]],[[20,[],[[19,[]]]],104,469],[],[[126,[],[[32,[[397,[-1,-2]]]]]]]],[-3,[[451,[-1,-2]]],[[20,[],[[19,[]]]],469],[],[[126,[],[[32,[[451,[-1,-2]]]]]]]],[-3,[[451,[-1,-2]]],[[20,[],[[19,[]]]],104,469],[],[[126,[],[[32,[[451,[-1,-2]]]]]]]],[425,425],[[[464,[-1,-2,-3]],[464,[-1,-4,-2]]],[[464,[-1,-4,-3]]],435,[],[],[]],[[[461,[-1,-2,-3]],[461,[-1,-3,-4]]],[[461,[-1,-2,-4]]],[],[],[],[]],[[[349,[-1,-2,-3]],[349,[-1,-3,-4]]],[[349,[-1,-2,-4]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[],[]],[[[460,[-1,-2,-3]],[460,[-1,-3,-4]]],[[460,[-1,-2,-4]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[],[]],[[[465,[-1,-2,-3]],[465,[-1,-3,-4]]],[[465,[-1,-2,-4]]],[],[],[],[]],[[[349,[-1,-2,-3]],[398,[-1]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],469,425],[],[]],[[[460,[-1,-2,-3]],-1,-1,-1,[398,[-1]]],[[460,[-1,-2,-3]]],[[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,469,467,425],[],[]],[[[349,[-1,-2,-3]],-1,-1],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469],[],[]],[[[460,[-1,-2,-3]],-1,-1,-1],[[460,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[349,[-1,-2,-3]],[397,[-1,-3]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[460,[-1,-2,-3]],[451,[-1,-3]]],[[460,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[453,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[460,[-1,-2,-3]]],[[349,[-1,-2,-3]]],104,[],[]],[[[451,[-1,-2]]],[[397,[-1,-2]]],104,[]],[[[376,[-1,-2]]],[[453,[-1,-2]]],[469,104],[]],[[[464,[-1,-2,-3]]],[[461,[-1,-2,-3]]],435,[],[]],[[[349,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[469,467,104],[],[]],[[[397,[-1,-2]]],[[451,[-1,-2]]],[469,104],[]],[[[376,[-1,-2]]],[[84,[-1]]],104,[]],[[[453,[-1,-2]]],[[84,[-1]]],104,[]],[[[436,[-1,-2]]],[[84,[-1]]],104,[]],[[[450,[-1,-2]]],[[84,[-1]]],104,[]],[[[349,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[460,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[456,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[457,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[397,[-1,-2]]],[[84,[-1]]],104,[]],[[[451,[-1,-2]]],[[84,[-1]]],104,[]],[[[453,[-1,-2]]],[[84,[-1]]],[467,104],[]],[[[451,[-1,-2]]],[[84,[-1]]],[469,104],[]],[[[349,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[460,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[349,[-1,-2,-3]]],[[84,[[84,[-1]]]]],104,[],[]],[[[460,[-1,-2,-3]]],[[84,[[84,[-1]]]]],104,[],[]],[[[460,[-1,-2,-3]]],[[84,[[84,[-1]]]]],104,[],[]],[[[462,[-1,-2]]],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[401,[-1,-2]]],[[401,[30,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[30,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[30,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[30,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[30,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[30,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[30,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[30,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[30,-2]]],[421,104],[]],[[[401,[-1,-2]]],[[401,[87,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[87,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[87,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[87,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[87,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[87,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[87,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[87,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[87,-2]]],[421,104],[]],[[[401,[-1,-2]]],[[401,[446,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[446,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[446,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[446,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[446,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[446,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[446,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[446,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[446,-2]]],[421,104],[]],[[[401,[-1,-2]]],[[401,[88,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[88,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[88,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[88,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[88,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[88,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[88,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[88,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[88,-2]]],[421,104],[]],[[[401,[-1,-2]]],[[63,[[401,[-1,-2]]]]],[104,212],[]],[[[463,[-1,-2]]],[[63,[[463,[-1,-2]]]]],[104,212],[]],[[[462,[-1,-2]]],[[63,[[462,[-1,-2]]]]],[104,469,212],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[397,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[451,[-1,-2]]],[[453,[-1,-2]]],104,[]],[[[468,[-1,-2]]],[[63,[[376,[-1,-2]]]]],[104,[426,[],[[19,[]]]],469,212],[]],[[[468,[-1,-2]]],[[63,[[453,[-1,-2]]]]],[104,[426,[],[[19,[]]]],469,212],[]],[[[401,[-1,-2]]],[[462,[-1,-2]]],[104,[114,[],[[19,[]]]]],[]],[[[397,[-1,-2]]],[[436,[-1,-2]]],104,[]],[[[464,[-1,-2,-3]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],434,425],[],[]],[[[461,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[],[],[]],[[[456,[-1,-2,-3]]],[[349,[-1,-2,-3]]],[469,467,104],[],[]],[[[457,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[469,467,104],[],[]],[[[397,[-1,-2]]],[[349,[-1,-2,-2]]],[469,467,104],[]],[[[451,[-1,-2]]],[[460,[-1,-2,-2]]],[469,467,104],[]],[[[465,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[],[],[]],[[[376,[-1,-2]]],[[22,[-1,-1]]],104,[]],[[[453,[-1,-2]]],[[22,[-1,-1,-1]]],104,[]],[[[436,[-1,-2]]],[[22,[-1,-1]]],104,[]],[[[450,[-1,-2]]],[[22,[-1,-1,-1]]],104,[]],[[[456,[-1,-2,-3]]],[[22,[-1,-1]]],104,[],[]],[[[457,[-1,-2,-3]]],[[22,[-1,-1,-1]]],104,[],[]],[[[397,[-1,-2]]],[[22,[-1,-1]]],104,[]],[[[451,[-1,-2]]],[[22,[-1,-1,-1]]],104,[]],[[[453,[-1,-2]]],[[22,[-1,-1,-1,-1]]],[467,104],[]],[[[451,[-1,-2]]],[[22,[-1,-1,-1,-1]]],[469,104],[]],[[[401,[-1,-2]]],[[401,[58,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[58,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[58,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[58,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[58,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[58,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[58,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[58,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[58,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[90,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[90,-2]]],[421,104],[]],[[[401,[-1,-2]]],[[401,[-1,348]]],104,[]],[[[463,[-1,-2]]],[[463,[-1,348]]],104,[]],[[[376,[-1,-2]]],[[376,[-1,348]]],104,[]],[[[453,[-1,-2]]],[[453,[-1,348]]],104,[]],[[[462,[-1,-2]]],[[462,[-1,348]]],104,[]],[[[464,[-1,-2,-3]]],[[464,[-1,348,348]]],104,[],[]],[[[461,[-1,-2,-3]]],[[461,[-1,348,348]]],104,[],[]],[[[436,[-1,-2]]],[[436,[-1,348]]],104,[]],[[[450,[-1,-2]]],[[450,[-1,348]]],104,[]],[[[349,[-1,-2,-3]]],[[349,[-1,348,348]]],104,[],[]],[[[460,[-1,-2,-3]]],[[460,[-1,348,348]]],104,[],[]],[[[456,[-1,-2,-3]]],[[456,[-1,348,348]]],104,[],[]],[[[457,[-1,-2,-3]]],[[457,[-1,348,348]]],104,[],[]],[[[397,[-1,-2]]],[[397,[-1,348]]],104,[]],[[[451,[-1,-2]]],[[451,[-1,348]]],104,[]],[[[465,[-1,-2,-3]]],[[465,[-1,348,348]]],[],[],[]],[[[401,[-1,-2]]],[[401,[56,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[56,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[56,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[56,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[56,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[56,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[56,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[56,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[56,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[397,[-1,-2]]],104,[]],[[[453,[-1,-2]]],[[451,[-1,-2]]],104,[]],[[[436,[-1,-2]]],[[397,[-1,-2]]],104,[]],[[[450,[-1,-2]]],[[451,[-1,-2]]],104,[]],[[[456,[-1,-2,-3]]],[[397,[-1,-2]]],104,[],[]],[[[457,[-1,-2,-3]]],[[451,[-1,-2]]],104,[],[]],0,[[[456,[-1,-2,-3]],[401,[-1,-2]]],[[401,[-3]]],[20,104],[],[]],[[[454,[-1,-2,-3]],[401,[-1,-2]]],[[401,[-3]]],[104,103],[],[]],[[[457,[-1,-2,-3]],[401,[-1,-2]]],[[401,[-3]]],[20,104],[],[]],[[[454,[-1,-2,-3]],[463,[-1,-2]]],[[463,[-3]]],[104,103],[],[]],[[[457,[-1,-2,-3]],[463,[-1,-2]]],[[463,[-3]]],[20,104],[],[]],[[[464,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-1,-3]]],435,[],[]],[[[464,[-1,348,348]],[376,[-1,348]]],[[376,[-1,348]]],409],[[[454,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-3]]],[104,103],[],[]],[[[454,[-1,348,348]],[376,[-1,348]]],[[376,[-1,348]]],409],[[[349,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[349,[-1,348,348]],[376,[-1,348]]],[[376,[-1,348]]],409],[[[456,[-1,348,348]],[376,[-1,348]]],[[376,[-1,348]]],409],[[[456,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-3]]],[20,104],[],[]],[[[461,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-1,-3]]],[],[],[]],[[[460,[-1,-2,-3]],[376,[-1,-2]]],[[63,[[376,[-1,-3]]]]],[[426,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[457,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-3]]],[20,104],[],[]],[[[460,[-1,-2,-3]],[376,[-1,-2]]],[[468,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[461,[-1,-2,-3]],[453,[-1,-2]]],[[453,[-1,-3]]],[],[],[]],[[[454,[-1,-2,-3]],[453,[-1,-2]]],[[453,[-3]]],[104,103],[],[]],[[[460,[-1,-2,-3]],[453,[-1,-2]]],[[63,[[453,[-1,-3]]]]],[[426,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[457,[-1,-2,-3]],[453,[-1,-2]]],[[453,[-3]]],[20,104],[],[]],[[[460,[-1,-2,-3]],[453,[-1,-2]]],[[468,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[454,[-1,-2,-3]],[462,[-1,-2]]],[[462,[-3]]],[104,103],[],[]],[[[456,[-1,-2,-3]],[462,[-1,-2]]],[[462,[-3]]],[[20,[],[[19,[]]]],104],[],[]],[[[457,[-1,-2,-3]],[462,[-1,-2]]],[[462,[-1,-3]]],[[20,[],[[19,[]]]],104],[],[]],[[[454,[-1,-2,-3]],[436,[-1,-2]]],[[436,[-3]]],[104,103],[],[]],[[[456,[-1,-2,-3]],[436,[-1,-2]]],[[436,[-1,-3]]],[],[],[]],[[[457,[-1,-2,-3]],[436,[-1,-2]]],[[436,[-1,-3]]],[],[],[]],[[[464,[-1,-2,-3]],[397,[-1,-2]]],[[397,[-1,-3]]],435,[],[]],[[[464,[-1,348,348]],[397,[-1,348]]],[[397,[-1,348]]],409],[[[454,[-1,348,348]],[397,[-1,348]]],[[397,[-1,348]]],409],[[[454,[-1,-2,-3]],[397,[-1,-2]]],[[397,[-3]]],[104,103],[],[]],[[[349,[-1,348,348]],[397,[-1,348]]],[[397,[-1,348]]],409],[[[349,[-1,-2,-3]],[397,[-1,-2]]],[[397,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[456,[-1,348,348]],[397,[-1,348]]],[[397,[-1,348]]],409],[[[461,[-1,-2,-3]],[397,[-1,-2]]],[[397,[-1,-3]]],[],[],[]],[[[460,[-1,-2,-3]],[397,[-1,-2]]],[[397,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[461,[-1,-2,-3]],[451,[-1,-2]]],[[451,[-1,-3]]],[],[],[]],[[[460,[-1,-2,-3]],[451,[-1,-2]]],[[451,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[401,[-1,-2]],[397,[-1,-2]]],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[463,[-1,-2]],[451,[-1,-2]]],[[463,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[462,[-1,-2]],[397,[-1,-2]]],[[462,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[-1,-1],[[349,[-1,-2,-3]]],[469,467],[],[]],[[-1,-1,-1],[[460,[-1,-2,-3]]],[469,467],[],[]],0,[[[401,[-1,-2]]],[[63,[[401,[-3,-2]]]]],[421,104],[],421],[[[463,[-1,-2]]],[[63,[[463,[-3,-2]]]]],[421,104],[],421],[[[452,[-1,-2]]],[[63,[[452,[-3,-2]]]]],[421,48],[],421],[[[376,[-1,-2]]],[[63,[[376,[-3,-2]]]]],[421,104],[],421],[[[453,[-1,-2]]],[[63,[[453,[-3,-2]]]]],[421,104],[],421],[[[462,[-1,-2]]],[[63,[[462,[-3,-2]]]]],[421,104],[],421],[[[454,[-1,-2,-3]]],[[63,[[454,[-4,-2,-3]]]]],421,[],[],421],[[[436,[-1,-2]]],[[63,[[436,[-3,-2]]]]],[421,104],[],421],[[[450,[-1,-2]]],[[63,[[450,[-3,-2]]]]],[421,104],[],421],[[[349,[-1,-2,-3]]],[[63,[[349,[-4,-2,-3]]]]],[421,104],[],[],421],[[[460,[-1,-2,-3]]],[[63,[[460,[-4,-2,-3]]]]],[421,104],[],[],421],[[[397,[-1,-2]]],[[63,[[397,[-3,-2]]]]],[421,104],[],421],[[[451,[-1,-2]]],[[63,[[451,[-3,-2]]]]],[421,104],[],421],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[[[397,[-1,-2]]],[[63,[[397,[-1,-2]]]]],435,[]],[[[451,[-1,-2]]],[[63,[[451,[-1,-2]]]]],435,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[401,[-1,-2]],[401,[-1,-2]]],[[401,[-1,-2]]],[104,212],[]],[[[463,[-1,-2]],[463,[-1,-2]]],[[463,[-1,-2]]],[104,212],[]],[[[462,[-1,-2]],[462,[-1,-2]]],[[462,[-1,-2]]],[104,212,[20,[],[[19,[]]]],[114,[],[[19,[]]]],469],[]],[[-1,-1,-1,-1],[[461,[-1,-2,-3]]],435,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[-1,-1],[[397,[-1,-2]]],[],[]],[[-1,-1,-1],[[451,[-1,-2]]],[],[]],[[[461,[-1,-2,-3]]],[[451,[-1,348]]],104,[],[]],[[[455,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],[[[463,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[450,[-1,-2]]],-1,[[103,[],[[19,[]]]],104],[]],0,[[[401,[-1,-2]]],-1,[104,[114,[],[[19,[]]]]],[]],[[[463,[-1,-2]]],-1,[104,[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],0,0,[[[349,[-1,-2,-3]]],[[349,[-1,-2,-4]]],104,[],[],[]],[[[460,[-1,-2,-3]]],[[460,[-1,-2,-4]]],104,[],[],[]],[[[397,[-1,-2]],-1],[[397,[-1,-2]]],435,[]],[[[397,[-1,-2]],-1],[[397,[-1,-2]]],435,[]],[[[451,[-1,-2]],-1],[[451,[-1,-2]]],435,[]],[[[397,[-1,-2]],-1],[[397,[-1,-2]]],435,[]],[[[451,[-1,-2]],-1],[[451,[-1,-2]]],435,[]],[[[349,[-1,-2,-3]]],[[349,[-1,-4,-3]]],104,[],[],[]],[[[460,[-1,-2,-3]]],[[460,[-1,-4,-3]]],104,[],[],[]],0,0,0,0,0,0,0,0,0,[[[401,[-1,-2]]],[[161,[-1]]],104,[]],[[[463,[-1,-2]]],[[161,[-1]]],104,[]],[[[462,[-1,-2]]],[[161,[-1]]],[104,[20,[],[[19,[]]]]],[]],[[[453,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[451,[-1,-2]]],[[397,[-1,-2]]],104,[]],[459,458],[[[463,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[453,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[451,[-1,-2]]],[[397,[-1,-2]]],104,[]],[459,458],[[[463,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],0,0,0,0,0,0,0,0,0,[[[401,[-1,-2]]],[[161,[-1]]],104,[]],[[[463,[-1,-2]]],[[161,[-1]]],104,[]],[[[462,[-1,-2]]],[[161,[-1]]],[104,[20,[],[[19,[]]]]],[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],104,[]],[[[453,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[451,[-1,-2]]],[[397,[-1,-2]]],104,[]],[459,458],[[[463,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],0,0,0,0,0,[[[463,[-1,-2]]],[[161,[-1]]],104,[]],[[],[[401,[-1,-2]]],469,[]],[[],[[463,[-1,-2]]],469,[]],[[],[[452,[-1,-2]]],469,[]],[[],[[376,[-1,-2]]],469,[]],[[],[[376,[-1,-2]]],469,[]],[[],[[453,[-1,-2]]],469,[]],[[],[[453,[-1,-2]]],469,[]],[[],[[462,[-1,-2]]],469,[]],[[],[[455,[-1,-2]]],469,[]],[[],[[436,[-1,-2]]],469,[]],[[],[[436,[-1,-2]]],469,[]],[[],[[450,[-1,-2]]],469,[]],[[],[[450,[-1,-2]]],469,[]],[[],[[397,[-1,-2]]],469,[]],[[],[[397,[-1,-2]]],469,[]],[[],[[451,[-1,-2]]],469,[]],[[],[[451,[-1,-2]]],469,[]],0,[[],-1,[]],[[420,420],5],[[420,420,-1],5,[]],[[-1,-1],-1,212],[[-1,-1],-1,212],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[466,466],[471,471],[[],467],[472,472],[[],469],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[416,[-1]],-1],[[474,[-1]]],409],[[[430,[-1]]],[[63,[[376,[-1,348]]]]],409],[[[431,[-1]]],[[63,[-1]]],409],[[[430,[-1]]],[[22,[56,[63,[56]]]]],409],[[[431,[-1]]],[[22,[56,[63,[56]]]]],409],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,[[[413,[],[[412,[-1]]]],-1],[[413,[],[[412,[-1]]]]],409],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[413,[],[[412,[-1]]]],-1],[[413,[],[[412,[-1]]]]],409],[[[413,[],[[412,[-1]]]],-1],[[397,[-1,348]]],409],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[413,[],[[412,[-1]]]]],[[413,[],[[412,[-1]]]]],409],[[[413,[],[[412,[-1]]]],-1,177],22,409],[[[413,[],[[412,[-1]]]]],[[376,[-1,348]]],409],[[[413,[],[[412,[-1]]]],-1],[[376,[-1,348]]],409],[[[413,[],[[412,[-1]]]],-1],[[22,[[413,[],[[412,[-1]]]],[413,[],[[412,[-1]]]]]]],409],[[[413,[],[[412,[-1]]]],[161,[-1]]],[[413,[],[[412,[-1]]]]],409],[[[413,[],[[412,[-1]]]]],[[376,[-1,348]]],409],[[395,[376,[-1,348]]],[[376,[-1,348]]],[]],[[395,[397,[-1,348]]],[[397,[-1,348]]],[]],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[413,[],[[412,[-1]]]],-1],-1,409],[[-1,-1,-1,-1],[[424,[-1]]],409],[[[397,[-1,348]],[397,[-1,348]]],-1,409],[[[376,[-1,348]],[376,[-1,348]],[376,[-1,348]]],-1,409],[[-1,-1],[[22,[-1,-1]]],60],[[[397,[-1,348]]],[[397,[-1,348]]],409],[[[397,[-1,348]]],[[397,[-1,348]]],60],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[475,[-1]]],[[126,[],[[32,[[376,[30,348]]]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[[476,30],[[477,[476]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[30,-1],[[477,[-1]]],[[126,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]]],[[-1,-2],[[478,[-2,-1]]],[[395,[30]]],[[126,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]]],[[5,-1],[[475,[-1]]],[[126,[],[[32,[[376,[30,348]]]]]]]],[[[393,[-1]]],[[63,[[365,[[376,[30,348]],[376,[30,348]]]]]]],[[126,[],[[32,[[365,[[22,[[376,[30,348]],[98,[30]]]],[376,[30,348]]]]]]]]]],[[[477,[-1]]],[[63,[[365,[[376,[30,348]],[376,[30,348]]]]]]],[[126,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]]],[[[478,[-1,-2]]],[[63,[[365,[[376,[30,348]],[376,[30,348]]]]]]],[[126,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]],[[395,[30]]]],[[[475,[-1]]],[[63,[[365,[[376,[30,348]],[376,[30,348]]]]]]],[[126,[],[[32,[[376,[30,348]]]]]]]],[-1,[[475,[-1]]],[[126,[],[[32,[[376,[30,348]]]]]]]],[[[477,[-1]]],[[22,[56,[63,[56]]]]],[[126,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]]],[[476,-1],[[478,[476,-1]]],[[395,[30]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[393,[-1]]],-1,[[126,[],[[32,[[365,[[22,[[376,[30,348]],[98,[30]]]],[376,[30,348]]]]]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[30,30],[[376,[30,348]]]],0,[[30,30],[[436,[30,348]]]],[[30,30],[[397,[30,348]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[360,[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[98,[30]]],358],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[360,347],[363,347],[363,347],[360,360],[363,363],[384,384],[389,389],[381,381],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[360,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[],360],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[360,5],22],[[363,5],22],[[363,5],22],[[360,[98,[355]]],22],[[363,[98,[355]]],22],[[381,72],[[74,[22,73]]]],[[389,30,-1],22,[[177,[[365,[[22,[[376,[30,348]],[98,[30]]]],[376,[30,348]]]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[392,347],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[360,[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[98,[30]]],358],[[],360],[56,363],[392,63],[384,[[63,[[365,[[376,[30,348]],[376,[30,348]]]]]]]],[389,63],[381,[[63,[[365,[358,373]]]]]],[360,56],[363,56],[363,56],[389,384],[[360,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[360,56,56],22],[[363,56,56],22],[[363,56,56],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[56,56],360],[360,[[394,[360]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[362,[376,[30,348]],[98,[30]]],358],[[362,[376,[30,348]]],358],[[479,[376,[30,348]],[98,[30]]],358],[[479,[376,[30,348]],[98,[30]]],358],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[362,56],[362,56],[479,56],[479,56],[386,386],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[362,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[362,[376,[30,348]],[376,[30,348]],[376,[30,348]]],358],[[479,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[479,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[[362,5],22],[[362,5],22],[[479,5],22],[[479,5],22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[362,[376,[30,348]]],358],[[362,[376,[30,348]],[98,[30]]],358],[[479,[376,[30,348]],[98,[30]]],358],[[479,[376,[30,348]],[98,[30]]],358],[[356,56],479],[386,[[63,[355]]]],[386,[[63,[355]]]],[362,56],[479,56],[[362,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[362,[376,[30,348]],[376,[30,348]]],358],[[479,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[479,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[362,56,56],22],[[362,56,56],22],[[479,56,56],22],[[479,56,56],22],[386,[[22,[56,[63,[56]]]]]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[362,56],479],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[388,388],[[[387,[-1]]],[[387,[-1]]],48],[[[390,[-1]]],[[390,[-1]]],48],[382,382],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[161,[58]],5],382],[388,[[63,[[365,[358,373]]]]]],[[[387,[-1]]],[[63,[[365,[-1,22]]]]],[]],[[[390,[-1]]],[[63,[[365,[[376,[30,348]],[376,[30,348]]]]]]],380],[382,[[63,[[365,[358,373]]]]]],[-1,[[480,[-2]]],[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,[[396,[376,[30,348]],30,372,[98,[30]]],22],[[396,[376,[30,348]],[397,[30,348]],[398,[30]],372,[98,[30]]],22],[[396,[399,[30]],[98,[30]]],[[22,[358,358]]]],[[396,[376,[30,348]],[98,[30]]],358],[[396,[366,[[376,[30,348]]]],[98,[30]]],22],[[400,[366,[[376,[30,348]]]]],22],[[396,[401,[30,348]],372,[98,[30]]],22],[[396,[401,[30,348]],402,372,[98,[30]]],22],[[400,[397,[30,348]],[398,[30]],364,[376,[30,348]]],22],[[396,[376,[30,348]],[98,[30]]],358],[[[406,[],[[405,[-1]]]]],-1,[]],[400,22],[396,22],[[396,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]],[376,[30,348]],[376,[30,348]]],22],[[396,5],22],[[396,[365,[[22,[[376,[30,348]],[98,[30]]]],[376,[30,348]]]]],22],[[396,30],[[403,[396]]]],[[476,30],[[477,[476]]]],[[400,30],22],[[396,[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]]],22],[[400,[376,[30,348]]],22],[396,56],[[396,[365,[[376,[30,348]],[376,[30,348]]]],[98,[30]]],22],[[396,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]],[376,[30,348]]],22],[[400,[397,[30,348]],[398,[30]],364,[397,[30,348]]],22],[[400,[397,[30,348]],[397,[30,348]],[397,[30,348]]],22],[[400,30],22],[[400,[397,[30,348]]],22],[[400,[397,[30,348]]],22],[[400,[397,[30,348]],[397,[30,348]]],22],[[400,30],22],[[396,56,56],22],[[400,56,56],22],[[400,[376,[30,348]],[376,[30,348]]],22],[[400,[376,[30,348]]],22],[[400,[397,[30,348]],[397,[30,348]]],22],[[400,[397,[30,348]]],22],[[396,-1],[[404,[396,-1]]],[[395,[30]]]],[[476,-1],[[478,[476,-1]]],[[395,[30]]]],[[400,30],22],[396,[[394,[396]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[270,[],[[190,[-1]]]],-1,5],14,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,14],[[[313,[-1]]],[[313,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[[313,[-1]],[313,[-1]]],5,67],[[14,72],[[74,[22,73]]]],[[[313,[-1]],72],[[74,[22,73]]],78],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[270,[],[[190,[-1]]]],-1,5],14,55],0,[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-2,[[3,[51]]],77,[[33,[],[[32,[-1]]]]]],[[[280,[-1]]],[[280,[-1]]],48],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[[280,[-1]],72],[[74,[22,73]]],78],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[3,[-1]]],[[280,[-1]]],[77,48]],[[-2,-4,120],[[0,[[126,[],[[32,[-1]]]]]]],[],[[33,[],[[32,[-1]]]]],[[145,[120]]],[[33,[],[[32,[-3]]]]]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[[[3,[-1]],[63,[-1]]],[[280,[-1]]],[77,48]],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[263,[],[[190,[-1]]]],-1],25,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[25,25],[182,182],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],25],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,25,21],22,127],[56,22],[56,22],[[182,182],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[25,72],[[74,[22,73]]]],[[182,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[182,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[133,45,45,30,30,46,80,81,-1],132,[[54,[133],[[19,[132]]]]]],[-1,182,[[68,[[99,[120]]]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],182],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[182,[[1,[[63,[21]]]]]],[[25,-1],25,[[68,[42]]]],[[25,-1,-2],25,[[68,[43]]],[[68,[47]]]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[57,57],[62,62],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[57,142],[[],62],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,123,-1,44,62],22,[48,92],[[144,[],[[143,[-1]]]]]],[[[481,[-1]],125,-2,-3,130,123,131,21],22,[48,92],[[144,[],[[143,[-1]]]]],[]],[56,22],[56,22],[56,22],[[57,57],5],[[62,62],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[57,72],[[74,[22,73]]]],[[62,72],[[74,[22,73]]]],[-1,-1,[]],[-1,57,[[68,[310]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,57,[[145,[[98,[83]]]],107,102]],[-1,57,[[68,[310]]]],[[58,58,-1],57,[[145,[[98,[83]]]],107,102]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[57,-1],22,91],[[62,-1],22,91],[[[481,[-1]],-2],[[481,[-1]]],[],[[68,[45]]]],[57,90],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,133,-1,45,45,44],132,[],[[144,[],[[143,[-1]]]]]],[[[481,[-1]],125,-2,133],132,[48,92],[[144,[],[[143,[-1]]]]]],[[[481,[-1]],30],[[481,[-1]]],[]],[[[481,[-1]],30],[[481,[-1]]],[]],[[[481,[-1]],125,123,131,21,-2],134,[48,92],[[144,[],[[143,[-1]]]]]],[-1,[[481,[-1]]],[]],[[[481,[-1]],125,38,123,131,-2,135,[122,[-3]],21],136,[48,92],[[144,[],[[143,[-1]]]]],[]],[[[481,[-1]],-2],[[481,[-1]]],[],[[68,[47]]]],[[[481,[-1]],30],[[481,[-1]]],[]],[[[481,[-1]]],[[50,[45]]],[48,92]],[[[481,[-1]]],139,[48,92]],[[[481,[-1]]],140,[48,92]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,[-1,[[481,[-1]]],[]],[[[481,[-1]],-2],[[481,[-1]]],[],[[68,[45]]]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[482,482],[[-1,-2],22,[],[]],[-1,-2,[],[]],[[],482],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[482,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[-1,482,50],50,144],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[482,5],[[],482],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[315,[-1,-2,-3,-4]],36],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[315,[-1,-2,-3,-4]]],[[3,[125]]],[104,67],[],[],127],0,[-1,-2,[],[]],[[],[[315,[-1,-2,-3]]],[104,67],[],127],[56,-1,[]],[56,-1,[]],[[[315,[-1,-2,-3,-4]],125],22,[104,67],[],[],127],[-1,-2,[],[]],[[[315,[-1,-2,-3,-4]],125,-4,-3,130,123,131,21],22,[104,67],[],[],127],[56,22],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[315,[-1,-2,-3,-4]],-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[45]]]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[315,[-1,-2,-3,-4]],125,-4,133],132,[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[47]]]],[[[315,[-1,-2,-3,-4]],125,123,131,21,-4],134,[104,67],[],[],127],[[],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],125,38,123,131,-4,135,[122,[-2]],21],136,[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],125,123,-4,119],22,[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],125,123,-4],[[63,[[137,[-2,-3,-4]]]]],[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[46]]]],[[[315,[-1,-2,-3,-4]],-1,-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[[147,[-2,-3,-4]]]]]],[[[315,[-1,-2,-3,-4]]],[[50,[45]]],[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[47]]]],[[[315,[-1,-2,-3,-4]]],139,[104,67],[],[],127],[[[315,[-1,-2,-3,-4]]],140,[104,67],[],[],127],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[[[315,[-1,-2,-3,-4]],-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[45]]]],[-5,[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[33,[],[[32,[[22,[-1,[147,[-2,-3,-4]]]]]]]]]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[219,[],[[190,[-1]]]],-1],29,[55,48]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[29,29],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],483],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[[29,72],[[74,[22,73]]]],[[483,72],[[74,[22,73]]]],[[[484,[-1,-2,-3,-4]],-5],[[484,[-1,-2,-3,-4]]],[288,48],[],[219,263,229],168,68],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[483,[98,[-1]],[63,[56]],-3,[63,[100]]],[[484,[-1,-2,-4,-5]]],[288,48],[],[[177,[-1],[[19,[-2]]]]],[219,263,229],168],[[],483],[[[484,[-1,-2,-3,-4]],17,30],[[137,[-2,-3,-4]]],[288,48],[],[219,263,229],168],[[[484,[-1,-2,-3,-4]],-5],[[484,[-1,-2,-3,-4]]],[288,48],[],[219,263,229],168,[[68,[46]]]],0,0,[[[484,[-1,-2,-3,-4]],-5],[[484,[-1,-2,-3,-4]]],[288,48],[],[219,263,229],168,68],0,[[[484,[-1,-2,-3,-4]],-5],[[484,[-1,-2,-3,-4]]],[288,48],[],[219,263,229],168,[[68,[171]]]],[[[484,[-1,-2,-3,-4]],185],[[484,[-1,-2,-3,-4]]],[288,48],[],[219,263,229],168],[[[484,[-1,-2,-3,-4]],-5],[[484,[-1,-2,-3,-4]]],[288,48],[],[219,263,229],168,[[68,[47]]]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[484,[-1,-2,-3,-4]],30],[[484,[-1,-2,-3,-4]]],[288,48],[],[219,263,229],168],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[316,[-1]],317,485],[[63,[317]]],[]],[[[486,[-1,-2,-3]]],[[486,[-1,-2,-3]]],[],263,127],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[487,123,17],5],[[[318,[-1,-2,-3]],123,17],5,[],263,127],[93,93],[94,94],[488,488],[[[489,[-1]]],[[489,[-1]]],48],[485,485],[490,490],[317,317],[491,491],[[[316,[-1]]],[[316,[-1]]],48],[324,324],[492,492],[493,493],[494,494],[325,325],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[316,[-1]],317],[[63,[[22,[-1,317]]]]],[]],[[317,317],109],[[491,491],109],0,[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[486,[-1,-2,-3]],-4],[[486,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[[],493],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[495,490,123,131,-1,-2,130,21,30,[63,[30]],-4,-5],22,127,276,[],[[126,[],[[32,[[22,[317,-3]]]]]]],[[100,[-3,-1,130,123,131,21]]]],[[[318,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],263,127],[[[486,[-1,-2,-3]],125,-3,-2,130,123,131,21,5],22,[],263,127],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[316,[-1]],317,492],22,[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[94,94],5],[[488,488],5],[[485,485],5],[[317,317],5],[[491,491],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[93,72],[[74,[22,73]]]],[[94,72],[[74,[22,73]]]],[[488,72],[[74,[22,73]]]],[[[489,[-1]],72],[[74,[22,73]]],78],[[485,72],[[74,[22,73]]]],[[490,72],[[74,[22,73]]]],[[317,72],[[74,[22,73]]]],[[491,72],[[74,[22,73]]]],[[[316,[-1]],72],[[74,[22,73]]],78],[[324,72],[[74,[22,73]]]],[[492,72],[[74,[22,73]]]],[[493,72],[[74,[22,73]]]],[[494,72],[[74,[22,73]]]],[[325,72],[[74,[22,73]]]],[[[496,[-1]],72],[[74,[22,73]]],78],[-1,-1,[]],[-1,-1,[]],[-4,[[318,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[316,[-1]],317],[[63,[-1]]],[]],[[[316,[-1]],317],[[63,[-1]]],[]],[[488,-1],22,91],[[490,-1],22,91],[[317,-1],22,91],[[491,-1],22,91],[[[276,[],[[190,[-1]]]],-1],93,55],[[[276,[],[[190,[-1]]]],-1],[[63,[94]]],55],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[316,[-1]]],5,[]],[[[486,[-1,-2,-3]],123,17],5,[],263,127],[[[316,[-1]]],[[0,[[126,[],[[32,[[22,[317,-1]]]]]]]]],[]],[[[496,[-1]]],[[95,[126]]],[]],[[[316,[-1]]],[[0,[[126,[],[[32,[[22,[317,-1]]]]]]]]],[]],[[125,-1,133,490,45,45,30,-3,-4],132,[],[],[[126,[],[[32,[[22,[317,-2]]]]]]],[[100,[-2,125,-1,133],[[19,[132]]]]]],[[[316,[-1]]],490,[]],[[[496,[-1]]],490,[]],[[[316,[-1]]],56,[]],[[[316,[-1]],317],22,[]],[[[316,[-1]]],[[63,[317]]],[]],[[495,490,123,131,30,[63,[30]]],[[63,[134]]]],[[[316,[-1]],317,494],22,[]],[-4,[[318,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[-4,[[486,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[-1,[[22,[[316,[-1]],317]]],[]],[[[486,[-1,-2,-3]],-4],[[486,[-1,-2,-3]]],[],263,127,[[68,[46]]]],[[490,30,50],[[497,[317,21]]]],0,[[317,317],[[63,[109]]]],[[491,491],[[63,[109]]]],[[[276,[],[[190,[-1]]]],-1],[[63,[94]]],55],0,[[[316,[-1]],491,30],22,[]],[[[316,[-1]]],22,[]],[[488,21,30,30],[[22,[21,21]]]],[[[316,[-1]],488,317,-1],[[63,[[22,[317,491]]]]],[]],0,[[488,21,30,30],21],[[490,30,50],[[497,[491,[22,[488,21,30]]]]]],[[[316,[-1]],317,317,493],22,[]],[490,[[0,[[126,[],[[32,[491]]]]]]]],0,[[[318,[-1,-2,-3]],-4],[[318,[-1,-2,-3]]],[],263,127,68],[[[486,[-1,-2,-3]],-4],[[486,[-1,-2,-3]]],[],263,127,68],[[[316,[-1]],317,317],22,[]],[[[318,[-1,-2,-3]],[486,[-1,-2,-3]]],[[318,[-1,-2,-3]]],[],263,127],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[495,490,38,123,131,[122,[-1]],30,-3,[63,[[95,[100]]]],[63,[[95,[100]]]],[63,[[22,[30,[95,[100]]]]]]],136,[],487,[[126,[],[[32,[[22,[317,-2]]]]]]]],0,[-2,[[316,[-1]]],[],[[68,[[489,[-1]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[495,[[63,[[22,[317,17]]]]]],[498,498],[495,495],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[495,495],5],[[498,72],[[74,[22,73]]]],[[495,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[499,[317,-1]],[489,[-1]],56],498,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[498,490],0,[495,[[63,[[22,[317,17]]]]]],[495,[[63,[[22,[491,488]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[289,[],[[190,[-1]]]],-1],11,[55,48]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[11,11],[[[311,[-1]]],[[311,[-1]]],48],[[[500,[-1]]],[[500,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[501,[-1]]],164],[[],[[311,[-1]]],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2,123,131,46,[63,[47]],171,185,[63,[120]],[63,[-3]],311,-4,21],22,168,289,288,[[54,[],[[19,[501]]]]]],[56,22],[56,22],[56,22],[56,22],[[[311,[-1]],[311,[-1]]],5,67],[[[500,[-1]],[500,[-1]]],5,67],[[11,72],[[74,[22,73]]]],[[[501,[-1]],72],[[74,[22,73]]],[78,164]],[[[311,[-1]],72],[[74,[22,73]]],78],[[[500,[-1]],72],[[74,[22,73]]],78],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[289,[],[[190,[-1]]]],-1],11,[55,48]],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[501,-1,133,45,46,[63,[47]],171,185,63,[63,[120]],[98,[-2]]],132,168,288],0,[[123,131],134],[[123,501,46,[63,[47]],185,[98,[-1]],100],[[63,[[137,[-2,-3,-4]]]]],[48,288],[],[289,229,219,263],168],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[38,123,131,[122,[-1]],100,[63,[-2]],[98,[-2]],-4],136,[],[67,48],164,[[54,[],[[19,[[501,[-3]]]]]]]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[291,[],[[190,[-1]]]],-1],27,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[27,27],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[27,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[502,502],[503,503],[504,504],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[[502,502],5],[[503,503],5],[[504,504],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[323,72],[[74,[22,73]]]],[[502,72],[[74,[22,73]]]],[[503,72],[[74,[22,73]]]],[[504,72],[[74,[22,73]]]],[[504,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[505,504],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[323,504]]],[[145,[[98,[83]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[-1,503],[[74,[323,504]]],[[145,[[98,[83]]]]]],[[-1,502,503],[[74,[323,504]]],[[145,[[98,[83]]]]]],0,0,0,0,[[[293,[],[[190,[-1]]]],-1,5],6,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[6,6],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],0,[-1,-2,[],[]],[56,22],[[6,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[293,[],[[190,[-1]]]],-1,5],6,55],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[295,[],[[190,[-1]]]],-1],28,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[28,28],[506,506],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[506,30],[[22,[30,30]]]],0,[[28,72],[[74,[22,73]]]],[[506,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[326,187],[326,187],[[[229,[],[[190,[-1]]]],-1],7,55],[[[229,[],[[190,[-1]]]],-1],7,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[507,508],507],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[326,21],[7,7],[509,509],[187,187],[188,188],[286,286],[507,507],[508,508],[181,181],[510,510],[326,326],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[326,21],[[],187],[[],188],[[],286],[[],507],[[],508],[[],510],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[229,[],[[190,[-1]]]],-1],7,55],[[[229,[],[[190,[-1]]]],-1],7,55],[[510,-1,-2,123,131,286,-3],22,127,229,[[54,[-1,123,131,21]]]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[187,187],5],[[188,188],5],[[286,286],5],[[507,507],5],[[508,508],5],[[181,181],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[7,72],[[74,[22,73]]]],[[509,72],[[74,[22,73]]]],[[187,72],[[74,[22,73]]]],[[188,72],[[74,[22,73]]]],[[286,72],[[74,[22,73]]]],[[507,72],[[74,[22,73]]]],[[508,72],[[74,[22,73]]]],[[181,72],[[74,[22,73]]]],[[510,72],[[74,[22,73]]]],[[326,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[181,-1],22,91],[286,[[63,[507]]]],[[[229,[],[[190,[-1]]]],-1,5],7,55],[[[229,[],[[190,[-1]]]],-1,5],7,55],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,133,45,45,286,-2],132,[],[[54,[-1,133],[[19,[132]]]]]],[[507,-1],507,[[68,[47]]]],[[510,123,131,286,-1],134,[[54,[123,131,21],[[19,[134]]]]]],[[],507],[-1,181,[[68,[[99,[120]]]]]],[[],510],[326,188],[[510,18,286,21,21],22],[[181,187],[[1,[-1]]],[]],[[510,187],22],[[510,187],22],[[510,30,21,21],22],[[510,30,21,21],22],0,[[507,-1],507,[[68,[47]]]],[510,5],[[181,188],[[1,[-1]]],[]],[[510,188],22],[[510,188],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],181],[[510,21,21],22],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[510,38,123,131,135,[122,[-1]],286,[63,[[95,[100]]]],-2],136,[],[[54,[38,123,131,135,[122,[-1]],21],[[19,[136]]]]]],[286,[[63,[507]]]],[[507,-1],507,[[68,[47]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[511,511],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],512],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[307,[],[[327,[-1]],[513,[-2]]]],-1,131,21],-2,55,65],[56,22],[56,22],[[511,511],5],[[512,72],[[74,[22,73]]]],[[511,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[512,[[63,[-1]]],[]],[512,[[63,[-1]]],[]],[512,5],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[307,[],[[327,[-1]],[513,[-2]]]],-1,21,131],134,55,65],[[65,514,515,516,21,[50,[58]],30,512],22],[[65,512,517,[50,[58]],[21,[58]],518],22],[[512,-1],22,107],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[307,[],[[327,[-1]],[513,[-2]]]],-1,511,21,131,[122,[-3]]],[[22,[136,[63,[-3]]]]],55,65,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[514,514],0,0,0,[[],519],[[],520],[[],521],[[],522],[[],523],[[],524],[[],525],[[],526],[[],527],[[],528],[[],520],[[],520],0,0,0,0,0,0,[[],5],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[529,530],[529,531],[[532,-2],[[63,[-1]]],[],[[54,[63],[[19,[-1]]]]]],[533,63],[[534,-2],-1,[],[[54,[63],[[19,[-1]]]]]],[[515,-2],[[63,[-1]]],[],[[54,[63],[[19,[-1]]]]]],[[535,-1],22,[[54,[63]]]],[535,[[536,[535]]]],[537,[[98,[83]]]],[538,[[98,[83]]]],[539,[[98,[83]]]],0,0,0,0,0,0,[[514,540],[[63,[514]]]],0,0,0,0,0,0,0,0,0,[[518,541],542],[[543,58],22],[[543,544,58],22],[[542,544,58],22],[[518,545],543],0,0,0,0,0,0,[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],[519,58],[519,58],[520,90],[520,90],[521,58],[521,58],[522,58],[522,58],[523,58],[523,58],[524,58],[524,58],[525,58],[525,58],[526,58],[526,58],[527,58],[527,58],[528,83],[528,83],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],0,[[514,[63,[540]]],[[63,[58]]]],[514,[[22,[58,58]]]],[[514,[63,[540]]],[[63,[58]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[[546,546],5],[[546,546,5,-1],22,[[177,[120,90,90]]]],0,[[518,529,90,[63,[90]]],22],[[518,535,547],22],[548,548],[549,549],[519,519],[[[550,[-1]]],[[550,[-1]]],48],[520,520],[521,521],[546,546],[551,551],[522,522],[552,552],[553,553],[554,554],[523,523],[555,555],[556,556],[[[557,[-1]]],[[557,[-1]]],[]],[558,558],[559,559],[560,560],[561,561],[562,562],[563,563],[564,564],[565,565],[566,566],[567,567],[568,568],[569,569],[524,524],[570,570],[571,571],[572,572],[573,573],[574,574],[530,530],[575,575],[514,514],[531,531],[[[576,[-1]]],[[576,[-1]]],48],[577,577],[[[578,[-1]]],[[578,[-1]]],48],[579,579],[580,580],[581,581],[525,525],[582,582],[583,583],[584,584],[585,585],[586,586],[545,545],[587,587],[588,588],[589,589],[[[590,[-1]]],[[590,[-1]]],48],[591,591],[592,592],[593,593],[594,594],[541,541],[595,595],[596,596],[597,597],[598,598],[599,599],[600,600],[601,601],[602,602],[603,603],[604,604],[605,605],[606,606],[607,607],[608,608],[609,609],[610,610],[526,526],[611,611],[612,612],[527,527],[613,613],[614,614],[615,615],[616,616],[617,617],[618,618],[540,540],[619,619],[620,620],[621,621],[[[622,[-1]]],[[622,[-1]]],48],[623,623],[624,624],[625,625],[626,626],[627,627],[628,628],[629,629],[630,630],[[[631,[-1]]],[[631,[-1]]],48],[[[536,[-1]]],[[536,[-1]]],48],[632,632],[[[633,[-1]]],[[633,[-1]]],48],[547,547],[634,634],[635,635],[528,528],[636,636],[637,637],[638,638],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[551,551],109],[[522,522],109],[[552,552],109],[[613,613],109],0,0,0,0,0,[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],0,0,0,0,[555,615],[519,519],[520,520],[521,521],[522,522],[523,523],[524,524],[525,525],[526,526],[527,527],[528,528],[[],522],[514,83],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[514,540],83],[[532,515,[639,[[3,[514]]]]],22],0,0,[[519,519],5],[[520,520],5],[[521,521],5],[[522,522],5],[[523,523],5],[[524,524],5],[[525,525],5],[[526,526],5],[[527,527],5],[[528,528],5],[519,5],[520,5],[522,5],[523,5],[524,5],[525,5],[526,5],[527,5],[528,5],[[518,529,90,529,90,90],22],[[518,[631,[529]],[536,[535]],618],22],[[518,[536,[535]],[631,[529]],618],22],[[518,[536,[535]],[536,[535]],618],22],0,0,0,[[533,[640,[-1]]],534,641],[[515,586],642],[[515,598],643],[[515,[644,[[63,[120]]]]],529],[[515,[644,[[63,[120]]]]],529],[[515,645],529],[[515,[646,[[63,[120]]]]],518],[[515,596],647],[[534,[648,[-1]],[649,[[63,[120]]]],[63,[650]]],[[74,[[22,[515,516]],604]]],641],[[515,583],651],[[515,[652,[[63,[120]]]]],544],[[515,600],653],[[515,591],654],[[515,584],655],[[515,572],656],[[515,657],656],[[515,572],656],[[533,-1],[[74,[532,605]]],[[68,[658]]]],[[533,659],[[74,[532,605]]]],[[515,[660,[[63,[120]],[98,[514]]]]],535],[[515,[660,[[63,[120]],[98,[514]]]]],535],[[515,516,[660,[[63,[120]],[98,[514]]]],661,[98,[83]]],535],[[535,582],517],0,[[],521],[[],549],[[],519],[[],[[550,[-1]]],[]],[[],520],[[],521],[[],546],[[],551],[[],555],[[],558],[[],559],[[],562],[[],563],[[],566],[[],533],[[],567],[[],569],[[],[[576,[-1]]],55],[[],577],[[],[[578,[-1]]],55],[[],525],[[],582],[[],583],[[],584],[[],545],[[],592],[[],594],[[],541],[[],597],[[],599],[[],600],[[],601],[[],606],[[],611],[[],612],[[],662],[[],614],[[],617],[[],618],[[],540],[[],619],[[],620],[[],[[622,[-1]]],55],[[],624],[[],625],[[],626],[[],547],[[],636],[[],637],[[],663],0,0,0,[535,58],0,0,0,0,0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[537],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[539,[[98,[83]]]],[56,-1,[]],[56,-1,[]],[538],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[537],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[538],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,[515,22],[529,22],[535,22],0,0,[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[535,615],0,0,[[542,58,58,58],22],[[542,529,90],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],546],[[],546],[[543,[161,[58]],[161,[58]]],22],[[543,[161,[58]],[161,[58]]],22],[[653,[161,[58]],[161,[58]]],22],[[653,[161,[58]],[161,[58]]],22],[[543,[161,[58]],446,[161,[58]]],22],[[543,[161,[58]],446,[161,[58]]],22],[[653,[161,[58]],446,[161,[58]]],22],[[653,[161,[58]],446,[161,[58]]],22],[[543,529,90],22],[[543,529,90],22],[[653,529,90],22],[[653,529,90],22],[[543,529,90],22],[[543,529,90],22],[[653,529,90],22],[[653,529,90],22],0,0,[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[532,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[537,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[534,22],[515,22],[56,22],[56,22],[56,22],[56,22],[529,22],[56,22],[56,22],[56,22],[535,22],[517,22],[56,22],[655,22],[56,22],[643,22],[56,22],[56,22],[642,22],[56,22],[656,22],[56,22],[56,22],[56,22],[651,22],[56,22],[654,22],[56,22],[647,22],[56,22],[664,22],[56,22],[518,22],[56,22],[543,22],[56,22],[542,22],[56,22],[56,22],[56,22],[56,22],[56,22],[665,22],[56,22],[544,22],[56,22],[516,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[666,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[539,22],[56,22],[538,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,0,[[],519],[[],520],[[],521],[[],522],[[],523],[[],524],[[],525],[[],526],[[],527],[[],528],[543,22],0,0,[543,22],[542,22],0,0,0,0,0,[[533,519],[[3,[534]]]],[[548,548],5],[[549,549],5],[[519,519],5],[[[550,[-1]],[550,[-1]]],5,67],[[520,520],5],[[521,521],5],[[546,546],5],[[551,551],5],[[522,522],5],[[552,552],5],[[553,553],5],[[554,554],5],[[523,523],5],[[555,555],5],[[556,556],5],[[[557,[-1]],[557,[-1]]],5,[]],[[558,558],5],[[559,559],5],[[560,560],5],[[561,561],5],[[562,562],5],[[563,563],5],[[564,564],5],[[565,565],5],[[566,566],5],[[567,567],5],[[569,569],5],[[524,524],5],[[573,573],5],[[574,574],5],[[575,575],5],[[514,514],5],[[[576,[-1]],[576,[-1]]],5,67],[[577,577],5],[[[578,[-1]],[578,[-1]]],5,67],[[525,525],5],[[582,582],5],[[584,584],5],[[587,587],5],[[592,592],5],[[594,594],5],[[595,595],5],[[597,597],5],[[599,599],5],[[600,600],5],[[601,601],5],[[602,602],5],[[603,603],5],[[606,606],5],[[607,607],5],[[608,608],5],[[609,609],5],[[610,610],5],[[526,526],5],[[611,611],5],[[612,612],5],[[527,527],5],[[613,613],5],[[614,614],5],[[615,615],5],[[616,616],5],[[617,617],5],[[618,618],5],[[540,540],5],[[619,619],5],[[620,620],5],[[621,621],5],[[[622,[-1]],[622,[-1]]],5,67],[[623,623],5],[[625,625],5],[[626,626],5],[[627,627],5],[[628,628],5],[[629,629],5],[[630,630],5],[[632,632],5],[[547,547],5],[[634,634],5],[[528,528],5],[[637,637],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[543,-1],22,[[33,[],[[32,[665]]]]]],[[519,-1],22,[[33,[],[[32,[519]]]]]],[[520,-1],22,[[33,[],[[32,[520]]]]]],[[521,-1],22,[[33,[],[[32,[521]]]]]],[[522,-1],22,[[33,[],[[32,[522]]]]]],[[523,-1],22,[[33,[],[[32,[523]]]]]],[[524,-1],22,[[33,[],[[32,[524]]]]]],[[525,-1],22,[[33,[],[[32,[525]]]]]],[[526,-1],22,[[33,[],[[32,[526]]]]]],[[527,-1],22,[[33,[],[[32,[527]]]]]],[[528,-1],22,[[33,[],[[32,[528]]]]]],0,[534,520],[515,520],[518,664],[[653,[667,[[63,[120]]]]],665],0,0,0,[[548,72],[[74,[22,73]]]],[[549,72],[[74,[22,73]]]],[[519,72],[[74,[22,73]]]],[[519,72],[[74,[22,73]]]],[[519,72],[[74,[22,73]]]],[[519,72],[[74,[22,73]]]],[[519,72],[[74,[22,73]]]],[[[550,[-1]],72],[[74,[22,73]]],78],[[520,72],[[74,[22,73]]]],[[520,72],[[74,[22,73]]]],[[520,72],[[74,[22,73]]]],[[520,72],[[74,[22,73]]]],[[520,72],[[74,[22,73]]]],[[521,72],[[74,[22,73]]]],[[521,72],[[74,[22,73]]]],[[521,72],[[74,[22,73]]]],[[521,72],[[74,[22,73]]]],[[521,72],[[74,[22,73]]]],[[546,72],[[74,[22,73]]]],[[551,72],[[74,[22,73]]]],[[522,72],[[74,[22,73]]]],[[522,72],[[74,[22,73]]]],[[522,72],[[74,[22,73]]]],[[522,72],[[74,[22,73]]]],[[522,72],[[74,[22,73]]]],[[532,72],[[74,[22,73]]]],[[552,72],[[74,[22,73]]]],[[553,72],[[74,[22,73]]]],[[554,72],[[74,[22,73]]]],[[523,72],[[74,[22,73]]]],[[523,72],[[74,[22,73]]]],[[523,72],[[74,[22,73]]]],[[523,72],[[74,[22,73]]]],[[523,72],[[74,[22,73]]]],[[555,72],[[74,[22,73]]]],[[556,72],[[74,[22,73]]]],[[[557,[-1]],72],[[74,[22,73]]],[]],[[558,72],[[74,[22,73]]]],[[559,72],[[74,[22,73]]]],[[560,72],[[74,[22,73]]]],[[561,72],[[74,[22,73]]]],[[562,72],[[74,[22,73]]]],[[563,72],[[74,[22,73]]]],[[564,72],[[74,[22,73]]]],[[565,72],[[74,[22,73]]]],[[566,72],[[74,[22,73]]]],[[533,72],[[74,[22,73]]]],[[567,72],[[74,[22,73]]]],[[534,72],[[74,[22,73]]]],[[515,72],[[74,[22,73]]]],[[568,72],[[74,[22,73]]]],[[569,72],[[74,[22,73]]]],[[529,72],[[74,[22,73]]]],[[524,72],[[74,[22,73]]]],[[524,72],[[74,[22,73]]]],[[524,72],[[74,[22,73]]]],[[524,72],[[74,[22,73]]]],[[524,72],[[74,[22,73]]]],[[570,72],[[74,[22,73]]]],[[535,72],[[74,[22,73]]]],[[517,72],[[74,[22,73]]]],[[655,72],[[74,[22,73]]]],[[643,72],[[74,[22,73]]]],[[642,72],[[74,[22,73]]]],[[656,72],[[74,[22,73]]]],[[571,72],[[74,[22,73]]]],[[572,72],[[74,[22,73]]]],[[657,72],[[74,[22,73]]]],[[651,72],[[74,[22,73]]]],[[654,72],[[74,[22,73]]]],[[647,72],[[74,[22,73]]]],[[664,72],[[74,[22,73]]]],[[518,72],[[74,[22,73]]]],[[543,72],[[74,[22,73]]]],[[542,72],[[74,[22,73]]]],[[573,72],[[74,[22,73]]]],[[653,72],[[74,[22,73]]]],[[574,72],[[74,[22,73]]]],[[665,72],[[74,[22,73]]]],[[544,72],[[74,[22,73]]]],[[516,72],[[74,[22,73]]]],[[530,72],[[74,[22,73]]]],[[575,72],[[74,[22,73]]]],[[514,72],[[74,[22,73]]]],[[531,72],[[74,[22,73]]]],[[[576,[-1]],72],[[74,[22,73]]],78],[[577,72],[[74,[22,73]]]],[[[578,[-1]],72],[[74,[22,73]]],78],[[579,72],[[74,[22,73]]]],[[580,72],[[74,[22,73]]]],[[581,72],[[74,[22,73]]]],[[525,72],[[74,[22,73]]]],[[525,72],[[74,[22,73]]]],[[525,72],[[74,[22,73]]]],[[525,72],[[74,[22,73]]]],[[525,72],[[74,[22,73]]]],[[582,72],[[74,[22,73]]]],[[583,72],[[74,[22,73]]]],[[584,72],[[74,[22,73]]]],[[585,72],[[74,[22,73]]]],[[586,72],[[74,[22,73]]]],[[545,72],[[74,[22,73]]]],[[587,72],[[74,[22,73]]]],[[588,72],[[74,[22,73]]]],[[589,72],[[74,[22,73]]]],[[591,72],[[74,[22,73]]]],[[592,72],[[74,[22,73]]]],[[593,72],[[74,[22,73]]]],[[594,72],[[74,[22,73]]]],[[541,72],[[74,[22,73]]]],[[595,72],[[74,[22,73]]]],[[596,72],[[74,[22,73]]]],[[597,72],[[74,[22,73]]]],[[598,72],[[74,[22,73]]]],[[599,72],[[74,[22,73]]]],[[600,72],[[74,[22,73]]]],[[601,72],[[74,[22,73]]]],[[666,72],[[74,[22,73]]]],[[602,72],[[74,[22,73]]]],[[602,72],[[74,[22,73]]]],[[603,72],[[74,[22,73]]]],[[604,72],[[74,[22,73]]]],[[604,72],[[74,[22,73]]]],[[605,72],[[74,[22,73]]]],[[605,72],[[74,[22,73]]]],[[606,72],[[74,[22,73]]]],[[607,72],[[74,[22,73]]]],[[607,72],[[74,[22,73]]]],[[608,72],[[74,[22,73]]]],[[609,72],[[74,[22,73]]]],[[610,72],[[74,[22,73]]]],[[539,72],[[74,[22,73]]]],[[538,72],[[74,[22,73]]]],[[668,72],[[74,[22,73]]]],[[668,72],[[74,[22,73]]]],[[526,72],[[74,[22,73]]]],[[526,72],[[74,[22,73]]]],[[526,72],[[74,[22,73]]]],[[526,72],[[74,[22,73]]]],[[526,72],[[74,[22,73]]]],[[611,72],[[74,[22,73]]]],[[612,72],[[74,[22,73]]]],[[527,72],[[74,[22,73]]]],[[527,72],[[74,[22,73]]]],[[527,72],[[74,[22,73]]]],[[527,72],[[74,[22,73]]]],[[527,72],[[74,[22,73]]]],[[662,72],[[74,[22,73]]]],[[669,72],[[74,[22,73]]]],[[613,72],[[74,[22,73]]]],[[614,72],[[74,[22,73]]]],[[615,72],[[74,[22,73]]]],[[616,72],[[74,[22,73]]]],[[617,72],[[74,[22,73]]]],[[618,72],[[74,[22,73]]]],[[540,72],[[74,[22,73]]]],[[619,72],[[74,[22,73]]]],[[620,72],[[74,[22,73]]]],[[621,72],[[74,[22,73]]]],[[[622,[-1]],72],[[74,[22,73]]],78],[[623,72],[[74,[22,73]]]],[[624,72],[[74,[22,73]]]],[[625,72],[[74,[22,73]]]],[[626,72],[[74,[22,73]]]],[[627,72],[[74,[22,73]]]],[[628,72],[[74,[22,73]]]],[[629,72],[[74,[22,73]]]],[[630,72],[[74,[22,73]]]],[[[631,[-1]],72],[[74,[22,73]]],78],[[[536,[-1]],72],[[74,[22,73]]],78],[[632,72],[[74,[22,73]]]],[[[633,[-1]],72],[[74,[22,73]]],78],[[547,72],[[74,[22,73]]]],[[634,72],[[74,[22,73]]]],[[635,72],[[74,[22,73]]]],[[528,72],[[74,[22,73]]]],[[528,72],[[74,[22,73]]]],[[528,72],[[74,[22,73]]]],[[528,72],[[74,[22,73]]]],[[528,72],[[74,[22,73]]]],[[636,72],[[74,[22,73]]]],[[637,72],[[74,[22,73]]]],[[663,72],[[74,[22,73]]]],[[638,72],[[74,[22,73]]]],0,0,[535,514],0,0,0,0,0,0,0,0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[548,519],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,658,670],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[514,561],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[671,604],[-1,-1,[]],[672,605],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[63,[519]]]],[90,[[63,[520]]]],[58,[[63,[521]]]],[58,[[63,[522]]]],[58,[[63,[523]]]],[58,[[63,[524]]]],[58,[[63,[525]]]],[58,[[63,[526]]]],[58,[[63,[527]]]],[83,[[63,[528]]]],[58,519],[58,519],[90,520],[90,520],[58,521],[58,521],[58,522],[58,522],[58,523],[58,523],[58,524],[58,524],[58,525],[58,525],[58,526],[58,526],[58,527],[58,527],[83,528],[83,528],[58,519],[90,520],[58,521],[58,522],[58,523],[58,524],[58,525],[58,526],[58,527],[83,528],[[],521],[673,533],[[],533],[-1,519,[[33,[],[[32,[519]]]]]],[-1,520,[[33,[],[[32,[520]]]]]],[-1,521,[[33,[],[[32,[521]]]]]],[-1,522,[[33,[],[[32,[522]]]]]],[-1,523,[[33,[],[[32,[523]]]]]],[-1,524,[[33,[],[[32,[524]]]]]],[-1,525,[[33,[],[[32,[525]]]]]],[-1,526,[[33,[],[[32,[526]]]]]],[-1,527,[[33,[],[[32,[527]]]]]],[-1,528,[[33,[],[[32,[528]]]]]],[120,[[63,[519]]]],[120,[[63,[520]]]],[120,[[63,[521]]]],[120,[[63,[522]]]],[120,[[63,[523]]]],[120,[[63,[524]]]],[120,[[63,[525]]]],[120,[[63,[526]]]],[120,[[63,[527]]]],[120,[[63,[528]]]],[58,[[63,[540]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[659,674]]],[675,676]],0,0,0,[533,[[63,[677]]]],[[654,58],643],[[647,58],643],[[532,534],662],[532,[[74,[666,602]]]],[[532,534,58,58],[[63,[[639,[[3,[514]]]]]]]],[534,551],[534,554],[570,539],[570,538],[534,613],[[534,514],573],[516,30],0,[532,[[557,[532]]]],[534,[[557,[534]]]],[515,[[557,[515]]]],[529,[[557,[529]]]],[535,[[557,[535]]]],[517,[[557,[517]]]],[655,[[557,[655]]]],[643,[[557,[643]]]],[642,[[557,[642]]]],[656,[[557,[656]]]],[651,[[557,[651]]]],[654,[[557,[654]]]],[647,[[557,[647]]]],[665,[[557,[665]]]],[544,[[557,[544]]]],[516,[[557,[516]]]],[[514,520],573],[514,5],[514,5],[629,5],[514,5],[[548,-1],22,91],[[549,-1],22,91],[[519,-1],22,91],[[[550,[-1]],-2],22,92,91],[[520,-1],22,91],[[521,-1],22,91],[[546,-1],22,91],[[551,-1],22,91],[[522,-1],22,91],[[552,-1],22,91],[[523,-1],22,91],[[555,-1],22,91],[[556,-1],22,91],[[[557,[-1]],-2],22,[],91],[[558,-1],22,91],[[559,-1],22,91],[[560,-1],22,91],[[561,-1],22,91],[[562,-1],22,91],[[563,-1],22,91],[[564,-1],22,91],[[566,-1],22,91],[[567,-1],22,91],[[569,-1],22,91],[[524,-1],22,91],[[573,-1],22,91],[[574,-1],22,91],[[575,-1],22,91],[[514,-1],22,91],[[[576,[-1]],-2],22,92,91],[[577,-1],22,91],[[[578,[-1]],-2],22,92,91],[[525,-1],22,91],[[587,-1],22,91],[[592,-1],22,91],[[594,-1],22,91],[[595,-1],22,91],[[597,-1],22,91],[[599,-1],22,91],[[600,-1],22,91],[[601,-1],22,91],[[603,-1],22,91],[[606,-1],22,91],[[608,-1],22,91],[[610,-1],22,91],[[526,-1],22,91],[[611,-1],22,91],[[612,-1],22,91],[[527,-1],22,91],[[615,-1],22,91],[[616,-1],22,91],[[617,-1],22,91],[[618,-1],22,91],[[540,-1],22,91],[[619,-1],22,91],[[620,-1],22,91],[[621,-1],22,91],[[[622,[-1]],-2],22,92,91],[[623,-1],22,91],[[625,-1],22,91],[[626,-1],22,91],[[627,-1],22,91],[[628,-1],22,91],[[629,-1],22,91],[[630,-1],22,91],[[634,-1],22,91],[[528,-1],22,91],[[637,-1],22,91],[535,58],0,0,0,0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],[[518,120],22],[[543,120],22],[[542,120],22],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[[519,519],5],[[520,520],5],[[521,521],5],[[522,522],5],[[523,523],5],[[524,524],5],[[525,525],5],[[526,526],5],[[527,527],5],[[528,528],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[519],[520],[521],[522],[523],[524],[525],[526],[527],[528],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[519,5],[520,5],[521,5],[522,5],[523,5],[524,5],[525,5],[526,5],[527,5],[528,5],[514,5],[514,5],[595,5],[595,5],[[514,514],5],[514,5],[519,5],[520,5],[521,5],[522,5],[523,5],[524,5],[525,5],[526,5],[527,5],[528,5],[592,5],[594,5],[[547,514,58,58],5],[613,5],[514,5],[678,5],[[592,[63,[564]]],5],[[595,[63,[564]]],5],[601,5],[514,5],[[595,[63,[564]]],5],[562,5],[[534,532],5],[[[590,[-1]]],5,[]],[551,5],[519,[[679,[519]]]],[520,[[679,[520]]]],[521,[[679,[521]]]],[522,[[679,[522]]]],[523,[[679,[523]]]],[524,[[679,[524]]]],[525,[[679,[525]]]],[526,[[679,[526]]]],[527,[[679,[527]]]],[528,[[679,[528]]]],[519,[[680,[519]]]],[520,[[680,[520]]]],[521,[[680,[521]]]],[522,[[680,[522]]]],[523,[[680,[523]]]],[524,[[680,[524]]]],[525,[[680,[525]]]],[526,[[680,[526]]]],[527,[[680,[527]]]],[528,[[680,[528]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[547,58],[[161,[58]]]],0,0,0,0,0,[534,546],[515,546],0,0,0,0,0,[[570,609,-1],22,[[54,[[74,[22,607]]]],681]],[[[590,[-1]],-3],[[590,[-2]]],[],[],[[54,[-1],[[19,[-2]]]]]],[[[622,[-1]],-3],[[622,[-2]]],[],[],[[54,[-1],[[19,[-2]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[618,615],58],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[535,58],0,0,0,[[618,58,615],618],[[547,58],[[161,[58]]]],0,0,0,0,[[543,529,90,58],22],[[543,529,90,529,90,58],22],[[543,529,90,58],22],[[543,529,90,529,90,58],22],0,0,0,0,[592,5],[601,5],[603,5],[663,533],[519,519],[520,520],[521,521],[522,522],[523,523],[524,524],[525,525],[526,526],[527,527],[528,528],0,0,0,0,[[516,-1],22,[54,107]],[[515,[95,[682]]],22],0,0,0,0,0,0,[678,22],[[551,551],[[63,[109]]]],[[522,522],[[63,[109]]]],[[552,552],[[63,[109]]]],[[565,565],[[63,[109]]]],[[613,613],[[63,[109]]]],0,[[618,514],618],[514,[[63,[58]]]],[[515,[590,[568]]],678],[[533,5],5],0,[518,22],[543,22],[542,22],[515,[[0,[[110,[],[[19,[[63,[668]]]]]],681]]]],0,0,0,0,[666,22],0,0,0,0,[[518,120],22],[[543,120],22],[[542,120],22],[[515,565],22],0,0,0,0,0,[556,5],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],[514,514],[[533,[550,[532]]],[[0,[[110,[],[[19,[[63,[534]]]]]],681]]]],[[534,[649,[[63,[120]]]],[63,[650]]],[[0,[[110,[],[[19,[[74,[[22,[515,516]],604]]]]]],681]]]],[514,520],0,0,[[518,544,[161,[58]],529,90],22],0,0,0,[535,58],0,0,[[524,58],5],[[514,[63,[540]],[63,[520]]],[[63,[626]]]],[[519,519,5],22],[[520,520,5],22],[[521,521,5],22],[[522,522,5],22],[[523,523,5],22],[[524,524,5],22],[[525,525,5],22],[[526,526,5],22],[[527,527,5],22],[[528,528,5],22],[[543,58,642,[98,[58]]],22],[[543,58,642,[98,[58]]],22],[[542,58,642,[98,[58]]],22],[[653,58,642,[98,[58]]],22],[[653,58,642,[98,[58]]],22],[[543,614],22],[[515,-1],22,[[100,[638,51]],107]],[[543,570,597],22],[[543,570,597],22],[[653,570,597],22],[[653,570,597],22],[[543,654],22],[[543,654],22],[[542,647],22],[[653,654],22],[[653,654],22],[[543,523,58,[98,[83]]],22],[[543,523,58,[98,[83]]],22],[[542,58,[98,[83]]],22],[[653,523,58,[98,[83]]],22],[[653,523,58,[98,[83]]],22],[[543,58,58,58,58],22],[[543,58],22],[[543,58,570],22],[[543,58,570],22],[[653,58,570],22],[[653,58,570],22],[[543,30,30,30,30,30,30],22],0,0,[529,90],[535,618],[610,90],0,0,0,[514,[[22,[58,58]]]],[[529,-1],570,[[442,[90]]]],0,[604,[[63,[683]]]],[605,[[63,[683]]]],[668,[[63,[683]]]],0,0,0,0,[515,22],0,0,0,0,[515,22],0,0,[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],[[516,-1],568,[[33,[],[[32,[664]]]]]],0,[524,[[3,[58]]]],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],0,0,0,0,0,0,0,0,[617,616],[[616,58],617],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[548,120],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[[[536,[-1]],632,5],[[633,[-1]]],[]],[[[633,[-1]]],[[536,[-1]]],104],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[529,22],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[529,526],[535,527],0,0,0,0,[559,5],[[546,546],546],[[546,546],546],0,0,0,0,0,0,0,0,0,[[],[[590,[-1]]],[]],[-1,[[590,[-1]]],[]],[535,58],0,0,[521,521],[[516,529,90,[98,[83]]],22],[[516,529,90,684],[[63,[537]]]],0,0,[[516,[536,[535]],[98,[83]],624,618],22],[[518,544,58],22],[[543,544,58],22],[[542,544,58],22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[63,[120]],521],[[63,[120]]]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[685,548],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[685,[[63,[[686,[-1]]]]],641],[56,22],[[685,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[686,[-1]]],685,641],[685,[[63,[[96,[[686,[-1]]]]]]],641],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[687,[-1]]],[[690,[[689,[[687,[688]]]]]]],641],[[[691,[-1]]],[[690,[[689,[[691,[688]]]]]]],641],[[[692,[-1]]],[[690,[[689,[[692,[688]]]]]]],641],[[[687,[-1]]],[[690,[[689,[[687,[688]]]]]]],641],[[[691,[-1]]],[[690,[[689,[[691,[688]]]]]]],641],[[[692,[-1]]],[[690,[[689,[[692,[688]]]]]]],641],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[693,693],[694,694],[695,695],[696,696],[697,697],[698,698],[699,699],[700,700],[701,701],[702,702],[703,703],[704,704],[705,705],[706,706],[707,707],[708,708],[709,709],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[687,[-1]]],22,641],[56,22],[56,22],[56,22],[[[691,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[[[692,[-1]]],22,641],[56,22],[56,22],[56,22],0,0,[[704,704],5],[[705,705],5],[[709,709],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[693,72],[[74,[22,73]]]],[[693,72],[[74,[22,73]]]],[[694,72],[[74,[22,73]]]],[[694,72],[[74,[22,73]]]],[[695,72],[[74,[22,73]]]],[[695,72],[[74,[22,73]]]],[[696,72],[[74,[22,73]]]],[[696,72],[[74,[22,73]]]],[[697,72],[[74,[22,73]]]],[[697,72],[[74,[22,73]]]],[[698,72],[[74,[22,73]]]],[[699,72],[[74,[22,73]]]],[[700,72],[[74,[22,73]]]],[[701,72],[[74,[22,73]]]],[[[687,[-1]],72],[[74,[22,73]]],[78,641]],[[702,72],[[74,[22,73]]]],[[702,72],[[74,[22,73]]]],[[703,72],[[74,[22,73]]]],[[703,72],[[74,[22,73]]]],[[704,72],[[74,[22,73]]]],[[[691,[-1]],72],[[74,[22,73]]],[78,641]],[[705,72],[[74,[22,73]]]],[[706,72],[[74,[22,73]]]],[[707,72],[[74,[22,73]]]],[[707,72],[[74,[22,73]]]],[[710,72],[[74,[22,73]]]],[[[692,[-1]],72],[[74,[22,73]]],[78,641]],[[708,72],[[74,[22,73]]]],[[708,72],[[74,[22,73]]]],[[709,72],[[74,[22,73]]]],[[709,72],[[74,[22,73]]]],[[695,711],22],[[702,711],22],[712,693],[713,693],[-1,-1,[]],[714,694],[-1,-1,[]],[714,695],[-1,-1,[]],[715,695],[716,695],[717,695],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[714,702],[-1,-1,[]],[713,702],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[704,-1],22,91],[[705,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[687,[-1]]],51,641],0,0,0,0,0,0,0,0,0,0,[693,[[63,[683]]]],[694,[[63,[683]]]],[695,[[63,[683]]]],[702,[[63,[683]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[718,[-1]]],[[690,[[689,[[718,[688]]]]]]],641],[[[719,[-1]]],[[690,[[689,[[719,[688]]]]]]],641],[[[718,[-1]]],[[690,[[689,[[718,[688]]]]]]],641],[[[719,[-1]]],[[690,[[689,[[719,[688]]]]]]],641],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[720,720],[721,721],[722,722],[723,723],[724,724],[725,725],[726,726],[727,727],[728,728],[729,729],[730,730],[731,731],[[[732,[-1]]],[[732,[-1]]],48],[733,733],[734,734],[735,735],[736,736],[737,737],[738,738],[[[739,[-1]]],[[739,[-1]]],48],[740,740],[741,741],[742,742],[743,743],[744,744],[745,745],[746,746],[747,747],[748,748],[749,749],[750,750],[751,751],[[[752,[-1]]],[[752,[-1]]],48],[753,753],[754,754],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],720],[[],726],[[],[[732,[-1]]],55],[[],744],0,0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[[[718,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[719,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[689,[[755,[688]]]]],756],0,0,0,[[720,720],5],[[725,725],5],[[727,727],5],[[730,730],5],[[733,733],5],[[737,737],5],[[738,738],5],[[[739,[-1]],[739,[-1]]],5,67],[[740,740],5],[[741,741],5],[[742,742],5],[[743,743],5],[[744,744],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[757,72],[[74,[22,73]]]],[[758,72],[[74,[22,73]]]],[[720,72],[[74,[22,73]]]],[[756,72],[[74,[22,73]]]],[[721,72],[[74,[22,73]]]],[[721,72],[[74,[22,73]]]],[[722,72],[[74,[22,73]]]],[[722,72],[[74,[22,73]]]],[[[719,[-1]],72],[[74,[22,73]]],[78,641]],[[723,72],[[74,[22,73]]]],[[723,72],[[74,[22,73]]]],[[724,72],[[74,[22,73]]]],[[724,72],[[74,[22,73]]]],[[725,72],[[74,[22,73]]]],[[726,72],[[74,[22,73]]]],[[727,72],[[74,[22,73]]]],[[727,72],[[74,[22,73]]]],[[728,72],[[74,[22,73]]]],[[728,72],[[74,[22,73]]]],[[729,72],[[74,[22,73]]]],[[729,72],[[74,[22,73]]]],[[730,72],[[74,[22,73]]]],[[730,72],[[74,[22,73]]]],[[731,72],[[74,[22,73]]]],[[731,72],[[74,[22,73]]]],[[[732,[-1]],72],[[74,[22,73]]],78],[[733,72],[[74,[22,73]]]],[[734,72],[[74,[22,73]]]],[[734,72],[[74,[22,73]]]],[[735,72],[[74,[22,73]]]],[[735,72],[[74,[22,73]]]],[[736,72],[[74,[22,73]]]],[[736,72],[[74,[22,73]]]],[[737,72],[[74,[22,73]]]],[[738,72],[[74,[22,73]]]],[[[739,[-1]],72],[[74,[22,73]]],78],[[740,72],[[74,[22,73]]]],[[741,72],[[74,[22,73]]]],[[742,72],[[74,[22,73]]]],[[743,72],[[74,[22,73]]]],[[744,72],[[74,[22,73]]]],[[745,72],[[74,[22,73]]]],[[745,72],[[74,[22,73]]]],[[746,72],[[74,[22,73]]]],[[746,72],[[74,[22,73]]]],[[747,72],[[74,[22,73]]]],[[747,72],[[74,[22,73]]]],[[748,72],[[74,[22,73]]]],[[748,72],[[74,[22,73]]]],[[749,72],[[74,[22,73]]]],[[750,72],[[74,[22,73]]]],[[750,72],[[74,[22,73]]]],[[751,72],[[74,[22,73]]]],[[751,72],[[74,[22,73]]]],[[[752,[-1]],72],[[74,[22,73]]],78],[[753,72],[[74,[22,73]]]],[[753,72],[[74,[22,73]]]],[[754,72],[[74,[22,73]]]],[[754,72],[[74,[22,73]]]],[[722,711],22],[[723,711],22],[[728,711],22],[[729,711],22],[[731,711],22],[[734,711],22],[[747,711],22],[[748,711],22],[[750,711],22],[[754,711],22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[746,721],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[714,724],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[709,727],[716,728],[735,728],[727,728],[753,728],[707,728],[712,728],[703,728],[714,728],[-1,-1,[]],[713,728],[715,728],[-1,-1,[]],[709,730],[-1,-1,[]],[717,731],[715,731],[716,731],[-1,-1,[]],[759,731],[703,731],[-1,-1,[]],[-1,-1,[]],[635,733],[714,734],[735,734],[753,734],[-1,-1,[]],[736,734],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[714,747],[730,747],[746,747],[759,747],[715,747],[716,747],[717,747],[-1,-1,[]],[731,747],[712,747],[735,747],[707,747],[753,747],[713,747],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[712,750],[724,750],[750,751],[714,751],[753,751],[-1,-1,[]],[-1,-1,[]],[714,753],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[720,-1],22,91],[[737,-1],22,91],[[738,-1],22,91],[[742,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[718,[-1]]],5,641],[[[718,[-1]]],51,641],0,0,0,0,0,0,0,0,0,0,[[[689,[[718,[688]]]],726],757],[[[689,[[718,[688]]]],744],758],[[720,[689,[[755,[688]]]],[63,[[761,[760]]]]],[[74,[756,721]]]],0,0,0,[756,[[689,[[755,[688]]]]]],[757,[[689,[[718,[688]]]]]],[758,[[689,[[718,[688]]]]]],0,0,0,0,0,0,0,0,0,0,0,[[758,[689,[[762,[688]]]],597,90,[63,[684]]],22],[[756,[689,[[762,[688]]]],597,90,[63,[684]]],22],[721,[[63,[683]]]],[723,[[63,[683]]]],[724,[[63,[683]]]],[727,[[63,[683]]]],[728,[[63,[683]]]],[729,[[63,[683]]]],[730,[[63,[683]]]],[731,[[63,[683]]]],[734,[[63,[683]]]],[747,[[63,[683]]]],[748,[[63,[683]]]],[750,[[63,[683]]]],[751,[[63,[683]]]],[753,[[63,[683]]]],0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[756,58,58,58,58],22],[[756,58,58,58,446,58],22],[[756,[689,[[762,[688]]]],90],22],[[756,[689,[[762,[688]]]],90],22],[[756,447],22],[756,22],[[756,447],22],[[756,58,[689,[[692,[688]]]],58,56],22],[[756,[689,[[762,[688]]]],597,90,[63,[684]]],22],[[756,[689,[[763,[688]]]]],22],[[756,523,58,58,83],22],[[756,58,[689,[[762,[688]]]],90,[63,[684]]],22],[[757,[689,[[764,[688]]]],58],22],[[757,58,58,58],22],[[757,[689,[[762,[688]]]],90],22],[757,22],[[757,447,58],22],[757,22],[[757,447,58],22],[[757,58,[689,[[692,[688]]]],58,56],22],[[757,[689,[[765,[688]]]]],22],[[757,58,58,83],22],[[757,[689,[[764,[688]]]],58],22],[[758,58],22],[[758,[689,[[764,[688]]]],58],22],[[758,58,58,58,58],22],[[758,58,58,58,446,58],22],[[758,[689,[[762,[688]]]],90],22],[[758,[689,[[762,[688]]]],90],22],[758,22],[758,22],[[758,689,56],22],[[758,447,58],22],[[758,[689,[[762,[688]]]],90,58],22],[[758,[689,[[762,[688]]]],90,[689,[[762,[688]]]],90,58],22],[[758,[689,[[762,[688]]]],90,58],22],[[758,[689,[[762,[688]]]],90,[689,[[762,[688]]]],90,58],22],[758,22],[[758,447,58],22],[[758,58,[689,[[692,[688]]]],58,56],22],[[758,614],22],[[758,[689,[[762,[688]]]],597,90,[63,[684]]],22],[[758,[689,[[763,[688]]]]],22],[[758,523,58,58,83],22],[[758,58,58,58,58],22],[[758,58],22],[[758,58,[689,[[762,[688]]]],90,[63,[684]]],22],[[758,30,30,30,30,30,30],22],[[758,[689,[[764,[688]]]],58],22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[755,[-1]]],[[690,[[689,[[755,[688]]]]]]],641],[[[755,[-1]]],[[690,[[689,[[755,[688]]]]]]],641],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[766,766],[767,767],[768,768],[759,759],[769,769],[714,714],[713,713],[712,712],[770,770],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[96,[[755,[-1]]]],[644,[[63,[[99,[120]]]]]]],[[762,[-1]]],641],[[],771],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[[[755,[-1]]],22,641],[56,22],[772,22],[773,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[767,767],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[[755,[-1]],72],[[74,[22,73]]],641],[[766,72],[[74,[22,73]]]],[[766,72],[[74,[22,73]]]],[[767,72],[[74,[22,73]]]],[[768,72],[[74,[22,73]]]],[[759,72],[[74,[22,73]]]],[[759,72],[[74,[22,73]]]],[[769,72],[[74,[22,73]]]],[[769,72],[[74,[22,73]]]],[[714,72],[[74,[22,73]]]],[[714,72],[[74,[22,73]]]],[[713,72],[[74,[22,73]]]],[[713,72],[[74,[22,73]]]],[[712,72],[[74,[22,73]]]],[[712,72],[[74,[22,73]]]],[[770,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[714,766],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[774,714],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[773,775],[[[95,[100]]],775],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[755,[-1]]],5,641],0,0,0,0,0,0,0,0,[766,[[63,[683]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[776,[[63,[[96,[[755,[-1]]]]]]],641],[776,[[63,[[755,[-1]]]]],641],[56,22],[[776,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[96,[[755,[-1]]]]],776,641],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[777,[-1]]],[[690,[[689,[[755,[688]]]]]]],641],[[[777,[-1]]],[[690,[[689,[[755,[688]]]]]]],641],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[778,778],[779,779],[780,780],[781,781],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[777,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[778,72],[[74,[22,73]]]],[[[782,[-1]],72],[[74,[22,73]]],[78,641]],[[779,72],[[74,[22,73]]]],[[779,72],[[74,[22,73]]]],[[780,72],[[74,[22,73]]]],[[780,72],[[74,[22,73]]]],[[781,72],[[74,[22,73]]]],[[781,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[750,780],[714,780],[724,780],[-1,-1,[]],[783,781],[714,781],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[784,785],[[[95,[54]]],785],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[780,[[63,[683]]]],[781,[[63,[683]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[786,786],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[786,72],[[74,[22,73]]]],[[786,72],[[74,[22,73]]]],[-1,-1,[]],[714,786],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[786,[[63,[683]]]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[711,[689,[[692,[688]]]]],22],[[711,[689,[[687,[688]]]]],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[711,[689,[[762,[688]]]]],22],[[711,[689,[[762,[688]]]],120],22],0,[[711,[689,[[718,[688]]]]],22],[-1,-2,[],[]],[-1,-2,[],[]],[[711,[689,[[765,[688]]]]],22],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[711,683],22],[[787,72],[[74,[22,73]]]],[[787,72],[[74,[22,73]]]],[[788,711],22],[[787,711],22],[[789,[791,[790]],683],22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[711,120,51],22],0,0,[[711,77],22],[[711,[689,[[764,[688]]]]],22],[[711,[689,[[763,[688]]]]],22],[[711,[689,[[792,[688]]]]],22],[787,[[63,[683]]]],0,[[711,[689,[[793,[688]]]]],22],[[711,[689,[[793,[688]]]],120],22],[[711,[689,[[794,[688]]]]],22],[[711,[689,[[794,[688]]]],120],22],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[791,[-1]],[689,[[795,[688]]]],-3],-2,796,[],[[54,[63],[[19,[-2]]]]]],[[[791,[-1]],[689,[[795,[688]]]]],[[74,[551,797]]],796],[[[791,[-1]],[689,[[795,[688]]]]],22,796],[[[791,[-1]],[689,[[795,[688]]]]],[[74,[520,797]]],796],[[[791,[-1]],[689,[[795,[688]]]]],[[74,[554,797]]],796],[[[791,[-1]],[689,[[795,[688]]]]],[[74,[613,797]]],796],[[[791,[-1]],[689,[[795,[688]]]],514],[[74,[573,797]]],796],[[[791,[-1]],[689,[[795,[688]]]],[689,[798]]],[[74,[5,799]]],796],[[[791,[-1]],[689,[[795,[688]]]]],[[74,[546,797]]],796],[[[791,[-1]],[689,[[795,[688]]]],[649,[[63,[[99,[120]]]]]],[63,[650]]],[[22,[[689,[[755,[688]]]],[689,[[755,[688]]]],[63,[671]]]]],796],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[791,[-1]],[689,[[692,[688]]]]],22,796],[[[791,[-1]],[689,[[692,[688]]]]],51,796],[[[791,[-1]],[689,[[687,[688]]]]],22,796],[[[791,[-1]],[689,[[687,[688]]]]],51,796],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[791,[-1]],[689,[[762,[688]]]]],[[74,[22,800]]],796],[[[791,[-1]],[689,[[762,[688]]]],5],22,796],[[[791,[-1]],[689,[[762,[688]]]],90,[63,[90]]],[[74,[[22,[83,90]],783]]],796],[[[791,[-1]],[689,[[762,[688]]]]],51,796],[[[791,[-1]],[689,[[762,[688]]]],[161,[90]],801],[[74,[22,783]]],796],[[[791,[-1]],[689,[[762,[688]]]]],[[74,[22,783]]],796],[[[791,[-1]],22],22,796],[[[791,[-1]],[689,[[718,[688]]]]],22,796],[[[791,[-1]],[689,[[718,[688]]]]],51,796],[[[791,[-1]],[689,[[718,[688]]]],[689,[[762,[688]]]],90,[63,[90]]],[[74,[22,724]]],796],[[[791,[-1]],[689,[[718,[688]]]],[689,[[793,[688]]]],547],[[74,[22,724]]],796],[[[791,[-1]],[689,[[718,[688]]]],[689,[[762,[688]]]],90,[689,[[762,[688]]]],90,90],[[74,[22,751]]],796],[[[791,[-1]],[689,[[718,[688]]]],[631,[[689,[[762,[688]]]]]],[536,[[689,[[793,[688]]]]]],618],[[74,[22,751]]],796],[[[791,[-1]],[689,[[718,[688]]]],[536,[[689,[[793,[688]]]]]],[631,[[689,[[762,[688]]]]]],618],[[74,[22,751]]],796],[[[791,[-1]],[689,[[718,[688]]]],[536,[[689,[[793,[688]]]]]],[536,[[689,[[793,[688]]]]]],618],[[74,[22,751]]],796],[[[791,[-1]],[689,[[718,[688]]]]],22,796],[[[791,[-1]],[689,[[718,[688]]]],[622,[[63,[[99,[120]]]]]]],[[22,[[689,[[718,[688]]]],[63,[753]]]]],796],[[[791,[-1]],[689,[[718,[688]]]],120],[[74,[22,753]]],796],[[[791,[-1]],[689,[[718,[688]]]]],[[74,[22,753]]],796],[[[791,[-1]],[689,[[718,[688]]]],120],[[74,[22,753]]],796],[[[791,[-1]],[689,[[718,[688]]]],[689,[[764,[688]]]],58,58,[689,[[762,[688]]]],90],[[74,[22,734]]],796],[[[791,[-1]],[689,[[718,[688]]]],757],[[74,[22,729]]],796],[[[791,[-1]],[689,[[718,[688]]]],758],[[74,[22,748]]],796],[[[791,[-1]],[689,[[718,[688]]]],[689,[[764,[688]]]],58],[[74,[22,734]]],796],[-1,-2,[],[]],[-1,-2,[],[]],[[[791,[-1]],[689,[[765,[688]]]]],22,796],[[[791,[-1]],[689,[[765,[688]]]],58],[[22,[[689,[[687,[688]]]],[63,[708]]]]],796],[[[791,[-1]],[689,[[765,[688]]]]],51,796],[[[791,[-1]],[640,[-2]]],[[689,[[795,[688]]]]],796,641],[[[791,[-1]],[63,[[99,[120]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]],[644,[[63,[[99,[120]]]]]]],[[22,[[689,[[762,[688]]]],[63,[802]]]]],796],[[[791,[-1]],[689,[[795,[688]]]],[648,[-2]],[649,[[63,[[99,[120]]]]]],[63,[650]]],[[22,[[689,[[755,[688]]]],[689,[[755,[688]]]],[63,[671]]]]],796,641],[[[791,[-1]],[63,[[99,[120]]]]],22,796],[[[791,[-1]],[63,[[99,[120]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]],[660,[[63,[[99,[120]]]],[3,[514]]]]],[[22,[[689,[[793,[688]]]],[63,[803]]]]],796],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[791,[-1]],[689,[[755,[688]]]],-3],-2,796,[],[[54,[63],[[19,[-2]]]]]],[[[791,[-1]],[689,[[755,[688]]]],700],[[22,[[689,[[692,[688]]]],[63,[695]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],701],[[22,[[689,[[687,[688]]]],[63,[694]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],[644,[[63,[[99,[120]]]]]]],[[22,[[689,[[762,[688]]]],[63,[802]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],[646,[[63,[[99,[120]]]]]]],[[22,[[689,[[718,[688]]]],[63,[714]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],804,[63,[[805,[-1]]]]],[[22,[[689,[[765,[688]]]],[63,[806]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],704],[[22,[[689,[[691,[688]]]],[63,[702]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],[652,[[63,[[99,[120]]]]]]],[[22,[[689,[[764,[688]]]],[63,[807]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],720],[[22,[756,[63,[721]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],808,[63,[[805,[-1]]]]],[[22,[[689,[[763,[688]]]],[63,[809]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],810],[[22,[[689,[[792,[688]]]],[63,[811]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],812,813],[[22,[[689,[[814,[688]]]],[63,[815]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],812,[99,[[98,[58]]]]],[[22,[[689,[[814,[688]]]],[63,[815]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],[660,[[63,[[99,[120]]]],[3,[514]]]]],[[22,[[689,[[793,[688]]]],[63,[803]]]]],796],[[[791,[-1]],[689,[[755,[688]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]]],[[74,[551,769]]],796],[[[791,[-1]],[689,[[755,[688]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]]],[[74,[520,769]]],796],[[[791,[-1]],[689,[[755,[688]]]],-3],-2,796,[],[[54,[63],[[19,[-2]]]]]],[[[791,[-1]],[689,[[755,[688]]]]],51,796],[[[791,[-1]],[689,[[755,[688]]]]],[[74,[546,769]]],796],[[[791,[-1]],[689,[[755,[688]]]],120],22,796],[[[791,[-1]],[689,[[755,[688]]]],[590,[778]]],[[74,[5,766]]],796],[[[791,[-1]],[689,[[755,[688]]]],775],22,796],[[[791,[-1]],[689,[[755,[688]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]]],22,796],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[[[791,[-1]]],22,796],[56,22],[[[791,[-1]],816],[[3,[[689,[[795,[688]]]]]]],796],[[677,677],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[677,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[120,-1],[[791,[-1]]],796],[[-1,673],[[791,[-1]]],796],[-1,-2,[],[]],[-1,-2,[],[]],[[[791,[-1]]],677,796],0,[[677,548],817],[[],56],[[],56],0,[[[791,[-1]]],63,796],[[[791,[-1]],818,819],[[74,[[689,[798]],672]]],796],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[120,-1,663],[[791,[-1]]],796],[[[791,[-1]],[689,[[691,[688]]]]],22,796],[[[791,[-1]],[689,[[691,[688]]]]],51,796],[[[791,[-1]],5],[[74,[5,766]]],796],[[[791,[-1]],[689,[[764,[688]]]]],22,796],[[[791,[-1]],[689,[[764,[688]]]]],51,796],[[[791,[-1]],[689,[[755,[688]]]],684],[[74,[[22,[[689,[[820,[688]]]],83]],780]]],796],[[[791,[-1]],[689,[[755,[688]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]]],[[74,[30,779]]],796],[[[791,[-1]],[689,[[755,[688]]]],785],[[74,[22,779]]],796],[[[791,[-1]],[689,[[755,[688]]]],[98,[[689,[[718,[688]]]]]]],[[74,[778,781]]],796],[[[791,[-1]],[689,[[755,[688]]]],[689,[[762,[688]]]],90,90],[[74,[22,780]]],796],[[[791,[-1]],[689,[[755,[688]]]],[689,[[762,[688]]]],90,[98,[83]]],[[74,[22,780]]],796],[[[791,[-1]],[689,[[755,[688]]]],[689,[[762,[688]]]],90,[689,[[820,[688]]]]],[[74,[22,780]]],796],[[[791,[-1]],[689,[[755,[688]]]],[536,[[689,[[793,[688]]]]]],[98,[83]],624,618],[[74,[22,780]]],796],[[[791,[-1]],[689,[[719,[688]]]]],22,796],[[[791,[-1]],756,[667,[[63,[[99,[120]]]]]]],[[22,[[689,[[719,[688]]]],[63,[723]]]]],796],[[[791,[-1]],[689,[[719,[688]]]]],51,796],[[[791,[-1]],[689,[[763,[688]]]]],22,796],[[[791,[-1]],[689,[[763,[688]]]],58],[[22,[[689,[[687,[688]]]],[63,[708]]]]],796],[[[791,[-1]],[689,[[763,[688]]]]],51,796],[[[791,[-1]],[550,[[689,[798]]]],816],[[74,[[689,[[795,[688]]]],821]]],796],[[[791,[-1]],[689,[[792,[688]]]]],22,796],[[[791,[-1]],[689,[[792,[688]]]]],51,796],[[[791,[-1]],[689,[[814,[688]]]]],22,796],[[[791,[-1]],[689,[[814,[688]]]]],51,796],[[[791,[-1]],[689,[798]],-3],-2,796,[],[[54,[63],[[19,[-2]]]]]],[[[791,[-1]],[689,[798]],[689,[[755,[688]]]],[639,[[3,[514]]]]],[[63,[822]]],796],[[[791,[-1]],[689,[798]]],22,796],[[[791,[-1]],[689,[798]],[689,[[795,[688]]]]],[[74,[662,823]]],796],[[[791,[-1]],[689,[798]]],[[74,[824,825]]],796],[[[791,[-1]],[689,[798]]],[[74,[669,825]]],796],[[[791,[-1]],[689,[798]]],[[74,[22,825]]],796],[677,826],0,0,[[[791,[-1]],[689,[[793,[688]]]],-2],22,796,[[54,[63]]]],[[[791,[-1]],[689,[[793,[688]]]],827],[[22,[[689,[[794,[688]]]],[63,[828]]]]],796],[[[791,[-1]],[689,[[793,[688]]]]],[[74,[22,800]]],796],[[[791,[-1]],[689,[[793,[688]]]],5],22,796],[[[791,[-1]],[689,[[793,[688]]]]],51,796],[[[791,[-1]],[689,[[794,[688]]]],5],[[74,[22,829]]],796],[[[791,[-1]],[689,[[794,[688]]]]],51,796],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,[[120,-1],673,[]],[798,[[63,[[686,[641]]]]]],[[[791,[-1]]],[[830,[641]]],796],[673,[[63,[-1]]],[]],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[[817,817],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[817,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[830,[-1]]],817,641],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[817,5],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[[[689,[-1]]],548,831],[-1,-2,[],[]],[-1,-2,[],[]],[[[689,[-1]]],[[689,[-1]]],831],[[-1,-2],22,[],[]],[[[689,[-1]],[689,[-1]]],109,831],[[-1,-2],109,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[[689,[-1]],[689,[-1]]],5,831],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[[689,[-1]],72],[[74,[22,73]]],831],[-1,-1,[]],[832,[[689,[-1]]],831],[-1,-1,[]],[684,[[689,[-1]]],831],[-1,-2,[],[]],[[[689,[-1]],-2],22,831,91],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[833,684],[[[689,[-1]]],684,831],[-1,-2,[],[]],[[[689,[-1]],[689,[-1]]],[[63,[109]]],831],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[833,[[22,[58,58,548]]]],[[[689,[-1]]],[[22,[58,58,548]]],831],[-1,[[63,[-2]]],[],[]],[[58,58,548],833],[[58,58,548],[[689,[-1]]],831],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[],5],[[],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[[834,[-1]],72],[[74,[22,73]]],[78,833]],[[790,72],[[74,[22,73]]]],[[[834,[-1]],-1],22,833],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],833],[[],-1,833],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[834,[-1]],-1],-1,833],[[],[[834,[-1]]],833],[[[834,[-1]],548],-1,833],[[[836,[],[[835,[-1]]]]],[[96,[[834,[-2]]]]],104,833],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[798,[[690,[[689,[798]]]]]],[[[795,[-1]]],[[690,[[689,[[795,[688]]]]]]],641],[798,[[690,[[689,[798]]]]]],[[[795,[-1]]],[[690,[[689,[[795,[688]]]]]]],641],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[686,[-1]]],[[686,[-1]]],[48,641]],[837,837],[799,799],[823,823],[671,671],[797,797],[821,821],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],673],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[[837,72],[[74,[22,73]]]],[[837,72],[[74,[22,73]]]],[[799,72],[[74,[22,73]]]],[[799,72],[[74,[22,73]]]],[[823,72],[[74,[22,73]]]],[[823,72],[[74,[22,73]]]],[[671,72],[[74,[22,73]]]],[[671,72],[[74,[22,73]]]],[[797,72],[[74,[22,73]]]],[[797,72],[[74,[22,73]]]],[[821,72],[[74,[22,73]]]],[[821,72],[[74,[22,73]]]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[837,671],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[798,[795,[-1]]],[[74,[838,823]]],641],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[795,[-1]],798],5,641],[798,51],0,[[120,663],673],[120,519],0,0,[671,[[63,[683]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[839,840],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],840],[[],841],[[[842,[-1]],-3],[[842,[-2]]],[],[],[[54,[-1],[[19,[[842,[-2]]]]]]]],[[[843,[-1]],-1,844],[[845,[-1]]],[]],[[846,846],22],[[847,848],22],[849,56],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[842,[-1]]],-1,[]],[[850,850],[[63,[850]]]],[[850,850],5],0,0,0,0,0,0,[[840,840],840],[[841,841],841],[[840,840],22],[[841,841],22],[[840,840],840],[[841,841],841],[[840,840],22],[[841,841],22],[840,58],[840,58],[841,58],[841,58],[[840,840],840],[[841,841],841],[[840,840],22],[[841,841],22],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[848,[852,[851]]],[[63,[848]]]],[[[843,[-1]],[845,[-1]]],[[74,[22,853]]],[]],[[[852,[-1]],[845,[-1]]],[[74,[22,853]]],[320,92]],[[[843,[-1]],[854,[-1]]],[[74,[22,855]]],[]],[[[843,[-1]]],22,[]],[[[852,[-1]]],22,[]],[[[845,[-1]]],[[845,[-1]]],[]],[[[854,[-1]]],[[854,[-1]]],[]],[[[843,[-1]]],[[843,[-1]]],48],[[[852,[-1]]],[[852,[-1]]],48],[846,846],[844,844],[856,856],[[[842,[-1]]],[[842,[-1]]],48],[857,857],[858,858],[859,859],[839,839],[860,860],[861,861],[862,862],[850,850],[863,863],[864,864],[865,865],[866,866],[867,867],[840,840],[868,868],[869,869],[851,851],[848,848],[870,870],[871,871],[872,872],[847,847],[873,873],[874,874],[875,875],[876,876],[877,877],[878,878],[879,879],[880,880],[881,881],[849,849],[882,882],[883,883],[884,884],[841,841],[885,885],[886,886],[887,887],[888,888],[889,889],[890,890],[891,891],[892,892],[893,893],[894,894],[895,895],[896,896],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[845,[-1]],[845,[-1]]],109,[]],[[857,857],109],[[858,858],109],[[859,859],109],[[839,839],109],[[860,860],109],[[861,861],109],[[862,862],109],[[863,863],109],[[864,864],109],[[865,865],109],[[867,867],109],[[840,840],109],[[868,868],109],[[869,869],109],[[873,873],109],[[876,876],109],[[877,877],109],[[878,878],109],[[879,879],109],[[880,880],109],[[881,881],109],[[849,849],109],0,[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[840,840],[841,841],[[848,56],[[63,[897]]]],[848,[[63,[58]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[840,840],5],[[841,841],5],[[846,-1],22,[[442,[56]],48]],[[],[[843,[-1]]],[]],[[],[[852,[-1]]],[]],[[],846],[[],844],[[],840],[[],841],[[],892],[[],895],[[],896],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[846,[[98,[889]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[846,[[98,[889]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[840,840],840],[[841,841],841],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[[[842,[-1]],120],22,683],[[[842,[-1]],120,120],22,683],[[[842,[-1]],120],51,683],[[[842,[-1]],120,120],51,683],[[],840],[[],841],0,[[[845,[-1]],[845,[-1]]],5,[]],[[844,844],5],[[856,856],5],[[857,857],5],[[858,858],5],[[859,859],5],[[839,839],5],[[860,860],5],[[861,861],5],[[862,862],5],[[850,850],5],[[863,863],5],[[864,864],5],[[865,865],5],[[866,866],5],[[867,867],5],[[840,840],5],[[868,868],5],[[869,869],5],[[851,851],5],[[848,848],5],[[870,870],5],[[871,871],5],[[872,872],5],[[847,847],5],[[873,873],5],[[874,874],5],[[876,876],5],[[877,877],5],[[878,878],5],[[879,879],5],[[880,880],5],[[881,881],5],[[849,849],5],[[882,882],5],[[883,883],5],[[884,884],5],[[841,841],5],[[885,885],5],[[886,886],5],[[894,894],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[848,848,[852,[851]]],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],0,[[846,[63,[[22,[889,844]]]]],22],[[840,-1],22,[[33,[],[[32,[840]]]]]],[[841,-1],22,[[33,[],[[32,[841]]]]]],[[846,846],22],0,[[[843,[-1]],-2],[[63,[[845,[-1]]]]],[],[[100,[-1],[[19,[5]]]]]],[[[843,[-1]],-1,844,-2],[[845,[-1]]],[],[[100,[-1,-1],[[19,[5]]]]]],[[[843,[-1]],-1,844],[[845,[-1]]],67],[[[854,[-1]]],[[63,[[22,[[845,[-1]],[845,[-1]]]]]]],[]],[83,850],[[[845,[-1]],72],[[74,[22,73]]],[]],[[[854,[-1]],72],[[74,[22,73]]],[]],[[[843,[-1]],72],[[74,[22,73]]],78],[[[852,[-1]],72],[[74,[22,73]]],[78,320,92]],[[846,72],[[74,[22,73]]]],[[844,72],[[74,[22,73]]]],[[856,72],[[74,[22,73]]]],[[[842,[-1]],72],[[74,[22,73]]],77],[[[842,[-1]],72],[[74,[22,73]]],78],[[857,72],[[74,[22,73]]]],[[858,72],[[74,[22,73]]]],[[859,72],[[74,[22,73]]]],[[839,72],[[74,[22,73]]]],[[860,72],[[74,[22,73]]]],[[861,72],[[74,[22,73]]]],[[862,72],[[74,[22,73]]]],[[850,72],[[74,[22,73]]]],[[863,72],[[74,[22,73]]]],[[864,72],[[74,[22,73]]]],[[865,72],[[74,[22,73]]]],[[866,72],[[74,[22,73]]]],[[867,72],[[74,[22,73]]]],[[840,72],[[74,[22,73]]]],[[840,72],[[74,[22,73]]]],[[840,72],[[74,[22,73]]]],[[840,72],[[74,[22,73]]]],[[840,72],[[74,[22,73]]]],[[868,72],[[74,[22,73]]]],[[869,72],[[74,[22,73]]]],[[851,72],[[74,[22,73]]]],[[848,72],[[74,[22,73]]]],[[870,72],[[74,[22,73]]]],[[871,72],[[74,[22,73]]]],[[872,72],[[74,[22,73]]]],[[847,72],[[74,[22,73]]]],[[873,72],[[74,[22,73]]]],[[874,72],[[74,[22,73]]]],[[875,72],[[74,[22,73]]]],[[876,72],[[74,[22,73]]]],[[877,72],[[74,[22,73]]]],[[878,72],[[74,[22,73]]]],[[879,72],[[74,[22,73]]]],[[880,72],[[74,[22,73]]]],[[881,72],[[74,[22,73]]]],[[849,72],[[74,[22,73]]]],[[882,72],[[74,[22,73]]]],[[883,72],[[74,[22,73]]]],[[884,72],[[74,[22,73]]]],[[841,72],[[74,[22,73]]]],[[841,72],[[74,[22,73]]]],[[841,72],[[74,[22,73]]]],[[841,72],[[74,[22,73]]]],[[841,72],[[74,[22,73]]]],[[885,72],[[74,[22,73]]]],[[886,72],[[74,[22,73]]]],[[887,72],[[74,[22,73]]]],[[888,72],[[74,[22,73]]]],[[889,72],[[74,[22,73]]]],[[890,72],[[74,[22,73]]]],[[891,72],[[74,[22,73]]]],[[892,72],[[74,[22,73]]]],[[893,72],[[74,[22,73]]]],[[894,72],[[74,[22,73]]]],[[895,72],[[74,[22,73]]]],[[896,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[3,[889]]],846],[-1,-1,[]],[[[161,[56]]],844],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[868,862],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[63,[840]]]],[58,[[63,[841]]]],[58,840],[58,840],[58,841],[58,841],[58,840],[58,841],[58,884],[-1,840,[[33,[],[[32,[840]]]]]],[-1,841,[[33,[],[[32,[841]]]]]],[120,[[63,[840]]]],[120,[[63,[841]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[3,[889]]],846],[[[161,[58]],[843,[-1]]],[[854,[-1]]],[]],0,0,0,[[896,894],[[845,[851]]]],[896,[[845,[851]]]],[896,[[845,[851]]]],[[[852,[-1]],-1],[[63,[[845,[-1]]]]],[320,92]],[[[852,[-1]],[845,[-1]]],[[74,[-1,853]]],[320,92]],[[[843,[-1]],[845,[-1]]],-1,[]],[[[843,[-1]],[845,[-1]]],844,[]],[[[852,[-1]],[845,[-1]]],844,[]],0,0,[[[845,[-1]],-2],22,[],91],[[857,-1],22,91],[[858,-1],22,91],[[859,-1],22,91],[[839,-1],22,91],[[860,-1],22,91],[[861,-1],22,91],[[862,-1],22,91],[[850,-1],22,91],[[863,-1],22,91],[[864,-1],22,91],[[865,-1],22,91],[[866,-1],22,91],[[867,-1],22,91],[[840,-1],22,91],[[868,-1],22,91],[[869,-1],22,91],[[851,-1],22,91],[[848,-1],22,91],[[870,-1],22,91],[[847,-1],22,91],[[873,-1],22,91],[[876,-1],22,91],[[877,-1],22,91],[[878,-1],22,91],[[879,-1],22,91],[[880,-1],22,91],[[881,-1],22,91],[[849,-1],22,91],[[886,-1],22,91],[[894,-1],22,91],[882,5],[[[845,[-1]]],56,[]],[[[843,[-1]],[854,[-1]]],[[98,[-1]]],[]],[[[843,[-1]],[845,[-1]]],-1,[]],[[[852,[-1]],[845,[-1]]],-1,[]],[884,58],[[[843,[-1]],[845,[-1]]],-1,[]],[[848,896],[[74,[898,899]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,0,0,0,[[[852,[-1]],-1,844],[[845,[-1]]],[320,92]],[[840,840],22],[[841,841],22],[[840,840],840],[[841,841],841],[[840,840],5],[[841,841],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[843,[-1]]],[[3,[-1]]],[]],[[[842,[-1]]],-1,[]],[-1,-2,[],[]],[846,[[900,[889]]]],[840],[841],[[[842,[-1]]],[[842,[-2]]],[],[[312,[-1]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[850,5],[840,5],[841,5],[[848,[852,[851]]],5],[844,5],[[885,896],5],[[848,[852,[851]]],5],[[[843,[-1]]],5,[]],[[[852,[-1]]],5,[]],[846,5],[840,5],[841,5],[869,5],[869,5],[862,5],[889,5],[[[843,[-1]]],[[0,[901]]],[]],[[[852,[-1]]],[[0,[901]]],[320,92]],[840,[[679,[840]]]],[841,[[679,[841]]]],[[[843,[-1]]],[[0,[901]]],[]],[840,[[680,[840]]]],[841,[[680,[841]]]],0,0,[[[843,[-1]]],56,[]],[[[852,[-1]]],56,[]],[846,56],0,0,0,0,[[844,120],856],[[[842,[-1]],120],[[63,[856]]],[]],0,0,0,0,0,0,0,0,0,[885,5],[[],[[843,[-1]]],[]],[[],[[852,[-1]]],[]],[[],846],[[58,58],844],[-1,[[842,[-1]]],[]],[[83,850],[[63,[870]]]],[[[845,[-1]],[845,[-1]]],[[854,[-1]]],[]],[[[854,[-1]]],63,[]],[840,840],[841,841],0,0,[850,[[63,[870]]]],[[892,[845,[885]]],[[63,[[845,[874]]]]]],0,[[[845,[-1]],[845,[-1]]],[[63,[109]]],[]],[[857,857],[[63,[109]]]],[[858,858],[[63,[109]]]],[[859,859],[[63,[109]]]],[[839,839],[[63,[109]]]],[[860,860],[[63,[109]]]],[[861,861],[[63,[109]]]],[[862,862],[[63,[109]]]],[[863,863],[[63,[109]]]],[[864,864],[[63,[109]]]],[[865,865],[[63,[109]]]],[[867,867],[[63,[109]]]],[[840,840],[[63,[109]]]],[[868,868],[[63,[109]]]],[[869,869],[[63,[109]]]],[[870,870],[[63,[109]]]],[[873,873],[[63,[109]]]],[[876,876],[[63,[109]]]],[[877,877],[[63,[109]]]],[[878,878],[[63,[109]]]],[[879,879],[[63,[109]]]],[[880,880],[[63,[109]]]],[[881,881],[[63,[109]]]],[[849,849],[[63,[109]]]],[[884,884],[[63,[109]]]],[848,[[63,[839]]]],0,0,[[846,889,844],22],[[[843,[-1]],56],[[854,[-1]]],[]],0,0,[[840,840],22],[[841,841],22],[[[852,[-1]],[845,[-1]],-1],22,[320,92]],0,[848,[[63,[850]]]],[870,850],[848,[[63,[862]]]],[870,862],[848,[[63,[83]]]],[[840,840,5],22],[[841,841,5],22],[[848,902],58],[[[842,[-1]]],[[63,[683]]],683],0,[846,[[0,[[126,[],[[32,[[22,[889,844]]]]]]]]]],[846,[[0,[[126,[],[[32,[[22,[889,[63,[844]]]]]]]]]]]],[[[842,[-1]]],[[0,[903]]],[]],0,[[846,-1,846],22,[[442,[56]],48]],0,[[840,840],840],[[841,841],841],[[840,840],22],[[841,841],22],[[844,844],22],[[840,840],840],[[841,841],841],[847,[[63,[860]]]],[896,902],[859,120],[[863,896],[[74,[898,899]]]],[850,848],[850,848],[[850,861],848],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[844,[[63,[[161,[56]]]]]],[-1,115,[]],[-1,51,[]],[[[845,[851]],902],51],[850,51],[868,120],[[848,902],51],[[840,840],22],[[841,841],22],[-1,844,[[126,[],[[32,[844]]]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[[[843,[-1]],[845,[-1]]],[[74,[-1,853]]],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,0,0,0,0,0,[870,848],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[840,840],840],[[841,841],841],[[844,844],844],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,[870,83],0,[56,846],[[[842,[-1]],[22,[844,51]]],[[842,[-1]]],[]],[[[842,[-1]],844,-2],[[842,[-1]]],[],288],0,[850,[[63,[870]]]],[[[854,[-1]]],[[161,[58]]],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],904],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[[904,904],904],[[904,904],22],[[904,904],904],[[904,904],22],[904,58],[904,58],[[904,904],904],[[904,904],22],[-1,-2,[],[]],[-1,-2,[],[]],[904,904],[[-1,-2],22,[],[]],[904,904],[-1,-2,[],[]],[[904,904],5],[[],904],[56,-1,[]],[56,-1,[]],[[904,904],904],[-1,-2,[],[]],[56,22],[[],904],[[904,904],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[904,-1],22,[[33,[],[[32,[904]]]]]],[[904,72],[[74,[22,73]]]],[[904,72],[[74,[22,73]]]],[[904,72],[[74,[22,73]]]],[[904,72],[[74,[22,73]]]],[[904,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[58,[[63,[904]]]],[58,904],[58,904],[58,904],[-1,904,[[33,[],[[32,[904]]]]]],[120,[[63,[904]]]],[-1,-2,[],[]],0,0,[[],56],[[904,904],22],[[904,904],904],[[904,904],5],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[904],[-1,-2,[],[]],[904,5],[904,5],[904,[[679,[904]]]],[904,[[680,[904]]]],0,[904,904],[[904,904],22],[[904,904,5],22],0,[[904,904],904],[[904,904],22],[[904,904],904],[-1,-2,[],[]],[[904,904],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[904,904],904],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],905],[[],906],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[[905,905],905],[[906,906],906],[[905,905],22],[[906,906],22],[[905,905],905],[[906,906],906],[[905,905],22],[[906,906],22],[905,58],[905,58],[906,58],[906,58],[[905,905],905],[[906,906],906],[[905,905],22],[[906,906],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[905,905],[907,907],[906,906],[908,908],[909,909],[910,910],[911,911],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[905,905],[906,906],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[905,905],5],[[906,906],5],[[],908],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[905,905],905],[[906,906],906],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[],905],[[],906],0,[[905,905],5],[[907,907],5],[[906,906],5],[[909,909],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[905,-1],22,[[33,[],[[32,[905]]]]]],[[906,-1],22,[[33,[],[[32,[906]]]]]],[[905,72],[[74,[22,73]]]],[[905,72],[[74,[22,73]]]],[[905,72],[[74,[22,73]]]],[[905,72],[[74,[22,73]]]],[[905,72],[[74,[22,73]]]],[[907,72],[[74,[22,73]]]],[[907,72],[[74,[22,73]]]],[[906,72],[[74,[22,73]]]],[[906,72],[[74,[22,73]]]],[[906,72],[[74,[22,73]]]],[[906,72],[[74,[22,73]]]],[[906,72],[[74,[22,73]]]],[[908,72],[[74,[22,73]]]],[[909,72],[[74,[22,73]]]],[[912,72],[[74,[22,73]]]],[[913,72],[[74,[22,73]]]],[[910,72],[[74,[22,73]]]],[[911,72],[[74,[22,73]]]],[[914,72],[[74,[22,73]]]],[[914,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[73,914],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[63,[905]]]],[58,[[63,[906]]]],[58,905],[58,905],[58,906],[58,906],[58,905],[58,906],[-1,905,[[33,[],[[32,[905]]]]]],[-1,906,[[33,[],[[32,[906]]]]]],[120,[[63,[905]]]],[120,[[63,[906]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[909,-1],22,91],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[905,905],22],[[906,906],22],[[905,905],905],[[906,906],906],[[905,905],5],[[906,906],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[905],[906],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[905,5],[906,5],[905,5],[906,5],[905,[[679,[905]]]],[906,[[679,[906]]]],[905,[[680,[905]]]],[906,[[680,[906]]]],0,0,[[-1,896,915,908,909,916],[[74,[[917,[-1]],914]]],789],[69,907],[905,905],[906,906],0,[[907,907],[[63,[109]]]],0,[[905,905],22],[[906,906],22],0,[[905,905,5],22],[[906,906,5],22],0,[914,[[63,[683]]]],[[905,905],905],[[906,906],906],[[905,905],22],[[906,906],22],[[905,905],905],[[906,906],906],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[[905,905],22],[[906,906],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[905,905],905],[[906,906],906],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,[[[917,[-1]]],[[74,[913,914]]],789],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[918,918],[919,919],[920,920],[921,921],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],918],[[],921],[[],922],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[[918,918],5],[[919,919],5],[[920,920],5],[[921,921],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],0,[[918,72],[[74,[22,73]]]],[[919,72],[[74,[22,73]]]],[[920,72],[[74,[22,73]]]],[[920,72],[[74,[22,73]]]],[[921,72],[[74,[22,73]]]],[[923,72],[[74,[22,73]]]],[[923,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[73,923],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[918,-1],22,91],[[919,-1],22,91],[[921,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,921],[[924,[-1]]],789],[[919,919],[[63,[109]]]],0,0,0,[923,[[63,[683]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[919,120],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[924,[-1]],896,915],[[74,[922,923]]],789],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[925,925],[926,926],[927,927],[928,928],[929,929],[930,930],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],926],[[],927],[[],929],[[],930],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[[925,925],5],[[926,926],5],[[927,927],5],[[928,928],5],[[929,929],5],[[930,930],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],0,[[[931,[-1]]],-1,789],[[925,72],[[74,[22,73]]]],[[926,72],[[74,[22,73]]]],[[927,72],[[74,[22,73]]]],[[932,72],[[74,[22,73]]]],[[932,72],[[74,[22,73]]]],[[928,72],[[74,[22,73]]]],[[928,72],[[74,[22,73]]]],[[929,72],[[74,[22,73]]]],[[930,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[73,932],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[925,-1],22,91],[[926,-1],22,91],[[927,-1],22,91],[[929,-1],22,91],[[930,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,[[931,[-1]]],789],0,0,0,0,0,0,[932,[[63,[683]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[931,[-1]],896,915,929,930],[[74,[933,932]]],789],[[896,915,929,930],[[74,[[22,[51,933]],932]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[934,120],[935,120],[936,120],[937,120],[938,120],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[934,934],[935,935],[936,936],[937,937],[938,938],[939,939],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],934],[[],935],[[],936],[[],937],[[],938],[[],939],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[934,934],5],[[935,935],5],[[936,936],5],[[937,937],5],[[938,938],5],[[939,939],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[934,72],[[74,[22,73]]]],[[935,72],[[74,[22,73]]]],[[936,72],[[74,[22,73]]]],[[937,72],[[74,[22,73]]]],[[938,72],[[74,[22,73]]]],[[939,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[934,-1],22,91],[[935,-1],22,91],[[936,-1],22,91],[[937,-1],22,91],[[938,-1],22,91],[[939,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],940],[[],941],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[[940,940],940],[[941,941],941],[[940,940],22],[[941,941],22],[[940,940],940],[[941,941],941],[[940,940],22],[[941,941],22],[940,83],[940,83],[941,58],[941,58],[[940,940],940],[[941,941],941],[[940,940],22],[[941,941],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[942,942],[943,943],[944,944],[940,940],[941,941],[945,945],[946,946],[947,947],[948,948],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[942,942],109],[[-1,-2],109,[],[]],[940,940],[941,941],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[940,940],5],[[941,941],5],0,[[949,58],[[74,[22,943]]]],[[],945],[[],947],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[940,940],940],[[941,941],941],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[],940],[[],941],0,[[942,942],5],[[940,940],5],[[941,941],5],[[945,945],5],[[946,946],5],[[948,948],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[940,-1],22,[[33,[],[[32,[940]]]]]],[[941,-1],22,[[33,[],[[32,[941]]]]]],0,0,[[942,72],[[74,[22,73]]]],[[943,72],[[74,[22,73]]]],[[943,72],[[74,[22,73]]]],[[944,72],[[74,[22,73]]]],[[940,72],[[74,[22,73]]]],[[940,72],[[74,[22,73]]]],[[940,72],[[74,[22,73]]]],[[940,72],[[74,[22,73]]]],[[940,72],[[74,[22,73]]]],[[941,72],[[74,[22,73]]]],[[941,72],[[74,[22,73]]]],[[941,72],[[74,[22,73]]]],[[941,72],[[74,[22,73]]]],[[941,72],[[74,[22,73]]]],[[945,72],[[74,[22,73]]]],[[946,72],[[74,[22,73]]]],[[947,72],[[74,[22,73]]]],[[948,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[83,[[63,[940]]]],[58,[[63,[941]]]],[83,940],[83,940],[58,941],[58,941],[83,940],[58,941],[-1,940,[[33,[],[[32,[940]]]]]],[-1,941,[[33,[],[[32,[941]]]]]],[120,[[63,[940]]]],[120,[[63,[941]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[120,[[74,[942]]]],[58,[[63,[942]]]],[949,[[952,[942,[951,[950]]]]]],[[942,-1],22,91],[[940,-1],22,91],[[945,-1],22,91],[[948,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[940,940],22],[[941,941],22],[[940,940],940],[[941,941],941],[[940,940],5],[[941,941],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[940],[941],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[940,5],[941,5],[940,5],[941,5],[940,[[679,[940]]]],[941,[[679,[941]]]],[940,[[680,[940]]]],[941,[[680,[941]]]],0,[947,[[74,[949,943]]]],[940,940],[941,941],[[942,942],[[63,[109]]]],[[940,940],22],[[941,941],22],[[940,940,5],22],[[941,941,5],22],0,0,[[940,940],940],[[941,941],941],[[940,940],22],[[941,941],22],[[940,940],940],[[941,941],941],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[[940,940],22],[[941,941],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[940,940],940],[[941,941],941],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[949,896,915,[63,[948]],[63,[944]],[3,[58]]],[[74,[22,943]]]],[[896,915,947,[63,[948]]],[[74,[[3,[58]],943]]]],0,[896,22],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[953,[-1,-2]],-1,-2],[[63,[-2]]],[92,320],[]],[[[953,[-1,-2]],-1,-2],[[63,[-2]]],[92,320],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[953,[-1,-2]]],[],[]],[[],954],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[[953,[-1,-2]],72],[[74,[22,73]]],78,78],[[954,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[954,[845,[885]],[852,[851]]],848],[[954,[845,[885]],[843,[885]],955],[[74,[22,956]]]],[[954,[845,[885]]]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[954,[845,[885]],[843,[885]],955],[[74,[22,956]]]],[[[953,[-2,-3]],-1],[[63,[-3]]],[92,320,957],[[178,[-1]],92,320],[]],[[],954],[[[953,[-1,-2]]],22,[],[]],[[[953,[-1,-2]]],22,[],[]],[[954,[845,[885]],[852,[851]]],[[845,[851]]]],[954,22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[958,958],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[958,120],22],[[958,120,-1],22,[[145,[650]]]],[[958,120],51],[[958,120,-1],51,[[145,[650]]]],[[958,72],[[74,[22,73]]]],[[958,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[958,[[0,[903]]]],[[958,120],[[63,[856]]]],[958,120],[[],959],[[959,120],[[74,[896,958]]]],[120,[[74,[896,958]]]],[958,[[63,[683]]]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[960,120],51],[[960,[63,[51]],120],51],[[961,[845,[885]],850,844],[[74,[[845,[885]],962]]]],[[961,[845,[885]],850,844],[[74,[[845,[885]],962]]]],[[916,[845,[885]],[852,[851]],963],964],[965,22],[962,962],[964,964],[916,916],[899,899],[966,966],[967,967],[968,968],[969,969],[897,897],[956,956],[902,902],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[966,966],109],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[916,964],5],[[],970],[[],964],[[],916],[[],965],[[],960],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[846,22],[[964,964],5],[[916,916],5],[[899,899],5],[[966,966],5],[[967,967],5],[[968,968],5],[[969,969],5],[[971,971],5],[[897,897],5],[[956,956],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[970,[843,[885]]],[[63,[[22,[889,844]]]]]],[[[845,[851]],[98,[[845,[885]]]],[843,[885]],[852,[851]]],[[0,[[126,[],[[32,[[845,[885]]]]]]]]]],[[961,72],[[74,[22,73]]]],[[972,72],[[74,[22,73]]]],[[962,72],[[74,[22,73]]]],[[962,72],[[74,[22,73]]]],[[970,72],[[74,[22,73]]]],[[964,72],[[74,[22,73]]]],[[916,72],[[74,[22,73]]]],[[899,72],[[74,[22,73]]]],[[899,72],[[74,[22,73]]]],[[898,72],[[74,[22,73]]]],[[966,72],[[74,[22,73]]]],[[966,72],[[74,[22,73]]]],[[967,72],[[74,[22,73]]]],[[965,72],[[74,[22,73]]]],[[968,72],[[74,[22,73]]]],[[968,72],[[74,[22,73]]]],[[969,72],[[74,[22,73]]]],[[969,72],[[74,[22,73]]]],[[971,72],[[74,[22,73]]]],[[897,72],[[74,[22,73]]]],[[956,72],[[74,[22,73]]]],[[956,72],[[74,[22,73]]]],[[896,[843,[885]],972,970,846],961],[896,961],[[896,[843,[885]],972,970,846],961],[896,961],[[972,[845,[885]]],22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[973,962],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[861,966],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[843,[885]]],972],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[83,966],0,0,[897,[[63,[[845,[851]]]]]],[[964,-1],22,91],[[916,-1],22,91],[[966,-1],22,91],[[967,-1],22,91],[[971,-1],22,91],0,0,0,[[965,[845,[851]]],967],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,[[897,[852,[851]]],848],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[966,58],5],[[972,[845,[885]]],5],[970,5],0,[[966,966]],[[966,58]],[[],972],[58,[[63,[966]]]],[[966,966],[[63,[109]]]],[[960,896,[98,[120]],[98,[120]],[98,[120]],[98,[120]],[499,[971,51,[951,[950]]]]],22],[[955,885,-1],[[74,[897,956]]],[[100,[[845,[885]]],[[19,[[74,[897,956]]]]]]]],[[966,58],58],0,[962,[[63,[683]]]],0,[[970,[843,[885]]],22],[961,902],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[967,58],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[[897,902],51],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[[961,885,844],[[74,[[845,[885]],962]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[965,902],[[74,[22,969]]]],[[896,[843,[875]],[98,[890]]],955],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[845,[885]],974,896,892,963],[[63,[898]]]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],0,[974,974],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[896,892,963,916],975],[[974,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,0,0,[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],976],[[],977],[[],978],[[],979],[[],980],[[],981],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[976,83],[976,83],[977,83],[977,83],[978,83],[978,83],[979,83],[979,83],[980,69],[980,69],[981,83],[981,83],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[870,[[74,[22,973]]]],[976,976],[982,982],[977,977],[983,983],[984,984],[985,985],[986,986],[973,973],[987,987],[988,988],[989,989],[990,990],[991,991],[992,992],[978,978],[993,993],[994,994],[979,979],[980,980],[981,981],[995,995],[996,996],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[976,976],[977,977],[978,978],[979,979],[980,980],[981,981],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[976,976],5],[[977,977],5],[[978,978],5],[[979,979],5],[[980,980],5],[[981,981],5],[[],979],[[],980],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[963,963],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[[],976],[[],977],[[],978],[[],979],[[],980],[[],981],[[976,976],5],[[977,977],5],[[978,978],5],[[979,979],5],[[980,980],5],[[981,981],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[963,56],[[976,-1],22,[[33,[],[[32,[976]]]]]],[[977,-1],22,[[33,[],[[32,[977]]]]]],[[978,-1],22,[[33,[],[[32,[978]]]]]],[[979,-1],22,[[33,[],[[32,[979]]]]]],[[980,-1],22,[[33,[],[[32,[980]]]]]],[[981,-1],22,[[33,[],[[32,[981]]]]]],[[976,72],[[74,[22,73]]]],[[976,72],[[74,[22,73]]]],[[976,72],[[74,[22,73]]]],[[976,72],[[74,[22,73]]]],[[976,72],[[74,[22,73]]]],[[982,72],[[74,[22,73]]]],[[977,72],[[74,[22,73]]]],[[977,72],[[74,[22,73]]]],[[977,72],[[74,[22,73]]]],[[977,72],[[74,[22,73]]]],[[977,72],[[74,[22,73]]]],[[983,72],[[74,[22,73]]]],[[963,72],[[74,[22,73]]]],[[984,72],[[74,[22,73]]]],[[984,72],[[74,[22,73]]]],[[985,72],[[74,[22,73]]]],[[985,72],[[74,[22,73]]]],[[986,72],[[74,[22,73]]]],[[986,72],[[74,[22,73]]]],[[973,72],[[74,[22,73]]]],[[973,72],[[74,[22,73]]]],[[987,72],[[74,[22,73]]]],[[987,72],[[74,[22,73]]]],[[988,72],[[74,[22,73]]]],[[988,72],[[74,[22,73]]]],[[989,72],[[74,[22,73]]]],[[989,72],[[74,[22,73]]]],[[990,72],[[74,[22,73]]]],[[990,72],[[74,[22,73]]]],[[991,72],[[74,[22,73]]]],[[991,72],[[74,[22,73]]]],[[992,72],[[74,[22,73]]]],[[992,72],[[74,[22,73]]]],[[978,72],[[74,[22,73]]]],[[978,72],[[74,[22,73]]]],[[978,72],[[74,[22,73]]]],[[978,72],[[74,[22,73]]]],[[978,72],[[74,[22,73]]]],[[993,72],[[74,[22,73]]]],[[993,72],[[74,[22,73]]]],[[994,72],[[74,[22,73]]]],[[994,72],[[74,[22,73]]]],[[979,72],[[74,[22,73]]]],[[979,72],[[74,[22,73]]]],[[979,72],[[74,[22,73]]]],[[979,72],[[74,[22,73]]]],[[979,72],[[74,[22,73]]]],[[980,72],[[74,[22,73]]]],[[980,72],[[74,[22,73]]]],[[980,72],[[74,[22,73]]]],[[980,72],[[74,[22,73]]]],[[980,72],[[74,[22,73]]]],[[981,72],[[74,[22,73]]]],[[981,72],[[74,[22,73]]]],[[981,72],[[74,[22,73]]]],[[981,72],[[74,[22,73]]]],[[981,72],[[74,[22,73]]]],[[915,72],[[74,[22,73]]]],[[997,72],[[74,[22,73]]]],[[995,72],[[74,[22,73]]]],[[995,72],[[74,[22,73]]]],[[996,72],[[74,[22,73]]]],[[996,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[973,985],[956,985],[-1,-1,[]],[984,985],[899,985],[998,986],[984,986],[973,986],[956,986],[-1,-1,[]],[-1,-1,[]],[998,973],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[999,989],[-1,-1,[]],[-1,-1,[]],[989,992],[-1,-1,[]],[991,992],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[998,994],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[969,996],[855,996],[1000,996],[-1,-1,[]],[1001,996],[853,996],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[83,[[63,[976]]]],[83,[[63,[977]]]],[83,[[63,[978]]]],[83,[[63,[979]]]],[69,[[63,[980]]]],[83,[[63,[981]]]],[83,976],[83,976],[83,977],[83,977],[83,978],[83,978],[83,979],[83,979],[69,980],[69,980],[83,981],[83,981],[83,976],[83,977],[83,978],[83,979],[69,980],[83,981],[-1,976,[[33,[],[[32,[976]]]]]],[-1,977,[[33,[],[[32,[977]]]]]],[-1,978,[[33,[],[[32,[978]]]]]],[-1,979,[[33,[],[[32,[979]]]]]],[-1,980,[[33,[],[[32,[980]]]]]],[-1,981,[[33,[],[[32,[981]]]]]],[120,[[63,[976]]]],[120,[[63,[977]]]],[120,[[63,[978]]]],[120,[[63,[979]]]],[120,[[63,[980]]]],[120,[[63,[981]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[915,56],963],[963,56],[[963,[845,[885]]],983],[[963,[845,[874]]],977],[[915,[845,[892]]]],[[915,[845,[885]]]],[[915,[845,[851]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[976,976],5],[[977,977],5],[[978,978],5],[[979,979],5],[[980,980],5],[[981,981],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[976],[977],[978],[979],[980],[981],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[976,5],[977,5],[978,5],[979,5],[980,5],[981,5],[976,5],[977,5],[978,5],[979,5],[980,5],[981,5],[976,[[679,[976]]]],[977,[[679,[977]]]],[978,[[679,[978]]]],[979,[[679,[979]]]],[980,[[679,[980]]]],[981,[[679,[981]]]],[976,[[680,[976]]]],[977,[[680,[977]]]],[978,[[680,[978]]]],[979,[[680,[979]]]],[980,[[680,[980]]]],[981,[[680,[981]]]],0,[[979,980],997],0,[976,976],[977,977],[978,978],[979,979],[980,980],[981,981],0,[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],0,[997,22],0,[[976,976,5],22],[[977,977,5],22],[[978,978,5],22],[[979,979,5],22],[[980,980,5],22],[[981,981,5],22],[985,[[63,[683]]]],[986,[[63,[683]]]],[973,[[63,[683]]]],[987,[[63,[683]]]],[989,[[63,[683]]]],[990,[[63,[683]]]],[992,[[63,[683]]]],[994,[[63,[683]]]],[996,[[63,[683]]]],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[997,896],[[74,[915,[842,[996]]]]]],[[997,870],[[74,[22,973]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],1002],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[814,[-1]]],[[690,[[689,[[814,[688]]]]]]],641],[[[765,[-1]]],[[690,[[689,[[765,[688]]]]]]],641],[[[763,[-1]]],[[690,[[689,[[763,[688]]]]]]],641],[[[814,[-1]]],[[690,[[689,[[814,[688]]]]]]],641],[[[765,[-1]]],[[690,[[689,[[765,[688]]]]]]],641],[[[763,[-1]]],[[690,[[689,[[763,[688]]]]]]],641],0,[[1002,1002],1002],[[1002,1002],22],[[1002,1002],1002],[[1002,1002],22],[1002,58],[1002,58],[[1002,1002],1002],[[1002,1002],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[812,812],[[[1003,[-1]]],[[1003,[-1]]],48],[1004,1004],[1005,1005],[804,804],[806,806],[1006,1006],[1007,1007],[1008,1008],[808,808],[1009,1009],[1010,1010],[809,809],[1002,1002],[1011,1011],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[1002,1002],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1002,1002],5],[[],1011],0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[1002,1002],1002],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[[[814,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[765,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[763,[-1]]],22,641],[[],1002],0,[[1002,1002],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[1002,-1],22,[[33,[],[[32,[1002]]]]]],[[812,72],[[74,[22,73]]]],[[[814,[-1]],72],[[74,[22,73]]],[78,641]],[[[1003,[-1]],72],[[74,[22,73]]],78],[[[1003,[[842,[996]]]],72],[[74,[22,73]]]],[[[1003,[958]],72],[[74,[22,73]]]],[[815,72],[[74,[22,73]]]],[[815,72],[[74,[22,73]]]],[[1004,72],[[74,[22,73]]]],[[1005,72],[[74,[22,73]]]],[[1005,72],[[74,[22,73]]]],[[804,72],[[74,[22,73]]]],[[806,72],[[74,[22,73]]]],[[806,72],[[74,[22,73]]]],[[[765,[-1]],72],[[74,[22,73]]],[78,641]],[[1006,72],[[74,[22,73]]]],[[1007,72],[[74,[22,73]]]],[[1008,72],[[74,[22,73]]]],[[808,72],[[74,[22,73]]]],[[1009,72],[[74,[22,73]]]],[[1009,72],[[74,[22,73]]]],[[1010,72],[[74,[22,73]]]],[[1010,72],[[74,[22,73]]]],[[809,72],[[74,[22,73]]]],[[809,72],[[74,[22,73]]]],[[1002,72],[[74,[22,73]]]],[[1002,72],[[74,[22,73]]]],[[1002,72],[[74,[22,73]]]],[[1002,72],[[74,[22,73]]]],[[1002,72],[[74,[22,73]]]],[[1011,72],[[74,[22,73]]]],[[[763,[-1]],72],[[74,[22,73]]],[78,641]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[1003,[958]]],815],[713,815],[-1,-1,[]],[[[1003,[[842,[996]]]]],815],[714,815],[-1,-1,[]],[694,1005],[-1,-1,[]],[702,1005],[-1,-1,[]],[712,806],[1012,806],[1005,806],[714,806],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[713,809],[746,809],[712,809],[1005,809],[-1,-1,[]],[714,809],[1010,809],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[63,[1002]]]],[58,1002],[58,1002],[58,1002],[-1,1002,[[33,[],[[32,[1002]]]]]],[120,[[63,[1002]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1002,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,[[1002,1002],22],[[1002,1002],1002],[[1002,1002],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1002],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1002,5],[1002,5],[1002,[[679,[1002]]]],[1002,[[680,[1002]]]],[[[814,[-1]]],51,641],0,0,0,0,0,0,[[815,120],[[63,[856]]]],0,0,0,0,[1002,1002],0,[[1002,1002],22],[[1002,1002,5],22],0,[[[1003,[-1]]],[[63,[683]]],683],[815,[[63,[683]]]],[1005,[[63,[683]]]],[806,[[63,[683]]]],[809,[[63,[683]]]],0,0,0,0,0,0,[[1002,1002],1002],[[1002,1002],22],[[1002,1002],1002],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[[1002,1002],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1002,1002],1002],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[825,825],[822,822],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[[825,72],[[74,[22,73]]]],[[825,72],[[74,[22,73]]]],[[822,72],[[74,[22,73]]]],[[822,72],[[74,[22,73]]]],[[824,72],[[74,[22,73]]]],[714,825],[-1,-1,[]],[-1,-1,[]],[712,822],[714,822],[766,822],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[825,[[63,[683]]]],[822,[[63,[683]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[826,826],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],826],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],0,[[826,826],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[826,72],[[74,[22,73]]]],[[[1013,[-1,-2]],72],[[74,[22,73]]],[78,833],[78,[1014,[-1]]]],[[[1013,[-1,-2]],-1,-2],22,833,[[1014,[-1]]]],[[[1013,[-1,-2]],-1,120],22,833,[[1014,[-1]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[826,5],[[[1013,[-1,-2]],-1],51,833,[[1014,[-1]]]],0,0,0,0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[1013,[-1,-2]],-1,[1015,[-2,-1]]],[[63,[[96,[-2]]]]],833,[[1014,[-1]]]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[1014,[[690,[-1]]],833],[[[762,[-1]]],[[690,[[689,[[762,[688]]]]]]],641],[[[820,[-1]]],[[690,[[689,[[820,[688]]]]]]],641],[[[793,[-1]]],[[690,[[689,[[793,[688]]]]]]],641],[[[794,[-1]]],[[690,[[689,[[794,[688]]]]]]],641],[[[792,[-1]]],[[690,[[689,[[792,[688]]]]]]],641],[[[764,[-1]]],[[690,[[689,[[764,[688]]]]]]],641],[1014,[[690,[-1]]],833],[[[762,[-1]]],[[690,[[689,[[762,[688]]]]]]],641],[[[820,[-1]]],[[690,[[689,[[820,[688]]]]]]],641],[[[793,[-1]]],[[690,[[689,[[793,[688]]]]]]],641],[[[794,[-1]]],[[690,[[689,[[794,[688]]]]]]],641],[[[792,[-1]]],[[690,[[689,[[792,[688]]]]]]],641],[[[764,[-1]]],[[690,[[689,[[764,[688]]]]]]],641],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[793,[-1]]],1016,641],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[783,783],[802,802],[1017,1017],[1018,1018],[803,803],[827,827],[1019,1019],[828,828],[829,829],[810,810],[1020,1020],[811,811],[807,807],[800,800],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],827],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[[690,[-1]]],22,833],[56,22],[56,22],[56,22],[56,22],[[[762,[-1]]],22,641],[56,22],[56,22],[56,22],[[[1021,[-1]]],22,641],[56,22],[[[820,[-1]]],22,641],[56,22],[[[793,[-1]]],22,641],[56,22],[[[1022,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[794,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[[[792,[-1]]],22,641],[56,22],[56,22],[56,22],[[[764,[-1]]],22,641],[56,22],[56,22],[[827,827],5],[[810,810],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[[690,[-1]],72],[[74,[22,73]]],[78,833]],[[1023,72],[[74,[22,73]]]],[[1024,72],[[74,[22,73]]]],[[801,72],[[74,[22,73]]]],[[783,72],[[74,[22,73]]]],[[783,72],[[74,[22,73]]]],[[[762,[-1]],72],[[74,[22,73]]],[78,641]],[[802,72],[[74,[22,73]]]],[[802,72],[[74,[22,73]]]],[[[1021,[-1]],72],[[74,[22,73]]],[78,641]],[[[820,[-1]],72],[[74,[22,73]]],[78,641]],[[[1025,[-1]],72],[[74,[22,73]]],[78,641]],[[[793,[-1]],72],[[74,[22,73]]],[78,641]],[[[1022,[-1]],72],[[74,[22,73]]],[78,641]],[[1017,72],[[74,[22,73]]]],[[1018,72],[[74,[22,73]]]],[[1018,72],[[74,[22,73]]]],[[803,72],[[74,[22,73]]]],[[803,72],[[74,[22,73]]]],[[827,72],[[74,[22,73]]]],[[1019,72],[[74,[22,73]]]],[[1019,72],[[74,[22,73]]]],[[[794,[-1]],72],[[74,[22,73]]],[78,641]],[[828,72],[[74,[22,73]]]],[[828,72],[[74,[22,73]]]],[[829,72],[[74,[22,73]]]],[[829,72],[[74,[22,73]]]],[[810,72],[[74,[22,73]]]],[[[792,[-1]],72],[[74,[22,73]]],[78,641]],[[1020,72],[[74,[22,73]]]],[[811,72],[[74,[22,73]]]],[[811,72],[[74,[22,73]]]],[[807,72],[[74,[22,73]]]],[[807,72],[[74,[22,73]]]],[[[764,[-1]],72],[[74,[22,73]]],[78,641]],[[800,72],[[74,[22,73]]]],[[800,72],[[74,[22,73]]]],0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[714,783],[-1,-1,[]],[716,783],[-1,-1,[]],[783,802],[712,802],[714,802],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[1018,803],[714,803],[828,803],[712,803],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[713,811],[-1,-1,[]],[714,811],[-1,-1,[]],[713,807],[714,807],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[1026,1024],[[[95,[54]]],1024],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1014,1014],5],[[[96,[1014]]],5],[1014,51],[[[1021,[-1]]],78,641],[[[820,[-1]]],51,641],[[[1022,[-1]]],78,641],0,0,0,0,0,0,0,0,0,0,0,0,0,[[[96,[1014]]],56],0,0,0,[783,[[63,[683]]]],[802,[[63,[683]]]],[803,[[63,[683]]]],[811,[[63,[683]]]],[807,[[63,[683]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[[1015,[-2,-1]],72],[[74,[22,73]]],[78,833],[78,[1014,[-1]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[1015,[-2,-1]],-1],[[96,[-2]]],833,[[1014,[-1]]]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[526,526],[[74,[22,716]]]],[[1027,1028,[499,[873,684,[951,[950]]]],120,523,[499,[58,1029,[951,[950]]]],[63,[603]]],[[74,[[499,[58,1029,[951,[950]]]],1012]]]],[[514,1030],[[74,[22,1030]]]],[[527,527],[[74,[22,717]]]],[1030,1030],[1029,1029],[716,716],[717,717],[1031,1031],[1032,1032],[1033,1033],[1012,1012],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[1030,72],[[74,[22,73]]]],[[1030,72],[[74,[22,73]]]],[[1029,72],[[74,[22,73]]]],[[1029,72],[[74,[22,73]]]],[[1027,72],[[74,[22,73]]]],[[716,72],[[74,[22,73]]]],[[716,72],[[74,[22,73]]]],[[717,72],[[74,[22,73]]]],[[717,72],[[74,[22,73]]]],[[1031,72],[[74,[22,73]]]],[[1031,72],[[74,[22,73]]]],[[1032,72],[[74,[22,73]]]],[[1032,72],[[74,[22,73]]]],[[1033,72],[[74,[22,73]]]],[[1033,72],[[74,[22,73]]]],[[1012,72],[[74,[22,73]]]],[[1012,72],[[74,[22,73]]]],[[1027,120],[[74,[5,1012]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[896,915,546,520],1027],[546,1028],[1012,[[63,[683]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[610,1029],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1034,[63,[247]]],[[74,[[63,[[1035,[-1]]]],1036]]],1037],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,0,0,[[],1038],[[],1039],[[],1040],[[],1041],[[],1042],[[],1043],[[],1044],[[],1045],[[],1046],[[],1047],[[],1048],0,0,[1049,58],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[[1050,58],1050],0,0,[[1051,[1052,[-1]]],22,1037],[[1051,120],22],[[1051,[63,[120]]],[[74,[22,774]]]],[[1051,58],22],[[1051,[1053,[-1]]],22,1037],0,0,0,0,[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],[1038,58],[1038,58],[1039,58],[1039,58],[1040,58],[1040,58],[1041,83],[1041,83],[1042,58],[1042,58],[1043,83],[1043,83],[1044,83],[1044,83],[1045,83],[1045,83],[1046,69],[1046,69],[1047,69],[1047,69],[1048,83],[1048,83],[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,[[1051,58,-2],22,1037,[[33,[],[[32,[[1054,[-1]]]]]]]],0,0,[[1055,1050,1050],22],[[1056,1050],22],[[1051,[161,[90]]],22],0,0,[774,774],[1057,1057],[1058,1058],[1036,1036],[672,672],[1038,1038],[1039,1039],[1040,1040],[1041,1041],[1042,1042],[1043,1043],[1044,1044],[1045,1045],[1046,1046],[1047,1047],[1059,1059],[1060,1060],[1061,1061],[838,838],[1062,1062],[1063,1063],[1049,1049],[1064,1064],[1065,1065],[1066,1066],[[[1067,[-1]]],[[1067,[-1]]],[48,1037]],[[[1068,[-1]]],[[1068,[-1]]],1037],[[[1069,[-1]]],[[1069,[-1]]],1037],[1070,1070],[[[1071,[-1]]],[[1071,[-1]]],[48,1037]],[[[1072,[-1]]],[[1072,[-1]]],[48,1037]],[1073,1073],[[[1074,[-1]]],[[1074,[-1]]],1037],[[[1075,[-1]]],[[1075,[-1]]],[48,1037]],[1076,1076],[[[1077,[-1]]],[[1077,[-1]]],[48,1037]],[1078,1078],[[[1079,[-1]]],[[1079,[-1]]],48],[[[1080,[-1]]],[[1080,[-1]]],[48,1037]],[[[1081,[-1]]],[[1081,[-1]]],[48,1037]],[1082,1082],[1083,1083],[1050,1050],[1055,1055],[1056,1056],[[[1084,[-1]]],[[1084,[-1]]],1037],[[[1085,[-1]]],[[1085,[-1]]],1037],[[[1086,[-1]]],[[1086,[-1]]],[48,1037]],[[[1087,[-1]]],[[1087,[-1]]],1037],[[[1053,[-1]]],[[1053,[-1]]],[48,1037]],[[[1088,[-1]]],[[1088,[-1]]],1037],[[[1052,[-1]]],[[1052,[-1]]],[48,1037]],[1089,1089],[1090,1090],[1091,1091],[1092,1092],[[[1054,[-1]]],[[1054,[-1]]],[48,1037]],[[[1093,[-1]]],[[1093,[-1]]],[48,1037]],[[[1094,[-1]]],[[1094,[-1]]],[48,1037]],[[[1095,[-1]]],[[1095,[-1]]],[48,1037]],[[[1096,[-1]]],[[1096,[-1]]],[48,1037]],[[[1097,[-1]]],[[1097,[-1]]],[48,1037]],[[[1098,[-1]]],[[1098,[-1]]],[48,1037]],[1048,1048],[1099,1099],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,0,[1038,1038],[1039,1039],[1040,1040],[1041,1041],[1042,1042],[1043,1043],[1044,1044],[1045,1045],[1046,1046],[1047,1047],[1048,1048],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[1034,1078],[[74,[22,1036]]]],[[1038,1038],5],[[1039,1039],5],[[1040,1040],5],[[1041,1041],5],[[1042,1042],5],[[1043,1043],5],[[1044,1044],5],[[1045,1045],5],[[1046,1046],5],[[1047,1047],5],[[1048,1048],5],[1043,5],[1045,5],[[1051,-1],22,[[126,[],[[32,[1082]]]]]],[[1051,-1],22,[[126,[],[[32,[1056]]]]]],[1049,1050],[[1051,[161,[58]],90,684],22],[[1051,1047,-1],22,[[126,[],[[32,[1056]]]]]],[[1051,1047,-1],22,[[126,[],[[32,[1055]]]]]],0,0,0,0,[[1100,1089],[[74,[774]]]],[[1100,[1071,[-1]]],[[74,[774]]],1037],[[1100,1066],[[74,[774]]]],[[1100,1063],[[74,[774]]]],[[1100,[1072,[-1]]],[[74,[774]]],1037],[[1100,[1075,[-1]]],[[74,[1058]]],1037],[1100,[[74,[774]]]],[[1100,[1067,[-1]]],[[74,[774]]],1037],[[1100,[652,[[63,[120]]]]],[[74,[774]]]],[[1100,[1077,[-1]]],[[74,[1058]]],1037],[[1100,1065],[[74,[774]]]],[[1100,1101,1102],[[74,[1057]]]],[[1103,818,819],[[74,[672]]]],[[1100,1049],[[74,[774]]]],[[1100,1064],[[74,[774]]]],0,0,[[],1092],0,0,0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1103,22],[1100,22],[1100,22],0,[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],0,0,[1051,22],[1034,22],[[1051,[84,[58]]],22],[[1051,90],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[1051,58,58,58,58],22],[[1051,58,58,446,58,58],22],[[1051,90,58],22],[[1051,90,90,58],22],[[1051,90,58],22],[[1051,90,90,58],22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,0,0,0,[[],1038],[[],1039],[[],1040],[[],1041],[[],1042],[[],1043],[[],1044],[[],1045],[[],1046],[[],1047],[[],1048],0,[1051,22],[1051,22],[1051,[[74,[774]]]],0,0,[[1051,58],22],[1051,22],0,0,0,0,0,[1103,[[3,[[640,[-1]]]]],1037],[[774,774],5],[[1057,1057],5],[[1058,1058],5],[[1036,1036],5],[[1038,1038],5],[[1039,1039],5],[[1040,1040],5],[[1041,1041],5],[[1042,1042],5],[[1043,1043],5],[[1044,1044],5],[[1045,1045],5],[[1046,1046],5],[[1047,1047],5],[[1090,1090],5],[[1091,1091],5],[[1092,1092],5],[[1048,1048],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[1100,22],[[1038,-1],22,[[33,[],[[32,[1038]]]]]],[[1039,-1],22,[[33,[],[[32,[1039]]]]]],[[1040,-1],22,[[33,[],[[32,[1040]]]]]],[[1041,-1],22,[[33,[],[[32,[1041]]]]]],[[1042,-1],22,[[33,[],[[32,[1042]]]]]],[[1043,-1],22,[[33,[],[[32,[1043]]]]]],[[1044,-1],22,[[33,[],[[32,[1044]]]]]],[[1045,-1],22,[[33,[],[[32,[1045]]]]]],[[1046,-1],22,[[33,[],[[32,[1046]]]]]],[[1047,-1],22,[[33,[],[[32,[1047]]]]]],[[1048,-1],22,[[33,[],[[32,[1048]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,[[1100,-1],22,[[126,[],[[32,[[161,[90]]]]]]]],[[1104,72],[[74,[22,73]]]],[[774,72],[[74,[22,73]]]],[[774,72],[[74,[22,73]]]],[[1057,72],[[74,[22,73]]]],[[1057,72],[[74,[22,73]]]],[[1058,72],[[74,[22,73]]]],[[1058,72],[[74,[22,73]]]],[[1036,72],[[74,[22,73]]]],[[1036,72],[[74,[22,73]]]],[[672,72],[[74,[22,73]]]],[[672,72],[[74,[22,73]]]],[[1038,72],[[74,[22,73]]]],[[1038,72],[[74,[22,73]]]],[[1038,72],[[74,[22,73]]]],[[1038,72],[[74,[22,73]]]],[[1038,72],[[74,[22,73]]]],[[1039,72],[[74,[22,73]]]],[[1039,72],[[74,[22,73]]]],[[1039,72],[[74,[22,73]]]],[[1039,72],[[74,[22,73]]]],[[1039,72],[[74,[22,73]]]],[[1040,72],[[74,[22,73]]]],[[1040,72],[[74,[22,73]]]],[[1040,72],[[74,[22,73]]]],[[1040,72],[[74,[22,73]]]],[[1040,72],[[74,[22,73]]]],[[1041,72],[[74,[22,73]]]],[[1041,72],[[74,[22,73]]]],[[1041,72],[[74,[22,73]]]],[[1041,72],[[74,[22,73]]]],[[1041,72],[[74,[22,73]]]],[[1042,72],[[74,[22,73]]]],[[1042,72],[[74,[22,73]]]],[[1042,72],[[74,[22,73]]]],[[1042,72],[[74,[22,73]]]],[[1042,72],[[74,[22,73]]]],[[1043,72],[[74,[22,73]]]],[[1043,72],[[74,[22,73]]]],[[1043,72],[[74,[22,73]]]],[[1043,72],[[74,[22,73]]]],[[1043,72],[[74,[22,73]]]],[[1044,72],[[74,[22,73]]]],[[1044,72],[[74,[22,73]]]],[[1044,72],[[74,[22,73]]]],[[1044,72],[[74,[22,73]]]],[[1044,72],[[74,[22,73]]]],[[1045,72],[[74,[22,73]]]],[[1045,72],[[74,[22,73]]]],[[1045,72],[[74,[22,73]]]],[[1045,72],[[74,[22,73]]]],[[1045,72],[[74,[22,73]]]],[[1046,72],[[74,[22,73]]]],[[1046,72],[[74,[22,73]]]],[[1046,72],[[74,[22,73]]]],[[1046,72],[[74,[22,73]]]],[[1046,72],[[74,[22,73]]]],[[1047,72],[[74,[22,73]]]],[[1047,72],[[74,[22,73]]]],[[1047,72],[[74,[22,73]]]],[[1047,72],[[74,[22,73]]]],[[1047,72],[[74,[22,73]]]],[[1059,72],[[74,[22,73]]]],[[1060,72],[[74,[22,73]]]],[[1061,72],[[74,[22,73]]]],[[[640,[-1]],72],[[74,[22,73]]],[78,1037]],[[838,72],[[74,[22,73]]]],[[[1035,[-1]],72],[[74,[22,73]]],[78,1037]],[[[648,[-1]],72],[[74,[22,73]]],[78,1037]],[[1062,72],[[74,[22,73]]]],[[1063,72],[[74,[22,73]]]],[[1049,72],[[74,[22,73]]]],[[1064,72],[[74,[22,73]]]],[[1065,72],[[74,[22,73]]]],[[1066,72],[[74,[22,73]]]],[[[1067,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1068,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1069,[-1]],72],[[74,[22,73]]],[78,1037]],[[1070,72],[[74,[22,73]]]],[[[1071,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1072,[-1]],72],[[74,[22,73]]],[78,1037]],[[1073,72],[[74,[22,73]]]],[[[1074,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1075,[-1]],72],[[74,[22,73]]],[78,1037]],[[1076,72],[[74,[22,73]]]],[[[1077,[-1]],72],[[74,[22,73]]],[78,1037]],[[1078,72],[[74,[22,73]]]],[[[1079,[-1]],72],[[74,[22,73]]],78],[[[1080,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1081,[-1]],72],[[74,[22,73]]],[78,1037]],[[1082,72],[[74,[22,73]]]],[[1083,72],[[74,[22,73]]]],[[1050,72],[[74,[22,73]]]],[[1055,72],[[74,[22,73]]]],[[1056,72],[[74,[22,73]]]],[[[1084,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1085,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1086,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1087,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1053,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1088,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1052,[-1]],72],[[74,[22,73]]],[78,1037]],[[1089,72],[[74,[22,73]]]],[[1090,72],[[74,[22,73]]]],[[1091,72],[[74,[22,73]]]],[[1092,72],[[74,[22,73]]]],[[[1054,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1093,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1105,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1094,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1095,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1096,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1097,[-1]],72],[[74,[22,73]]],[78,1037]],[[[1098,[-1]],72],[[74,[22,73]]],[78,1037]],[[1048,72],[[74,[22,73]]]],[[1048,72],[[74,[22,73]]]],[[1048,72],[[74,[22,73]]]],[[1048,72],[[74,[22,73]]]],[[1048,72],[[74,[22,73]]]],[[1099,72],[[74,[22,73]]]],0,0,0,0,0,0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[1106,774],[1107,774],[-1,-1,[]],[1108,774],[1109,774],[774,1057],[-1,-1,[]],[774,1058],[-1,-1,[]],[774,1036],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[514,1041],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[63,[1038]]]],[58,[[63,[1039]]]],[58,[[63,[1040]]]],[83,[[63,[1041]]]],[58,[[63,[1042]]]],[83,[[63,[1043]]]],[83,[[63,[1044]]]],[83,[[63,[1045]]]],[69,[[63,[1046]]]],[69,[[63,[1047]]]],[83,[[63,[1048]]]],[58,1038],[58,1038],[58,1039],[58,1039],[58,1040],[58,1040],[83,1041],[83,1041],[58,1042],[58,1042],[83,1043],[83,1043],[83,1044],[83,1044],[83,1045],[83,1045],[69,1046],[69,1046],[69,1047],[69,1047],[83,1048],[83,1048],[58,1038],[58,1039],[58,1040],[83,1041],[58,1042],[83,1043],[83,1044],[83,1045],[69,1046],[69,1047],[83,1048],[-1,1038,[[33,[],[[32,[1038]]]]]],[-1,1039,[[33,[],[[32,[1039]]]]]],[-1,1040,[[33,[],[[32,[1040]]]]]],[-1,1041,[[33,[],[[32,[1041]]]]]],[-1,1042,[[33,[],[[32,[1042]]]]]],[-1,1043,[[33,[],[[32,[1043]]]]]],[-1,1044,[[33,[],[[32,[1044]]]]]],[-1,1045,[[33,[],[[32,[1045]]]]]],[-1,1046,[[33,[],[[32,[1046]]]]]],[-1,1047,[[33,[],[[32,[1047]]]]]],[-1,1048,[[33,[],[[32,[1048]]]]]],[120,[[63,[1038]]]],[120,[[63,[1039]]]],[120,[[63,[1040]]]],[120,[[63,[1041]]]],[120,[[63,[1042]]]],[120,[[63,[1043]]]],[120,[[63,[1044]]]],[120,[[63,[1045]]]],[120,[[63,[1046]]]],[120,[[63,[1047]]]],[120,[[63,[1048]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1100,[1093,[-1]]],1092,1037],[1100,90],[1110,[[3,[51]]]],[1100,[[74,[90,774]]]],[1111,613],[1112,30],0,0,0,[[1038,-1],22,91],[[1039,-1],22,91],[[1040,-1],22,91],[[1041,-1],22,91],[[1042,-1],22,91],[[1043,-1],22,91],[[1044,-1],22,91],[[1045,-1],22,91],[[1046,-1],22,91],[[1047,-1],22,91],[[1048,-1],22,91],0,0,0,0,[1059,[[74,[1103,672]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],[[1051,120],22],[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[[1038,1038],5],[[1039,1039],5],[[1040,1040],5],[[1041,1041],5],[[1042,1042],5],[[1043,1043],5],[[1044,1044],5],[[1045,1045],5],[[1046,1046],5],[[1047,1047],5],[[1048,1048],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1038],[1039],[1040],[1041],[1042],[1043],[1044],[1045],[1046],[1047],[1048],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1100,-1],22,[[126,[],[[32,[[161,[90]]]]]]]],[1038,5],[1039,5],[1040,5],[1041,5],[1042,5],[1043,5],[1044,5],[1045,5],[1046,5],[1047,5],[1048,5],0,[1049,5],[1038,5],[1039,5],[1040,5],[1041,5],[1042,5],[1043,5],[1044,5],[1045,5],[1046,5],[1047,5],[1048,5],[1041,5],[1038,[[679,[1038]]]],[1039,[[679,[1039]]]],[1040,[[679,[1040]]]],[1041,[[679,[1041]]]],[1042,[[679,[1042]]]],[1043,[[679,[1043]]]],[1044,[[679,[1044]]]],[1045,[[679,[1045]]]],[1046,[[679,[1046]]]],[1047,[[679,[1047]]]],[1048,[[679,[1048]]]],[1038,[[680,[1038]]]],[1039,[[680,[1039]]]],[1040,[[680,[1040]]]],[1041,[[680,[1041]]]],[1042,[[680,[1042]]]],[1043,[[680,[1043]]]],[1044,[[680,[1044]]]],[1045,[[680,[1045]]]],[1046,[[680,[1046]]]],[1047,[[680,[1047]]]],[1048,[[680,[1048]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1041,540],[[1100,[161,[90]]],[[74,[1062,774]]]],[[618,615],1050],[[1083,1050],1050],0,0,0,0,[[1050,1050],1050],0,0,0,0,0,0,0,0,0,0,0,[[514,540],1041],[1038,1038],[1039,1039],[1040,1040],[1041,1041],[1042,1042],[1043,1043],[1044,1044],[1045,1045],[1046,1046],[1047,1047],[1048,1048],0,0,0,0,0,0,[[1111,520,546],[[74,[[648,[-1]],774]]],1037],0,0,[[1051,1099],22],[1112,[[74,[22,1036]]]],0,0,0,0,0,0,0,0,0,0,0,[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],[[1051,-1],22,[[126,[],[[32,[]]]]]],[[1051,[161,[58]]],22],0,0,0,0,0,0,0,0,[[1038,1038,5],22],[[1039,1039,5],22],[[1040,1040,5],22],[[1041,1041,5],22],[[1042,1042,5],22],[[1043,1043,5],22],[[1044,1044,5],22],[[1045,1045,5],22],[[1046,1046,5],22],[[1047,1047,5],22],[[1048,1048,5],22],[[1051,58,[98,[58]]],22],[[1051,[84,[30]]],22],[1051,22],[[1051,[1068,[-1]],597],22,1037],[[1051,523,58,[98,[58]]],22],[1051,22],[[1051,[1079,[58]]],22],[[1051,58],22],[[1051,58,[1068,[-1]]],22,1037],[[1051,[1079,[30]],[161,[30]]],22],0,0,0,0,0,0,0,[1057,[[63,[683]]]],[1058,[[63,[683]]]],[1036,[[63,[683]]]],[672,[[63,[683]]]],0,0,0,0,0,0,[1100,5],0,0,[1100,22],0,[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],[[1112,98,[63,[[22,[90]]]]],[[74,[22,774]]]],0,[1111,[[63,[838]]]],[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],0,0,0,0,0,[[1111,514],1040],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],0,[[1051,-2],22,1037,[[126,[],[[32,[[1080,[-1]]]]]]]],[[1051,-2],22,1037,[[126,[],[[32,[[1081,[-1]]]]]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1034,22],[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[1100,[[74,[22,774]]]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1100,90,58],[[74,[5,774]]]],0,[[1051,58],22],0,0,0,0,[859,523],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1113,[63,[247]]],[[74,[[63,[[1035,[688]]]],1036]]]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[1114,[1052,[688]]],22],[[1114,120],22],[[1114,[63,[120]]],[[74,[22,774]]]],[[1114,1115,58],22],[[1114,[1053,[688]]],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1114,58,-1],22,[[33,[],[[32,[[1054,[688]]]]]]]],[[1114,1115,[161,[90]]],22],[688,688],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1113,1113,1078],[[74,[22,1036]]]],[[1114,1115,1115,-1],22,[]],[[1114,1115,1115,-1],22,[]],[[1114,1115,[161,[58]],1115,90,684],22],[[1114,1115,1047,1115,-1],22,[]],[[1114,1115,1047,1115,-1],22,[]],[[1113,1089],[[74,[1115,774]]]],[[1113,[1071,[688]]],[[74,[1115,774]]]],[[1113,1066],[[74,[1115,774]]]],[[1113,1063],[[74,[1115,774]]]],[[1113,[1072,[688]]],[[74,[1114,774]]]],[[1113,[1075,[688]]],[[74,[1115,1058]]]],[1113,[[74,[1115,774]]]],[120,673],[[1113,[1067,[688]]],[[74,[1115,774]]]],[[1113,[652,[[63,[120]]]]],[[74,[1115,774]]]],[[1113,[1077,[688]]],[[74,[1115,1058]]]],[[1113,1065],[[74,[1115,774]]]],[[1113,1101,1102],[[74,[1115,1057]]]],[[1113,818,819],[[74,[1113,672]]]],[[1113,1049],[[74,[1115,774]]]],[[1113,1115,1064],[[74,[1115,774]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1114],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1113],22],[[1113,1115],22],[[1113,1115],22],[1114,22],[[1113,1115],22],[[1114,[84,[58]]],22],[[1114,1115,90],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1114,58,58,58,58],22],[[1114,58,58,446,58,58],22],[[1114,1115,90,58],22],[[1114,1115,90,1115,90,58],22],[[1114,1115,90,58],22],[[1114,1115,90,1115,90,58],22],[56,22],[56,22],[56,22],[56,22],[1114,22],[1114,22],[1114,[[74,[1115,774]]]],[[1114,1115,58],22],[1114,22],[1113,[[3,[[640,[688]]]]]],[[1113,1113],22],[[1113,1115,-1],22,[]],[[688,72],[[74,[22,73]]]],[[1114,72],[[74,[22,73]]]],[[1115,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1113,[1093,[688]]],1092],[[1113,1115],90],[[1113,1115],[[74,[90,774]]]],[1113,613],[798,[[63,[[686,[688]]]]]],[1113,30],[[[791,[-1]]],[[830,[688]]],796],[[],56],[1059,[[74,[1113,672]]]],[[],56],[[],56],[[],56],[[1114,120],22],[673,63],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1113,1115,-1],22,[]],[[1113,1115,[161,[90]]],[[74,[1062,774]]]],[[1113,520,546],[[74,[[648,[688]],774]]]],[[1114,1099],22],[[1113,1113,1115],[[74,[22,1036]]]],[[1114,-1],22,[]],[[1114,1115,[161,[58]]],22],[[1114,1115,58,1115,[98,[58]]],22],[[1114,[84,[30]]],22],[[1114,1115],22],[[1114,[1068,[688]],597],22],[[1114,1115,523,58,[98,[58]]],22],[[1114,1115],22],[[1114,[1079,[58]]],22],[[1114,58],22],[[1114,58,[1068,[688]]],22],[[1114,[1079,[30]],[161,[30]]],22],[1113,5],[1113,22],[[1113,[98,[1115]],[63,[[22,[1115,90]]]]],[[74,[22,774]]]],[[1113,1113],[[63,[838]]]],[[1113,514],1040],[-1,-2,[],[]],[[1114,-1],22,[[126,[],[[32,[[1080,[688]]]]]]]],[[1114,-1],22,[[126,[],[[32,[[1081,[688]]]]]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1113,1113],22],[[1113,1115],[[74,[22,774]]]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[1113,1115,90,58],[[74,[5,774]]]],[[1114,1115,58],22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[1116,1117],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[1118,[1052,[1119]]],22],[[1118,120],22],[[1118,[63,[120]]],[[74,[22,774]]]],[[1118,1120,58],22],[[1118,[1053,[1119]]],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1118,58,-1],22,[[33,[],[[32,[[1054,[1119]]]]]]]],[[1118,1121,[161,[90]]],22],[1119,1119],[1122,1122],[1121,1121],[1123,1123],[1124,1124],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1125,1117],[[1118,1121,1121,-1],22,[[126,[],[[32,[1082]]]]]],[[1118,1121,1126,-1],22,[[126,[],[[32,[1056]]]]]],[[1118,1120,[161,[58]],1121,90,684],22],0,[[1118,1126,1047,1121,-1],22,[[126,[],[[32,[1056]]]]]],[[1118,1126,1047,1126,-1],22,[[126,[],[[32,[1055]]]]]],[[1125,1089],[[74,[22,774]]]],[[1125,[1071,[1119]]],[[74,[1127,774]]]],[[1125,1066],[[74,[1128,774]]]],[[1125,1063],[[74,[1121,774]]]],[[1125,[1072,[1119]]],[[74,[1118,774]]]],[[1125,[1075,[1119]]],[[74,[1129,1058]]]],[1125,[[74,[1130,774]]]],[120,673],[[1125,[1067,[1119]]],[[74,[1131,774]]]],[[1125,[652,[[63,[120]]]]],[[74,[1120,774]]]],[[1125,[1077,[1119]]],[[74,[1132,1058]]]],[[1125,1065],[[74,[1133,774]]]],[[1125,1101,1102],[[74,[1134,1057]]]],[[1125,1049],[[74,[1126,774]]]],[[1125,1126,1064],[[74,[1124,774]]]],0,[[],1135],[514,1126],[56,-1,[]],[1136],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[1125,22],22],[[1125,1127],22],[[1125,1128],22],[[1125,1121],22],[[1125,1118],22],[[1125,1129],22],[[1125,1130],22],[[1125,1131],22],[[1125,1120],22],[[1125,1132],22],[[1125,1133],22],[[1125,1134],22],[[1125,1126],22],[[1125,1124],22],[1118,22],[[1118,[84,[58]]],22],[[1118,1121,90],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1118,58,58,58,58],22],[[1118,58,58,446,58,58],22],[[1118,1121,90,58],22],[[1118,1121,90,1121,90,58],22],[[1118,1121,90,58],22],[[1118,1121,90,1121,90,58],22],[56,22],[56,22],[1136,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[1117,[[63,[[1140,[[1139,[1137,1138]]]]]]]],[1117,[[63,[[22,[446,446]]]]]],[1118,22],[1118,22],[1118,[[74,[1135,774]]]],[[1118,1120,58],22],[1118,22],[[1125,1141],22],0,[[1125,1121,-1],22,[[126,[],[[32,[[161,[90]]]]]]]],[[1118,72],[[74,[22,73]]]],[[1119,72],[[74,[22,73]]]],[[1122,72],[[74,[22,73]]]],[[1121,72],[[74,[22,73]]]],[[1123,72],[[74,[22,73]]]],[[1126,72],[[74,[22,73]]]],[[1124,72],[[74,[22,73]]]],[[1133,72],[[74,[22,73]]]],[[1128,72],[[74,[22,73]]]],[[1131,72],[[74,[22,73]]]],[[1127,72],[[74,[22,73]]]],[[1134,72],[[74,[22,73]]]],[[1132,72],[[74,[22,73]]]],[[1129,72],[[74,[22,73]]]],[[1120,72],[[74,[22,73]]]],[[1130,72],[[74,[22,73]]]],[[1135,72],[[74,[22,73]]]],0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1125,[1093,[1119]]],1092],[[1125,22],90],[[1125,1130],[[74,[90,774]]]],[1116,613],[798,[[63,[[686,[1119]]]]]],[1141,30],[1117,[[1144,[1142,1143]]]],[[[791,[-1]]],[[830,[1119]]],796],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,[[1118,120],22],[673,63],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1125,1121,-1],22,[]],[1117,5],[1117,1136],[[1125,1121,[161,[90]]],[[74,[1062,774]]]],0,[-1,[[63,[[640,[1119]]]]],[[177,[120],[[19,[1145]]]]]],[[1116,520,546],[[74,[[648,[1119]],774]]]],[[1118,1099],22],[[1141,1146,1126],[[74,[22,1036]]]],[1117,1145],[1117,[[63,[1147]]]],[[1118,-1],22,[]],[[1118,1120,[161,[58]]],22],[[1118,1131,58,1127,[98,[58]]],22],[[1118,[84,[30]]],22],[[1118,1129],22],[[1118,[1068,[1119]],597],22],[[1118,1131,523,58,[98,[58]]],22],[[1118,1132],22],[[1118,[1079,[58]]],22],[[1118,58],22],[[1118,58,[1068,[1119]]],22],[[1118,[1079,[30]],[161,[30]]],22],[1125,5],[1125,22],[[1141,[98,[1135]],[63,[[22,[1130,90]]]]],[[74,[22,774]]]],[[1116,1146],[[63,[838]]]],[[1116,514],1040],[[1125,1148,1049,[63,[[95,[31]]]]],1126],[[1125,1148,1049,[63,[[95,[31]]]]],1126],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1118,-1],22,[[126,[],[[32,[[1080,[1119]]]]]]]],[[1118,-1],22,[[126,[],[[32,[[1081,[1119]]]]]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1125,1121],[[74,[22,774]]]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[1125,1130,90,58],[[74,[5,774]]]],[[1118,1120,58],22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1149,[63,[247]]],[[74,[[63,[[1035,[1150]]]],1036]]]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],1151],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[1152,[1052,[1150]]],22],[[1152,120],22],[[1152,[63,[120]]],[[74,[22,774]]]],[[1152,1153,58],22],[[1152,[1053,[1150]]],22],[[1151,1151],1151],[[1151,1151],22],[[1151,1151],1151],[[1151,1151],22],[1151,58],[1151,58],[[1151,1151],1151],[[1151,1151],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1154,1155],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1156,1157],[[1152,58,-1],22,[[33,[],[[32,[[1054,[1150]]]]]]]],[[1152,1157,[161,[90]]],22],[1150,1150],[1151,1151],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[1151,1151],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1149,1158,1078],[[74,[22,1036]]]],[[1151,1151],5],[[1152,1157,1157,-1],22,[[126,[],[[32,[1082]]]]]],[[1152,1157,1155,-1],22,[[126,[],[[32,[1056]]]]]],[[1152,1153,[161,[58]],1157,90,684],22],[[1152,1155,1047,1157,-1],22,[[126,[],[[32,[1056]]]]]],[[1152,1155,1047,1155,-1],22,[[126,[],[[32,[1055]]]]]],[[1158,1089],[[74,[1159,774]]]],[[1158,[1071,[1150]]],[[74,[1160,774]]]],[[1158,1066],[[74,[1161,774]]]],[[1158,1063],[[74,[1157,774]]]],[[1158,[1072,[1150]]],[[74,[1152,774]]]],[[1158,[1075,[1150]]],[[74,[1162,1058]]]],[1158,[[74,[1163,774]]]],[120,673],[[1158,[1067,[1150]]],[[74,[1164,774]]]],[[1158,[652,[[63,[120]]]]],[[74,[1153,774]]]],[[1158,[1077,[1150]]],[[74,[1165,1058]]]],[[1158,1065],[[74,[1166,774]]]],[[1158,1101,1102],[[74,[1167,1057]]]],[[1168,818,819],[[74,[1149,672]]]],[[1158,1049],[[74,[1155,774]]]],[[1158,1155,1064],[[74,[1169,774]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[1170,58,521],[[74,[[3,[1171]],672]]]],[[1158,1159],22],[[1158,1160],22],[[1158,1161],22],[[1158,1157],22],[[1158,1152],22],[[1158,1162],22],[[1158,1163],22],[[1158,1164],22],[[1158,1153],22],[[1158,1165],22],[[1158,1166],22],[[1158,1167],22],[[1168,1149],22],[[1158,1155],22],[[1158,1169],22],[[1172,1173,5,[98,[1171]],520,58,58],[[74,[[648,[1150]],774]]]],[[1151,1151],1151],[1152,22],[[1149,1154],22],[[1152,[84,[58]]],22],[[1152,1157,90],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1152,58,58,58,58],22],[[1152,58,58,446,58,58],22],[[1152,1157,90,58],22],[[1152,1157,90,1157,90,58],22],[[1152,1157,90,58],22],[[1152,1157,90,1157,90,58],22],[56,22],[1174,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[],1151],[1158,[[98,[1171]]]],[1152,22],[1152,22],[1152,[[74,[1175,774]]]],[[1152,1153,58],22],[1152,22],[1174,1170],[1168,[[3,[[640,[1150]]]]]],[[1151,1151],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[1158,1176],22],[[1168,1177],[[63,[[640,[1150]]]]]],[[1151,-1],22,[[33,[],[[32,[1151]]]]]],[1174,[[98,[1171]]]],[[1158,1157,-1],22,[[126,[],[[32,[[161,[90]]]]]]]],[[1152,72],[[74,[22,73]]]],[[1150,72],[[74,[22,73]]]],[[1178,72],[[74,[22,73]]]],[[1154,72],[[74,[22,73]]]],[[1151,72],[[74,[22,73]]]],[[1151,72],[[74,[22,73]]]],[[1151,72],[[74,[22,73]]]],[[1151,72],[[74,[22,73]]]],[[1151,72],[[74,[22,73]]]],[[1157,72],[[74,[22,73]]]],[[1159,72],[[74,[22,73]]]],[[1155,72],[[74,[22,73]]]],[[1169,72],[[74,[22,73]]]],[[1166,72],[[74,[22,73]]]],[[1161,72],[[74,[22,73]]]],[[1164,72],[[74,[22,73]]]],[[1160,72],[[74,[22,73]]]],[[1175,72],[[74,[22,73]]]],[[1167,72],[[74,[22,73]]]],[[1165,72],[[74,[22,73]]]],[[1162,72],[[74,[22,73]]]],[[1153,72],[[74,[22,73]]]],[[1163,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[63,[1151]]]],[58,1151],[58,1151],[58,1151],[-1,1151,[[33,[],[[32,[1151]]]]]],[120,[[63,[1151]]]],[[1170,1179,58,58,[63,[1180]],[3,[1171]],521,5,[63,[[95,[31]]]]],[[74,[1168,672]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1158,[1093,[1150]]],1092],[[1158,1159],90],[[1158,1163],[[74,[90,774]]]],[1172,613],[798,[[63,[[686,[1150]]]]]],[1176,30],[[1151,-1],22,91],[[[791,[-1]]],[[830,[1150]]],796],[[],56],[[],56],[1059,[[74,[1168,672]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[1151,1151],22],[[1152,120],22],[1174,58],[673,63],[[1151,1151],1151],[[1151,1151],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1151],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1158,1157,-1],22,[[126,[],[[32,[[161,[90]]]]]]]],[1151,5],[1151,5],[1151,[[679,[1151]]]],[1151,[[680,[1151]]]],[[1158,1157,[161,[90]]],[[74,[1062,774]]]],[1151,1151],[[1172,520,546],[[74,[[648,[1150]],774]]]],[1172,1181],[[1172,[98,[1171]],520],1182],[[1152,1099],22],[[1176,1149,1154],[[74,[22,1036]]]],[1158,58],[1158,58],[1158,1173],[1155,1183],[1174,1179],[1172,1177],[1158,1177],[1158,1184],[[1151,1151],22],[[1172,520],[[3,[1171]]]],[[1152,-1],22,[[126,[],[[32,[1175]]]]]],[[1152,1153,[161,[58]]],22],[[1151,1151,5],22],[[1152,1164,58,1160,[98,[58]]],22],[[1152,[84,[30]]],22],[[1152,1162],22],[[1152,[1068,[1150]],597],22],[[1152,1164,523,58,[98,[58]]],22],[[1152,1165],22],[[1152,[1079,[58]]],22],[[1152,58],22],[[1152,58,[1068,[1150]]],22],[[1152,[1079,[30]],[161,[30]]],22],[1168,1174],[1172,1174],[1158,1174],[1158,5],[1158,22],[[1151,1151],1151],[[1151,1151],22],[[1176,[98,[1175]],[63,[[22,[1163,90]]]]],[[74,[22,774]]]],[[1172,1149],[[63,[838]]]],[[1151,1151],1151],[[1172,514],1040],[[1183,1049,[63,[[95,[31]]]]],1155],[-1,-2,[],[]],[-1,-2,[],[]],[[1151,1151],22],[[1152,-1],22,[[126,[],[[32,[[1080,[1150]]]]]]]],[[1152,-1],22,[[126,[],[[32,[[1081,[1150]]]]]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1149,1158],22],[[1151,1151],1151],[[1158,1157],[[74,[22,774]]]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[1158,1163,90,58],[[74,[5,774]]]],[[1152,1153,58],22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[1185,818],[1186,819],[1185,818],[1186,819],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1185,818],[-1,-2,[],[]],[-1,-2,[],[]],[1186,819],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[818,1185],[819,1186],[1187,1187],[1188,1188],[1189,1189],[1190,1190],[1185,1185],[1186,1186],[1191,1191],[1192,1192],[1193,1193],[1194,1194],[1195,1195],[1196,1196],[1197,1197],[1198,1198],[1199,1199],[1200,1200],[1201,1201],[1202,1202],[1203,1203],[1204,1204],[1205,1205],[1206,1206],[1207,1207],[1208,1208],[1209,1209],[1210,1210],[1211,1211],[1212,1212],[1213,1213],[819,819],[818,818],[674,674],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,0,[675,[[74,[1185,674]]]],[1185,[[74,[1185,674]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[1187,1187],5],[[1188,1188],5],[[1189,1189],5],[[1190,1190],5],[[1185,1185],5],[[1186,1186],5],[[1191,1191],5],[[1192,1192],5],[[1193,1193],5],[[1194,1194],5],[[1195,1195],5],[[1196,1196],5],[[1197,1197],5],[[1198,1198],5],[[1199,1199],5],[[1200,1200],5],[[1201,1201],5],[[1202,1202],5],[[1203,1203],5],[[1204,1204],5],[[1205,1205],5],[[1206,1206],5],[[1207,1207],5],[[1208,1208],5],[[1209,1209],5],[[1210,1210],5],[[1211,1211],5],[[1212,1212],5],[[1213,1213],5],[[819,819],5],[[818,818],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],0,[[1187,72],[[74,[22,73]]]],[[1188,72],[[74,[22,73]]]],[[1189,72],[[74,[22,73]]]],[[1190,72],[[74,[22,73]]]],[[1185,72],[[74,[22,73]]]],[[1186,72],[[74,[22,73]]]],[[1191,72],[[74,[22,73]]]],[[1192,72],[[74,[22,73]]]],[[1193,72],[[74,[22,73]]]],[[1194,72],[[74,[22,73]]]],[[1195,72],[[74,[22,73]]]],[[1196,72],[[74,[22,73]]]],[[1197,72],[[74,[22,73]]]],[[1198,72],[[74,[22,73]]]],[[1199,72],[[74,[22,73]]]],[[1200,72],[[74,[22,73]]]],[[1201,72],[[74,[22,73]]]],[[1202,72],[[74,[22,73]]]],[[1203,72],[[74,[22,73]]]],[[1204,72],[[74,[22,73]]]],[[1205,72],[[74,[22,73]]]],[[1206,72],[[74,[22,73]]]],[[1207,72],[[74,[22,73]]]],[[1208,72],[[74,[22,73]]]],[[1209,72],[[74,[22,73]]]],[[1210,72],[[74,[22,73]]]],[[1211,72],[[74,[22,73]]]],[[1212,72],[[74,[22,73]]]],[[1213,72],[[74,[22,73]]]],[[819,72],[[74,[22,73]]]],[[818,72],[[74,[22,73]]]],[[674,72],[[74,[22,73]]]],[[674,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[1192,819],[1202,819],[1204,819],[1200,819],[1210,819],[1206,819],[1190,819],[1212,819],[1213,819],[1186,819],[1209,819],[1196,819],[1198,819],[1194,819],[-1,-1,[]],[1208,819],[1188,819],[1193,818],[1205,818],[1203,818],[1201,818],[1191,818],[1185,818],[1187,818],[1195,818],[1189,818],[-1,-1,[]],[1197,818],[1199,818],[1207,818],[1211,818],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[1187,-1],22,91],[[1188,-1],22,91],[[1189,-1],22,91],[[1190,-1],22,91],[[1185,-1],22,91],[[1186,-1],22,91],[[1191,-1],22,91],[[1192,-1],22,91],[[1193,-1],22,91],[[1194,-1],22,91],[[1195,-1],22,91],[[1196,-1],22,91],[[1197,-1],22,91],[[1198,-1],22,91],[[1199,-1],22,91],[[1200,-1],22,91],[[1201,-1],22,91],[[1202,-1],22,91],[[1203,-1],22,91],[[1204,-1],22,91],[[1205,-1],22,91],[[1206,-1],22,91],[[1207,-1],22,91],[[1208,-1],22,91],[[1209,-1],22,91],[[1210,-1],22,91],[[1211,-1],22,91],[[1212,-1],22,91],[[1213,-1],22,91],[[819,-1],22,91],[[818,-1],22,91],0,0,0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],1187],[[[1214,[1145]]],1188],[[],1189],[[[1214,[1145]]],1190],[[],1191],[[[1214,[1145]]],1192],[[],1193],[[[1214,[1145]]],1194],[[],1195],[[[1214,[1145]]],1196],[[[63,[[1214,[1145]]]],446],1197],[90,1198],[[[63,[[1214,[1145]]]],446],1199],[1148,1200],[[[1214,[1145]]],1201],[[[1214,[1145]]],1202],[446,1203],[58,1204],[[[1214,[1145]]],1205],[[[1214,[1145]]],1206],[[],1207],[58,1208],[[[1214,[1145]]],1209],[[[1214,[1145]]],1210],[[],1211],[1215,1212],[[[1214,[1145]]],1213],0,0,0,0,[1216,[[74,[818,674]]]],[-1,[[74,[818,674]]],[]],[1217,[[74,[819,674]]]],[-1,[[74,[819,674]]],[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,[676,[[74,[1186,674]]]],[1186,[[74,[1186,674]]]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-1],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[1218,[[98,[83]]]],[1219,[[98,[83]]]],[1220,[[98,[83]]]],[[],[[63,[519]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[645,645],[661,661],[1218,1218],[1219,1219],[1220,1220],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[1221,645],529],[[1221,516,[660,[[63,[120]],[98,[514]]]],661,[98,[83]]],535],[[],661],[[],1218],[[],1219],[[],1220],[56,-1,[]],[1222,[[98,[83]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1223,[161,[58]],[161,[58]]],22],[[1223,[161,[58]],446,[161,[58]]],22],[[1223,529,90],22],[[1223,529,90],22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[],[[63,[636]]]],[[645,645],5],[[661,661],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[1224,22],0,0,0,0,[[1224,72],[[74,[22,73]]]],[[645,72],[[74,[22,73]]]],[[661,72],[[74,[22,73]]]],[[1218,72],[[74,[22,73]]]],[[1219,72],[[74,[22,73]]]],[[1220,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[63,[637]]]],[[645,-1],22,91],[[661,-1],22,91],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[533,[63,[532]]],[[63,[534]]]],[[533,[63,[532]]],[[63,[534]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[98,[83]]],[[99,[[98,[58]]]]]],[90,1224],[120,519],[[],[[63,[549]]]],[[515,516,570,-1],22,[[54,[[74,[1222,607]]]],107]],[1224,22],[[1223,58,642,[98,[58]]],22],[[1223,570,597],22],[[1223,654],22],[[1223,523,58,[98,[83]]],22],[[1223,58,570],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,[[1224,518,529,90,684,515],538],0,0,0,0,0,0,0,0,0,0,0,0,0,[[[298,[],[[190,[-1]]]],-1],10,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1225,1225],[1226,1226],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[],1226],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[298,[],[[190,[-1]]]],-1],10,55],[[-1,123,131,1226,-2,[319,[-2]],-3],22,127,[[68,[87]],104],298],[56,22],[56,22],[[1226,1226],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[1225,72],[[74,[22,73]]]],[[1226,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[298,[],[[190,[-1]]]],-1],10,55],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[123,131,1226],134],[[],1226],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[38,123,131,[122,[-1]],1226,-2,[319,[-2]],-2,100,[63,[-1]]],136,48,[104,[68,[87]],297]],0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[283,[],[[190,[-1]]]],-1],26,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[26,26],[59,59],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[59,153],[[],26],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[59,59],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[26,72],[[74,[22,73]]]],[[59,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,59,[[68,[[99,[[98,[83]]]]]]]],[-1,59,[[68,[310]]]],[-1,-2,[],[]],[-1,-2,[],[]],[[59,-1],22,91],[[[283,[],[[190,[-1]]]],-1],26,55],[59,90],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[175,[],[[190,[-1]]]],-1],24,[55,48]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[185,185],[171,171],[24,24],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],185],[[],171],[[],[[191,[-1]]],[55,164]],[[],24],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,130,123,191,24,21],22,168],[56,22],[56,22],[56,22],[56,22],[[185,185],5],[[171,171],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[185,72],[[74,[22,73]]]],[[171,72],[[74,[22,73]]]],[[[191,[-1]],72],[[74,[22,73]]],[78,164]],[[24,72],[[74,[22,73]]]],[-1,-1,[]],[30,171],[-1,-1,[]],[47,171],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[185,-1],22,91],[[171,-1],22,91],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[191,-1,133,45,45,120,171,[63,[47]],63,80,81,185],132,168],[[171,47],47],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[300,[],[[190,[-1]]]],-1],8,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[8,8],[170,170],[1227,1227],[1228,1228],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[321,[-1]]],[[22,[56,56]]],168],[[],[[321,[-1]]],168],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[1228,172],[[[300,[],[[190,[-1]]]],-1],8,55],[[[300,[],[[190,[-1]]]],-1],43,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[[170,170],5],[[1227,1227],5],[[1228,1228],5],[[8,72],[[74,[22,73]]]],[[[321,[-1]],72],[[74,[22,73]]],168],[[170,72],[[74,[22,73]]]],[[1227,72],[[74,[22,73]]]],[[1228,72],[[74,[22,73]]]],[[[300,[],[[190,[-1]]]],-1],8,55],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[300,[],[[190,[-1]]]],-1],8,55],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[170,5],[[[321,[-1]],56],[[63,[[0,[[1230,[],[[1229,[120]]]]]]]]],168],[[[321,[-1]]],56,168],[[[321,[-1]]],[[0,[[126,[],[[32,[[0,[[1230,[],[[1229,[120]]]]]]]]]]]]],168],[[],[[321,[-1]]],168],[[[321,[-1]],170],22,168],[[[300,[],[[190,[-1]]]],-1],43,55],[[[321,[-1]]],[[63,[51]]],168],[[[300,[],[[190,[-1]]]],-1],43,55],[[[321,[-1]]],51,168],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[[300,[],[[190,[-1]]]],-1],43,55],[1228,1228],[120,[[321,[-1]]],168],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[274,[],[[190,[-1]]]],-1],13,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[13,13],[301,301],[1231,1231],[[[314,[-1]]],[[314,[-1]]],48],[1232,1232],[183,183],[[[1233,[-1]]],[[1233,[-1]]],[48,164]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[1233,[-1]]],1231,164],[[],1231],[[],[[1233,[-1]]],[55,164]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[274,[],[[190,[-1]]]],-1],13,55],[[[274,[],[[190,[-1]]]],-1],43,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2,123,131,1233,301,5,5,[63,[314]],21],22,168,274],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[183,183],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[13,72],[[74,[22,73]]]],[[301,72],[[74,[22,73]]]],[[301,72],[[74,[22,73]]]],[[1231,72],[[74,[22,73]]]],[[[314,[-1]],72],[[74,[22,73]]],78],[[1232,72],[[74,[22,73]]]],[[183,72],[[74,[22,73]]]],[[[1233,[-1]],72],[[74,[22,73]]],[78,164]],[183,[[1,[-1]]],[]],[[[1233,[-1]]],22,164],[[[1233,[-1]]],22,164],[[[274,[],[[190,[-1]]]],-1],13,55],[[],[[1233,[-1]]],164],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[183,-1],22,91],[[[274,[],[[190,[-1]]]],-1],13,55],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[301,56,444],22],[[301,56,301],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[301,5],[[[1233,[-1]]],5,164],[[[1233,[-1]]],5,164],[[-1,133,45,46,[63,[47]],63,171,[63,[314]],1233,301,120,5],132,168],[301,56],[[123,131,5],134],[[183,56],[[1,[-1]]],[]],[[[1233,[-1]],56],22,164],[[[1233,[-1]],56],22,164],[183,[[1,[-1]]],[]],[[[1233,[-1]]],22,164],[[[1233,[-1]]],22,164],[183,[[1,[-1]]],[]],[[[1233,[-1]]],22,164],[[[1233,[-1]]],22,164],[120,301],[-1,183,[[68,[[99,[120]]]]]],[[],[[1233,[-1]]],164],[[301,56],56],[[[274,[],[[190,[-1]]]],-1],43,55],[[301,56],56],[[301,56],22],[[301,56,56],22],[301,301],[[301,56,56],301],[183,[[1,[-1]]],[]],[[[1233,[-1]]],22,164],[[[1233,[-1]]],22,164],[[1231,301],[[63,[[22,[56,56]]]]]],[[[274,[],[[190,[-1]]]],-1],43,55],0,0,0,[[1231,301],1234],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[1233,[-1]]],22,164],[[[1233,[-1]]],22,164],[[],183],[[301,56],301],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[38,123,131,-1,135,[122,[-2]],301,[63,[47]],171,63,5,[63,[100]],[63,[100]],[63,[-2]],-3],136,168,48,[[54,[],[[19,[1233]]]]]],[[[274,[],[[190,[-1]]]],-1],43,55],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[1234,1234],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[1234,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[303,[],[[190,[-1]]]],-1,5],9,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[9,9],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[9,72],[[74,[22,73]]]],0,0,[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[303,[],[[190,[-1]]]],-1,5],9,55],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[322,322],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[322,322],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[322,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,[[[298,[],[[190,[-1]]]],-1],10,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[10,10],[1235,1235],[1236,1236],[1237,1237],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],1237],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[298,[],[[190,[-1]]]],-1],10,55],[[-1,123,131,1237,-2,[319,[-2]],-3],22,127,[[68,[87]],104],298],[56,22],[56,22],[56,22],[56,22],[[1237,1237],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[10,72],[[74,[22,73]]]],[[1235,72],[[74,[22,73]]]],[[1236,72],[[74,[22,73]]]],[[1237,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[298,[],[[190,[-1]]]],-1],10,55],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[123,131,1237],134],[[],1237],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[[38,123,131,[122,[-1]],1237,-2,[319,[-2]],-2,100,[63,[-1]]],136,48,[104,[68,[87]],297]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[1238,[[98,[83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[218,1239],[[1,[-1]]],[]],[[218,1240],[[1,[-1]]],[]],[[218,1241],[[1,[-1]]],[]],[1238,1238],[1239,1239],[1242,1242],[1243,1243],[218,218],[1240,1240],[1241,1241],[1244,1244],[138,138],[1245,1245],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[218,[[1,[-1]]],[]],[[218,218],109],[[138,138],109],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1238,[21,[58]]],[[74,[1238,1246]]]],0,[[],1242],[[],1240],[[],1244],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[218,[[1,[-1]]],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[1243,1243],5],[[218,218],5],[[1240,1240],5],[[1241,1241],5],[[1244,1244],5],[[138,138],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],0,[[218,-2],[[1,[-1]]],[],[[54,[90],[[19,[-1]]]]]],[[218,-2],[[1,[-1]]],[],[[54,[5],[[19,[-1]]]]]],[[218,-2],[[1,[-1]]],[],[[54,[[63,[5]]],[[19,[-1]]]]]],[[218,-2],[[1,[-1]]],[],[[54,[1241],[[19,[-1]]]]]],[[218,-2],[[1,[-1]]],[],[[54,[50],[[19,[-1]]]]]],[[[1247,[-1]],72],[[74,[22,73]]],[]],[[1238,72],[[74,[22,73]]]],[[1239,72],[[74,[22,73]]]],[[1242,72],[[74,[22,73]]]],[[1243,72],[[74,[22,73]]]],[[218,72],[[74,[22,73]]]],[[1240,72],[[74,[22,73]]]],[[1241,72],[[74,[22,73]]]],[[1244,72],[[74,[22,73]]]],[[138,72],[[74,[22,73]]]],[[1245,72],[[74,[22,73]]]],[[],[[34,[248]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[218,[[1,[-1]]],[]],[[218,-1],22,91],0,0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1239,[[22,[[3,[83]],[50,[58]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[1247,[-1]],-3],[[1247,[-2]]],[],[],[[100,[-1],[[19,[-2]]]],101,102]],0,[[218,5],[[1,[-1]]],[]],0,[[218,5],[[1,[-1]]],[]],[[218,17],[[1,[-1]]],[]],[[[3,[83]],[50,[58]]],1238],[[218,218],[[63,[109]]]],[[138,138],[[63,[109]]]],0,0,[[218,[63,[1245]]],[[1,[-1]]],[]],0,[[218,50],[[1,[-1]]],[]],0,[[218,-2],[[1,[-1]]],[],[[54,[1238],[[19,[-1]]]],107]],0,0,0,[1242,[[22,[218,[1,[-1]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[218,[[1,[-1]]],[]],[218,[[1,[-1]]],[]],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],218],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[1248,72],76],[[1248,72],76],[108,1248],[1249,1248],[1250,1248],[-1,-1,[]],[-1,-1,[]],[-1,[[74,[1239,1248]]],[[145,[650]]]],[[[98,[83]],[63,[1251]]],[[74,[1239,1248]]]],[[[3,[83]],58,58],[[74,[1239,1249]]]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1248,[[63,[683]]]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[1246,72],[[74,[22,73]]]],[[1246,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[1252,1252],[[-1,-2],22,[],[]],[-1,-2,[],[]],0,[[],1252],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[1252,1252],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],0,[[1252,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,[-1,-2,[],[]],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[63,[-2]]],[],[]],0],"c":[17727,45728,45729,46855,46857],"p":[[5,"Command",0],[6,"Action",49505],[5,"Vec",49506],[6,"Theme",0],[1,"bool"],[5,"Appearance",15580],[5,"Scrollbar",15714],[5,"Appearance",47842],[5,"Appearance",48565],[5,"Appearance",48658],[5,"Appearance",15186],[5,"Appearance",7096],[5,"Appearance",48078],[5,"Appearance",13763],[10,"TransformMatrix",49507],[5,"Radians",0],[5,"Point",0],[5,"Vector",0],[17,"Output"],[10,"Add",49508],[5,"Rectangle",0],[1,"tuple"],[5,"Appearance",2915],[5,"Appearance",47672],[5,"Appearance",13893],[5,"Appearance",47582],[5,"Appearance",15361],[5,"Appearance",15627],[5,"Appearance",14231],[1,"f32"],[10,"Any",49509],[17,"Item"],[10,"IntoIterator",49510],[5,"Subscription",0],[6,"Renderer",0],[6,"Alignment",0],[5,"Border",0],[6,"Event",0],[5,"Font",0],[6,"Gradient",0],[5,"Degrees",0],[6,"Background",0],[5,"Color",0],[6,"ContentFit",0],[6,"Length",0],[5,"Padding",0],[5,"Pixels",0],[10,"Clone",49511],[5,"Shadow",0],[5,"Size",0],[5,"String",49512],[5,"Palette",4418],[5,"Extended",5136],[10,"FnOnce",49513],[10,"Default",49514],[1,"usize"],[5,"Handle",13988],[1,"u32"],[5,"Handle",47582],[10,"Float",49515],[10,"Num",49516],[6,"FilterMethod",13988],[6,"Option",49517],[6,"Mesh",49518],[10,"Primitive",16160],[10,"Executor",0],[10,"PartialEq",49519],[10,"Into",49520],[1,"u16"],[5,"Quad",1868],[5,"Text",1199],[5,"Formatter",49521],[5,"Error",49521],[6,"Result",49522],[6,"Error",0],[8,"Result",49521],[10,"Display",49521],[10,"Debug",49521],[6,"Error",49523],[6,"Horizontal",2821],[6,"Vertical",2821],[5,"Linear",3369],[1,"u8"],[1,"array"],[5,"Rgb",49524],[5,"Alpha",49525],[1,"f64"],[1,"i64"],[10,"Recipe",2004],[1,"u64"],[10,"Hasher",49526],[10,"Hash",49526],[5,"Appearance",14352],[5,"Line",14352],[5,"Box",49527],[5,"Arc",49528],[5,"Rc",49529],[1,"slice"],[6,"Cow",49530],[10,"Fn",49513],[10,"MaybeSend",49531],[10,"Sync",49532],[10,"Mul",49508],[10,"Copy",49532],[17,"Message"],[10,"Sandbox",0],[10,"Send",49532],[5,"Error",49533],[6,"Ordering",49519],[10,"Future",49534],[5,"Settings",4319],[10,"Stream",49535],[6,"Application",4418],[10,"Sub",49508],[5,"SmolStr",49536],[5,"OutOfBounds",49537],[5,"TypeId",49509],[8,"Element",0],[10,"Operation",2420],[1,"str"],[5,"Radius",2972],[5,"Shell",1199],[5,"Layout",1199],[10,"Widget",1199],[5,"Tree",2420],[10,"Iterator",49538],[10,"Renderer",1199],[5,"Hasher",1199],[10,"Overlay",1199],[5,"Style",1868],[6,"Cursor",4048],[5,"Node",1507],[5,"Limits",1507],[6,"Interaction",4048],[10,"Clipboard",1199],[6,"Status",7759],[5,"Element",1771],[6,"RedrawRequest",48832],[6,"State",2731],[5,"Tag",2731],[5,"Bytes",1406],[6,"Data",1406],[17,"Handle"],[10,"Renderer",1406],[10,"AsRef",49520],[6,"Axis",1615],[5,"Element",49539],[5,"Click",1652],[6,"Kind",1730],[5,"Group",1771],[5,"Null",1868],[5,"Pin",49540],[6,"Data",2009],[10,"Renderer",2009],[17,"Font"],[10,"Editor",2057],[17,"Settings"],[17,"Highlight"],[17,"Iterator"],[10,"Highlighter",2057],[5,"Range",49541],[6,"Hit",2057],[6,"Difference",2057],[10,"Paragraph",2057],[6,"Cursor",2205],[17,"Paragraph"],[17,"Editor"],[10,"Renderer",2057],[5,"Format",2328],[6,"Action",47842],[6,"LineHeight",47672],[6,"Direction",2205],[5,"PlainText",2328],[5,"Text",2420],[10,"StyleSheet",47672],[5,"Id",2420],[10,"FnMut",49513],[10,"Borrow",49542],[6,"Outcome",2583],[10,"Focusable",2583],[5,"Id",15714],[5,"Id",13893],[5,"Id",48078],[10,"Scrollable",2583],[6,"Shaping",47672],[10,"TextInput",2583],[5,"AbsoluteOffset",15714],[5,"RelativeOffset",15714],[5,"Count",2643],[17,"Style"],[5,"State",47672],[10,"StyleSheet",2915],[17,"Executor"],[17,"Theme"],[17,"Flags"],[10,"Application",2915],[8,"Result",0],[5,"Sender",49543],[6,"PlatformSpecific",3022],[6,"MacOS",3022],[6,"Error",3123],[6,"Family",3123],[6,"Weight",3123],[6,"Stretch",3123],[6,"Style",3123],[5,"ColorStop",3369],[5,"Modifiers",3455],[6,"Key",3455],[6,"Event",3455],[6,"Location",3455],[10,"Ord",49519],[10,"PartialOrd",49519],[6,"Named",3693],[6,"Button",4048],[6,"Event",4048],[6,"ScrollDelta",4048],[10,"Application",4287],[5,"Id",48832],[10,"StyleSheet",14231],[6,"Infallible",49520],[5,"Information",4370],[5,"Custom",4418],[6,"Menu",4418],[6,"PickList",4418],[6,"Text",4418],[6,"Button",4418],[10,"StyleSheet",7096],[6,"Scrollable",4418],[10,"StyleSheet",15714],[6,"Svg",4418],[6,"Checkbox",4418],[6,"Container",4418],[6,"Slider",4418],[6,"Radio",4418],[6,"Toggler",4418],[6,"PaneGrid",4418],[6,"ProgressBar",4418],[6,"Rule",4418],[6,"TextInput",4418],[6,"TextEditor",4418],[5,"Pair",5136],[5,"Background",5136],[5,"Primary",5136],[5,"Secondary",5136],[5,"Success",5136],[5,"Danger",5136],[5,"Duration",5440],[5,"Instant",5440],[5,"Duration",49544],[1,"u128"],[10,"Deserializer",49545],[5,"Instant",49546],[5,"Instant",49547],[5,"Delay",49548],[10,"Serializer",49549],[5,"ConversionRange",49550],[5,"TryFromFloatSecsError",49551],[6,"Event",5613],[5,"Finger",5613],[5,"Column",5705],[5,"Row",5705],[5,"Container",5705],[10,"StyleSheet",13893],[5,"Button",5705],[5,"Canvas",5705],[10,"Renderer",7193],[10,"Program",7193],[5,"QRCode",5705],[5,"Checkbox",5705],[10,"StyleSheet",13763],[5,"MouseArea",5705],[5,"Themer",5705],[5,"ComboBox",5705],[10,"StyleSheet",48078],[5,"PaneGrid",5705],[10,"StyleSheet",14352],[5,"Scrollable",5705],[5,"Tooltip",5705],[5,"Lazy",5705],[5,"State",13852],[10,"Component",5705],[5,"Svg",5705],[10,"StyleSheet",47582],[5,"Image",5705],[5,"TextInput",5705],[6,"Direction",15714],[5,"PickList",5705],[10,"ToString",49512],[10,"StyleSheet",15186],[5,"ProgressBar",5705],[10,"StyleSheet",15361],[5,"Radio",5705],[10,"StyleSheet",15580],[5,"Rule",5705],[10,"StyleSheet",15627],[5,"Slider",5705],[10,"FromPrimitive",49552],[10,"StyleSheet",48658],[5,"TextEditor",5705],[10,"StyleSheet",47842],[5,"Value",48078],[5,"Toggler",5705],[10,"StyleSheet",48565],[5,"VerticalSlider",5705],[5,"Responsive",5705],[5,"Shader",5705],[10,"Program",16160],[10,"Renderer",49553],[5,"Space",5705],[5,"PathBuf",49554],[6,"Handle",15186],[10,"From",49520],[5,"Icon",13763],[5,"Icon",48078],[5,"Column",14175],[5,"State",14352],[5,"Pane",14352],[5,"Content",14352],[5,"RangeInclusive",49541],[10,"Eq",49519],[5,"Content",47842],[6,"Position",48611],[5,"State",15405],[6,"DragEvent",14352],[5,"ResizeEvent",14352],[5,"Viewport",15714],[17,"State"],[17,"Event"],[5,"State",7096],[6,"Frame",7193],[5,"Path",7193],[5,"Cache",7193],[6,"Gradient",7193],[5,"Fill",7193],[5,"Stroke",7193],[6,"LineCap",7193],[6,"LineJoin",7193],[5,"LineDash",7193],[6,"Style",7193],[5,"Text",7193],[6,"Event",7193],[17,"Geometry"],[6,"Geometry",7193],[5,"Linear",7856],[5,"Builder",7943],[5,"Packed",7856],[5,"Path",8080],[5,"UnknownUnit",10775],[5,"Transform2D",10775],[6,"Rule",7807],[5,"Arc",7943],[5,"Elliptical",8032],[5,"PathCommands",8080],[5,"PathCommandsSlice",8080],[5,"PathSlice",8080],[5,"PathBuffer",8080],[5,"PathBufferSlice",8080],[5,"EndpointId",8080],[5,"PathCommandsBuilder",9329],[5,"BuilderImpl",13137],[5,"NoAttributes",9007],[5,"Builder",13394],[5,"BuilderWithAttributes",13137],[5,"ArcFlags",8080],[6,"Event",8080],[5,"Polygon",8080],[5,"IdPolygon",8080],[6,"LineCap",8080],[6,"LineJoin",8080],[6,"Side",8080],[6,"FillRule",8080],[6,"Winding",8080],[5,"ControlPointId",8080],[5,"EventId",8080],[5,"Events",9329],[5,"Point2D",10775],[10,"AttributeStore",8080],[5,"AttributeSlice",8080],[10,"PositionStore",8080],[10,"Position",8080],[5,"IdIter",13137],[5,"PolygonIdIter",13534],[5,"Iter",9329],[5,"Iter",13137],[1,"i16"],[5,"Iter",13394],[5,"PolygonIter",13534],[5,"IdPolygonIter",13534],[5,"IterWithAttributes",13137],[5,"PathEvents",13534],[5,"CommandsPathSlice",9329],[5,"Reversed",13137],[5,"NoAttributes",12957],[5,"WithSvg",9007],[10,"Transformation",12931],[10,"PathBuilder",13694],[5,"Vector2D",10775],[5,"Angle",9532],[5,"LineSegment",9532],[10,"SvgPathBuilder",13694],[5,"Box2D",10775],[5,"BorderRadii",9007],[5,"Flattened",9007],[5,"Transformed",9007],[17,"PathType"],[10,"Build",13694],[5,"PointEvents",9329],[5,"LineEquation",9532],[10,"Scalar",9532],[5,"Triangle",9532],[10,"AddAssign",49508],[17,"Scalar"],[10,"Segment",9532],[5,"Arc",9532],[5,"CubicBezierSegment",9532],[5,"QuadraticBezierSegment",9532],[10,"Rem",49508],[10,"One",49555],[10,"FloatConst",49515],[10,"ApproxEq",12722],[10,"NumCast",49552],[5,"SvgArc",9532],[5,"Line",9532],[5,"ArrayVec",10363],[10,"Trig",10775],[10,"Div",49508],[10,"DivAssign",49508],[5,"Flattened",10313],[5,"Flattened",10733],[5,"Flattened",12821],[5,"FlattenedT",12821],[10,"MulAssign",49508],[10,"Neg",49508],[10,"Zero",49555],[10,"Real",49556],[5,"Size2D",10775],[10,"SubAssign",49508],[5,"ArrayString",10363],[5,"IntoIter",10363],[5,"CapacityError",10363],[5,"Drain",10363],[10,"RangeBounds",49541],[5,"Utf8Error",49557],[1,"char"],[5,"Arguments",49521],[1,"i32"],[1,"i8"],[1,"i128"],[10,"Signed",49558],[5,"Size3D",10775],[5,"Vector3D",10775],[5,"Length",10775],[5,"Point3D",10775],[5,"Scale",10775],[5,"SideOffsets2D",10775],[5,"Translation2D",10775],[5,"Translation3D",10775],[5,"BoolVector2D",10775],[5,"BoolVector3D",10775],[5,"Transform3D",10775],[5,"Rotation3D",10775],[5,"Rect",10775],[5,"Box3D",10775],[5,"Rotation2D",10775],[5,"RigidTransform3D",10775],[10,"Ceil",12811],[10,"One",12811],[5,"HomogeneousVector",10775],[10,"Zero",12811],[10,"Euclid",49559],[10,"Floor",12811],[10,"Round",12811],[10,"Saturating",49560],[5,"FlatteningParameters",12821],[5,"FromPolyline",12957],[10,"PathIterator",13694],[5,"Flattened",12957],[5,"Transformed",12957],[5,"BuilderWithAttributes",13394],[5,"IterBridge",49561],[5,"Viewer",13988],[5,"State",14133],[5,"State",14231],[5,"Menu",14231],[6,"Direction",14352],[5,"TitleBar",14352],[10,"Draggable",14352],[6,"Axis",14352],[6,"Configuration",14352],[6,"Node",14352],[5,"Split",14352],[6,"Target",14352],[6,"Region",14352],[6,"Edge",14352],[6,"Action",15093],[6,"Contents",14352],[5,"BTreeMap",49562],[5,"Internal",15093],[5,"HashMap",49563],[5,"Icon",15186],[5,"State",15186],[6,"Version",15405],[6,"ErrorCorrection",15405],[6,"Error",15405],[6,"QrError",49564],[6,"FillMode",15627],[5,"Properties",15714],[6,"Alignment",15714],[5,"Scroller",15714],[5,"State",15714],[6,"Event",16160],[5,"Storage",16160],[17,"Primitive"],[6,"TextureFormat",16250],[5,"Device",16250],[5,"Queue",16250],[5,"TextureView",16250],[5,"CommandEncoder",16250],[5,"Backends",16250],[5,"Features",16250],[5,"InstanceFlags",16250],[5,"DownlevelFlags",16250],[5,"ShaderStages",16250],[5,"TextureFormatFeatureFlags",16250],[5,"ColorWrites",16250],[5,"BufferUsages",16250],[5,"TextureUsages",16250],[5,"PipelineStatisticsTypes",16250],[5,"Buffer",16250],[6,"BindingResource",16250],[5,"BufferBinding",16250],[5,"Surface",16250],[5,"Instance",16250],[5,"Adapter",16250],[5,"Texture",16250],[5,"ImageCopyTextureBase",16250],[5,"QueueWriteBufferView",16250],[5,"BufferViewMut",16250],[5,"BufferView",16250],[6,"TextureAspect",16250],[5,"ComputePassDescriptor",16250],[5,"ComputePass",16250],[5,"RenderPass",16250],[5,"QuerySet",16250],[5,"RenderPassDescriptor",16250],[5,"Limits",16250],[5,"ImageSubresourceRange",16250],[6,"Backend",16250],[6,"PowerPreference",16250],[5,"RequestAdapterOptionsBase",16250],[5,"DownlevelCapabilities",16250],[6,"ShaderModel",16250],[6,"DeviceType",16250],[5,"AdapterInfo",16250],[6,"TextureViewDimension",16250],[6,"BlendFactor",16250],[5,"Id",16250],[6,"BlendOperation",16250],[5,"BlendComponent",16250],[5,"BlendState",16250],[5,"ColorTargetState",16250],[6,"PrimitiveTopology",16250],[6,"FrontFace",16250],[6,"Face",16250],[6,"ErrorFilter",16250],[6,"PolygonMode",16250],[5,"PrimitiveState",16250],[5,"SubmissionIndex",16250],[5,"MultisampleState",16250],[5,"BufferSlice",16250],[6,"ShaderSource",16250],[5,"ShaderModuleDescriptor",16250],[5,"TextureFormatFeatures",16250],[6,"AstcBlock",16250],[6,"AstcChannel",16250],[6,"LoadOp",16250],[6,"StoreOp",16250],[5,"Operations",16250],[5,"RenderPassTimestampWrites",16250],[5,"RenderPassColorAttachment",16250],[5,"RenderPassDepthStencilAttachment",16250],[5,"TextureViewDescriptor",16250],[5,"PipelineLayoutDescriptor",16250],[5,"SamplerDescriptor",16250],[5,"BindGroupEntry",16250],[5,"BindGroupDescriptor",16250],[5,"VertexBufferLayout",16250],[5,"VertexState",16250],[5,"FragmentState",16250],[6,"MaintainBase",16250],[5,"RenderPipelineDescriptor",16250],[5,"StencilState",16250],[5,"ComputePassTimestampWrites",16250],[5,"DepthBiasState",16250],[5,"DepthStencilState",16250],[5,"ComputePipelineDescriptor",16250],[6,"IndexFormat",16250],[5,"BindGroupLayoutDescriptor",16250],[6,"StencilOperation",16250],[5,"RenderBundleEncoderDescriptor",16250],[5,"StencilFaceState",16250],[6,"SurfaceError",16250],[6,"CompareFunction",16250],[5,"RequestDeviceError",16250],[5,"CreateSurfaceError",16250],[6,"VertexStepMode",16250],[5,"BufferAsyncError",16250],[5,"VertexAttribute",16250],[6,"MapMode",16250],[6,"VertexFormat",16250],[6,"PresentMode",16250],[6,"CompositeAlphaMode",16250],[5,"PresentationTimestamp",16250],[5,"Color",16250],[6,"TextureDimension",16250],[5,"Origin2d",16250],[5,"Origin3d",16250],[5,"Extent3d",16250],[6,"AddressMode",16250],[6,"FilterMode",16250],[5,"PushConstantRange",16250],[5,"CommandBufferDescriptor",16250],[5,"RenderBundleDepthStencil",16250],[5,"ImageDataLayout",16250],[6,"BufferBindingType",16250],[6,"TextureSampleType",16250],[6,"StorageTextureAccess",16250],[6,"SamplerBindingType",16250],[6,"BindingType",16250],[5,"BindGroupLayoutEntry",16250],[5,"ImageCopyBufferBase",16250],[6,"PredefinedColorSpace",16250],[5,"ImageCopyTextureTaggedBase",16250],[6,"SamplerBorderColor",16250],[6,"QueryType",16250],[6,"Dx12Compiler",16250],[6,"Gles3MinorVersion",16250],[6,"DeviceLostReason",16250],[5,"SurfaceConfiguration",49565],[5,"ExposedAdapter",39792],[10,"HalApi",27973],[5,"BindGroup",16250],[5,"BindGroupLayout",16250],[5,"BufferDescriptor",49565],[5,"BufferInitDescriptor",47161],[5,"CommandEncoderDescriptor",49565],[5,"ComputePipeline",16250],[5,"OpenDevice",39792],[5,"DeviceDescriptor",49565],[5,"Path",49554],[5,"PipelineLayout",16250],[5,"QuerySetDescriptor",49565],[5,"RenderBundleEncoder",16250],[5,"RenderPipeline",16250],[5,"Sampler",16250],[5,"ShaderModule",16250],[5,"ShaderModuleDescriptorSpirV",16250],[6,"SurfaceTarget",16250],[6,"SurfaceTargetUnsafe",16250],[5,"TextureDescriptor",49565],[6,"TextureDataOrder",47161],[5,"SurfaceCapabilities",16250],[5,"InstanceDescriptor",16250],[5,"CommandBuffer",16250],[5,"RenderBundle",16250],[5,"SurfaceTexture",16250],[5,"RenderBundleDescriptor",49565],[6,"Error",16250],[6,"SurfaceStatus",16250],[10,"WindowHandle",16250],[6,"RequestDeviceError",28279],[5,"InstanceError",39792],[5,"Instance",28279],[6,"HandleError",45705],[10,"HasDisplayHandle",45705],[10,"HasWindowHandle",45705],[5,"GlobalReport",27774],[6,"MaintainResult",16250],[5,"Iter",49566],[5,"IterNames",49566],[10,"WasmNotSend",16250],[10,"UncapturedErrorHandler",16250],[10,"Error",49567],[5,"NonZeroU64",49568],[5,"AnySurface",23421],[5,"HalSurface",28279],[5,"BindGroupLayout",23462],[5,"Api",43517],[5,"Id",28119],[5,"ResourceInfo",38034],[5,"PipelineLayout",23462],[5,"BindGroup",23462],[6,"BindGroupLayoutEntryError",23462],[6,"CreateBindGroupLayoutError",23462],[6,"CreateBindGroupError",23462],[6,"BindingZone",23462],[5,"BindingTypeMaxCountError",23462],[6,"BindingTypeMaxCountErrorKind",23462],[5,"BindGroupEntry",23462],[5,"BindGroupDescriptor",23462],[5,"BindGroupLayoutDescriptor",23462],[6,"CreatePipelineLayoutError",23462],[6,"PushConstantUploadError",23462],[5,"PipelineLayoutDescriptor",23462],[5,"BufferBinding",23462],[6,"BindingResource",23462],[6,"BindError",23462],[6,"GetBindGroupLayoutError",23462],[5,"LateMinBufferBindingSizeMismatch",23462],[5,"BindGroupDynamicBindingData",23462],[5,"ErrorFormatter",27680],[5,"MissingDownlevelFlags",26626],[5,"MissingFeatures",26626],[6,"DeviceError",26626],[6,"UsageConflict",49569],[5,"MissingBufferUsageError",39347],[5,"MissingTextureUsageError",39347],[5,"CommandBuffer",24477],[5,"RenderBundle",24477],[5,"RenderBundleEncoderDescriptor",24477],[6,"CreateRenderBundleError",24477],[6,"ExecutionError",24477],[5,"RenderBundleError",24477],[6,"ClearError",24477],[5,"ComputePassTimestampWrites",24477],[5,"ComputePassDescriptor",24477],[6,"DispatchError",24477],[6,"ComputePassErrorInner",24477],[5,"ComputePassError",24477],[6,"DrawError",24477],[6,"RenderCommandError",24477],[5,"Rect",24477],[6,"SimplifiedQueryType",24477],[6,"QueryError",24477],[6,"QueryUseError",24477],[6,"ResolveError",24477],[6,"LoadOp",24477],[6,"StoreOp",24477],[5,"PassChannel",24477],[5,"RenderPassColorAttachment",24477],[5,"RenderPassDepthStencilAttachment",24477],[6,"RenderPassTimestampLocation",24477],[5,"RenderPassTimestampWrites",24477],[5,"RenderPassDescriptor",24477],[6,"AttachmentErrorLocation",24477],[6,"ColorAttachmentError",24477],[6,"RenderPassErrorInner",24477],[5,"RenderPassError",24477],[6,"CopySide",24477],[6,"TransferError",24477],[6,"CopyError",24477],[5,"BasePassRef",24477],[6,"CommandEncoderError",24477],[6,"PassErrorScope",24477],[5,"Device",26626],[5,"RenderBundleEncoder",24477],[5,"ComputePass",24477],[5,"RenderPass",24477],[6,"RenderPassCompatibilityError",26626],[6,"RenderCommand",49570],[5,"BasePass",49571],[5,"Buffer",38034],[5,"RenderPipeline",36860],[5,"QuerySet",38034],[5,"ComputePipeline",36860],[6,"WaitIdleError",26626],[6,"HostMap",26626],[6,"RenderPassCompatibilityCheckType",26626],[5,"InvalidDevice",26626],[5,"ImplicitPipelineContext",26626],[5,"UserClosures",26626],[5,"DeviceLostClosureRust",26626],[5,"DeviceLostClosureC",26626],[6,"DeviceError",39792],[5,"DeviceLostClosure",26626],[5,"AnyDevice",27273],[5,"Queue",27310],[5,"WrappedSubmissionIndex",27310],[5,"InvalidQueue",27310],[6,"QueueWriteError",27310],[6,"QueueSubmitError",27310],[6,"TempResource",27310],[6,"BufferAccessError",38034],[5,"SubmittedWorkDoneClosureC",27310],[5,"SubmittedWorkDoneClosure",27310],[6,"CreateDeviceError",27635],[5,"ContextError",27680],[10,"PrettyError",27680],[10,"Write",49521],[5,"IdentityManagerFactory",28197],[5,"Global",27774],[5,"Sampler",38034],[5,"Texture",38034],[5,"TextureView",38034],[5,"Adapter",28279],[10,"GlobalIdentityHandlerFactory",28197],[5,"InvalidAdapter",28279],[5,"Surface",28279],[6,"IsSurfaceSupportedError",28279],[6,"DestroyError",38034],[5,"BufferMapOperation",38034],[6,"CreateBufferError",38034],[6,"CreateTextureError",38034],[5,"ComputePipelineDescriptor",36860],[5,"ImplicitPipelineIds",26626],[6,"CreateComputePipelineError",36860],[6,"CreateQuerySetError",38034],[5,"RenderPipelineDescriptor",36860],[6,"CreateRenderPipelineError",36860],[5,"SamplerDescriptor",38034],[6,"CreateSamplerError",38034],[5,"ShaderModuleDescriptor",36860],[6,"ShaderModuleSource",36860],[5,"ShaderModule",36860],[6,"CreateShaderModuleError",36860],[6,"AdapterInputs",28279],[5,"HubReport",27979],[6,"RawDisplayHandle",45705],[6,"RawWindowHandle",45705],[5,"StagingBuffer",38034],[6,"RequestAdapterError",28279],[6,"ConfigureSurfaceError",37798],[6,"GetSurfaceSupportError",28279],[5,"SurfaceOutput",37798],[6,"SurfaceError",37798],[5,"RegistryReport",37947],[5,"TextureViewDescriptor",38034],[6,"CreateTextureViewError",38034],[6,"TextureViewDestroyError",38034],[5,"Hub",27979],[10,"WasmNotSendSync",16250],[5,"ObjectId",49572],[10,"TypedId",28119],[5,"IdentityManager",28197],[17,"Input"],[10,"IdentityHandlerFactory",28197],[5,"FailedLimit",28279],[5,"SurfaceCapabilities",39792],[6,"AddressSpace",28726],[5,"StorageAccess",28726],[5,"Barrier",28726],[5,"WithSpan",28726],[5,"Arena",28726],[5,"Span",28726],[5,"Handle",28726],[5,"Block",28726],[6,"Binding",28726],[6,"TypeInner",28726],[6,"MathFunction",28726],[5,"Scalar",28726],[5,"Type",28726],[5,"UniqueArena",28726],[5,"BadHandle",49573],[5,"Range",28726],[5,"BadRangeError",49573],[5,"SourceLocation",28726],[5,"EarlyDepthTest",28726],[6,"ConservativeDepth",28726],[6,"ShaderStage",28726],[6,"BuiltIn",28726],[6,"VectorSize",28726],[6,"ScalarKind",28726],[6,"ArraySize",28726],[6,"Interpolation",28726],[6,"Sampling",28726],[5,"StructMember",28726],[6,"ImageDimension",28726],[6,"StorageFormat",28726],[6,"ImageClass",28726],[6,"Literal",28726],[6,"Override",28726],[5,"Constant",28726],[5,"ResourceBinding",28726],[5,"GlobalVariable",28726],[5,"LocalVariable",28726],[6,"UnaryOperator",28726],[6,"BinaryOperator",28726],[6,"AtomicFunction",28726],[6,"DerivativeControl",28726],[6,"DerivativeAxis",28726],[6,"RelationalFunction",28726],[6,"SampleLevel",28726],[6,"ImageQuery",28726],[6,"SwizzleComponent",28726],[6,"Expression",28726],[6,"SwitchValue",28726],[5,"SwitchCase",28726],[6,"RayQueryFunction",28726],[6,"Statement",28726],[5,"FunctionArgument",28726],[5,"FunctionResult",28726],[5,"Function",28726],[5,"EntryPoint",28726],[6,"PredeclaredType",28726],[5,"SpecialTypes",28726],[5,"Module",28726],[6,"TypeResolution",34365],[6,"IndexableLength",34365],[6,"IndexableLengthError",34365],[5,"Iter",49574],[10,"DoubleEndedIterator",49575],[5,"GlobalCtx",34365],[10,"ExactSizeIterator",49576],[5,"RayFlag",31767],[5,"Features",31863],[5,"WriterFlags",31863],[6,"Version",31863],[5,"Options",31863],[5,"PipelineOptions",31863],[5,"TextureMapping",31863],[5,"PushConstantItem",31863],[5,"VaryingLocation",31863],[5,"ReflectionInfo",31863],[6,"Error",31863],[5,"ModuleInfo",35300],[5,"BoundsCheckPolicies",34365],[5,"Writer",31863],[5,"BindTarget",32426],[6,"ShaderModel",32426],[6,"EntryPointError",32426],[5,"Options",32426],[5,"ReflectionInfo",32426],[6,"Error",32426],[5,"Writer",32426],[6,"BindSamplerTarget",32724],[5,"BindTarget",32724],[5,"EntryPointResources",32724],[6,"EntryPointError",32724],[5,"Options",32724],[5,"PipelineOptions",32724],[5,"Writer",32724],[6,"Error",32724],[5,"TranslationInfo",32724],[6,"Coord",33133],[6,"Address",33133],[6,"BorderColor",33133],[6,"Filter",33133],[6,"CompareFunc",33133],[5,"InlineSampler",33133],[5,"ImageTypeFlags",33425],[5,"WriterFlags",33425],[6,"Capability",33425],[6,"Error",33425],[5,"DebugInfo",33425],[5,"BindingInfo",33425],[6,"ZeroInitializeWorkgroupMemoryMode",33425],[5,"Options",33425],[5,"PipelineOptions",33425],[5,"Writer",33425],[5,"FxHasher",49577],[5,"BuildHasherDefault",49526],[5,"IndexSet",49578],[5,"SymbolTable",34196],[5,"Typifier",34196],[5,"ResolveContext",34365],[6,"ResolveError",34365],[10,"Sized",49532],[5,"ParseError",34279],[5,"Frontend",34279],[5,"Namer",34365],[5,"ConstantEvaluator",34365],[6,"ConstantEvaluatorError",34365],[5,"FunctionInfo",35300],[6,"BoundsCheckPolicy",34365],[5,"Layouter",34365],[5,"Alignment",34365],[5,"TypeLayout",34365],[6,"LayoutErrorInner",34365],[5,"LayoutError",34365],[5,"Emitter",34365],[6,"NameKey",34365],[5,"ExpressionConstnessTracker",34365],[6,"LiteralError",35300],[6,"GuardedIndex",35243],[5,"BitSet",49579],[5,"UniformityRequirements",35300],[5,"GlobalUse",35300],[5,"TypeFlags",35300],[5,"ValidationFlags",35300],[5,"Capabilities",35300],[5,"ShaderStages",35300],[5,"Uniformity",35300],[5,"ExpressionInfo",35300],[6,"ComposeError",35300],[6,"ExpressionError",35300],[6,"ConstExpressionError",35300],[6,"CallError",35300],[6,"LocalVariableError",35300],[6,"FunctionError",35300],[6,"GlobalVariableError",35300],[6,"VaryingError",35300],[6,"EntryPointError",35300],[6,"Disalignment",35300],[6,"TypeError",35300],[6,"ConstantError",35300],[6,"ValidationError",35300],[5,"Validator",35300],[6,"WidthError",49580],[6,"AtomicError",49581],[5,"FwdDepError",49582],[6,"InvalidHandleError",49582],[5,"PipelineFlags",36860],[5,"ShaderError",36860],[5,"ProgrammableStageDescriptor",36860],[6,"ImplicitLayoutError",36860],[5,"VertexBufferLayout",36860],[5,"VertexState",36860],[5,"FragmentState",36860],[6,"ColorStateError",36860],[6,"DepthStencilStateError",36860],[5,"VertexStep",36860],[6,"StageError",39347],[5,"Registry",37947],[10,"Resource",38034],[5,"Storage",39311],[5,"TextureSelector",49583],[6,"TextureErrorDimension",38034],[6,"TextureDimensionError",38034],[6,"TextureViewNotRenderableReason",38034],[6,"SamplerFilterErrorType",38034],[5,"DestroyedBuffer",38034],[5,"DestroyedTexture",38034],[6,"BufferMapAsyncStatus",38034],[5,"BufferMapCallback",38034],[6,"TextureClearMode",38034],[5,"BufferMapCallbackC",38034],[5,"Interface",39347],[6,"BindingLayoutSource",39347],[5,"InterfaceVar",39347],[5,"NumericType",39347],[6,"BindingError",39347],[6,"FilteringError",39347],[6,"InputError",39347],[10,"Surface",39792],[5,"AcquiredSurfaceTexture",39792],[6,"SurfaceError",39792],[10,"Api",39792],[5,"PipelineLayoutFlags",39792],[5,"BindGroupLayoutFlags",39792],[5,"TextureFormatCapabilities",39792],[5,"FormatAspects",39792],[5,"MemoryFlags",39792],[5,"AccelerationStructureBuildFlags",39792],[5,"AttachmentOps",39792],[5,"AccelerationStructureGeometryFlags",39792],[5,"BufferUses",39792],[5,"TextureUses",39792],[5,"AccelerationStructureUses",39792],[5,"TextureDescriptor",39792],[5,"CopyExtent",39792],[10,"CommandEncoder",39792],[5,"ComputePassDescriptor",39792],[5,"RenderPassDescriptor",39792],[5,"BuildAccelerationStructureDescriptor",39792],[5,"TextureCopy",39792],[5,"BufferTextureCopy",39792],[6,"ShaderError",39792],[6,"PipelineError",39792],[5,"InstanceDescriptor",39792],[5,"Alignments",39792],[5,"Capabilities",39792],[5,"BufferMapping",39792],[5,"BufferDescriptor",39792],[5,"TextureViewDescriptor",39792],[5,"SamplerDescriptor",39792],[5,"BindGroupLayoutDescriptor",39792],[5,"PipelineLayoutDescriptor",39792],[5,"BufferBinding",39792],[5,"TextureBinding",39792],[5,"BindGroupEntry",39792],[5,"BindGroupDescriptor",39792],[5,"CommandEncoderDescriptor",39792],[5,"DebugSource",39792],[5,"ProgrammableStage",39792],[5,"ComputePipelineDescriptor",39792],[5,"VertexBufferLayout",39792],[5,"RenderPipelineDescriptor",39792],[5,"SurfaceConfiguration",39792],[5,"Rect",39792],[5,"BufferBarrier",39792],[5,"TextureBarrier",39792],[5,"BufferCopy",39792],[5,"TextureCopyBase",39792],[5,"Attachment",39792],[5,"ColorAttachment",39792],[5,"DepthStencilAttachment",39792],[5,"RenderPassTimestampWrites",39792],[5,"ComputePassTimestampWrites",39792],[5,"AccelerationStructureDescriptor",39792],[6,"AccelerationStructureFormat",39792],[6,"AccelerationStructureBuildMode",39792],[5,"AccelerationStructureBuildSizes",39792],[5,"GetAccelerationStructureBuildSizesDescriptor",39792],[5,"AccelerationStructureTriangles",39792],[5,"AccelerationStructureAABBs",39792],[5,"AccelerationStructureInstances",39792],[5,"AccelerationStructureTriangleIndices",39792],[5,"AccelerationStructureTriangleTransform",39792],[5,"AccelerationStructureBarrier",39792],[10,"Device",39792],[5,"ShaderModuleDescriptor",39792],[6,"ShaderInput",39792],[10,"Instance",39792],[5,"NagaShader",39792],[6,"AccelerationStructureEntries",39792],[6,"MapError",49584],[5,"Result",49585],[6,"AllocationError",49586],[6,"AllocationError",49584],[5,"ValidationCanary",39792],[10,"Adapter",39792],[10,"Queue",39792],[5,"Context",43517],[5,"Encoder",43517],[5,"Resource",43517],[5,"Adapter",43756],[5,"AdapterContext",43756],[5,"CommandEncoder",43756],[5,"Api",43756],[5,"QuerySet",43756],[5,"Buffer",43756],[5,"TextureFormatDesc",43756],[6,"TextureInner",43756],[5,"TextureView",43756],[5,"Device",43756],[5,"Texture",43756],[5,"BindGroup",43756],[5,"BindGroupLayout",43756],[5,"ComputePipeline",43756],[5,"Fence",43756],[5,"PipelineLayout",43756],[5,"RenderPipeline",43756],[5,"Sampler",43756],[5,"ShaderModule",43756],[5,"CommandBuffer",43756],[5,"AdapterContextLock",43756],[5,"Library",49587],[5,"EGL1_4",49588],[5,"Dynamic",49588],[5,"Instance",49588],[5,"Queue",43756],[5,"RawMutex",49589],[5,"Context",49590],[5,"MutexGuard",49591],[6,"c_void",49592],[5,"Surface",49593],[5,"Display",49594],[5,"NonZeroU32",49568],[5,"Surface",44638],[5,"Api",44638],[5,"Workarounds",44638],[5,"CommandEncoder",44638],[5,"QuerySet",44638],[5,"SurfaceTexture",44638],[5,"Texture",44638],[5,"Buffer",49595],[5,"Buffer",44638],[5,"Device",44638],[5,"AccelerationStructure",44638],[5,"BindGroup",44638],[5,"BindGroupLayout",44638],[5,"ComputePipeline",44638],[6,"Fence",44638],[5,"PipelineLayout",44638],[5,"RenderPipeline",44638],[5,"Sampler",44638],[6,"ShaderModule",44638],[5,"Instance",44638],[5,"TextureView",44638],[5,"Entry",49596],[5,"CStr",49597],[5,"Adapter",44638],[5,"Device",49598],[5,"InstanceShared",44638],[5,"CommandBuffer",44638],[5,"Queue",44638],[5,"PhysicalDevice",49595],[5,"DebugUtilsMessengerUserData",44638],[5,"Instance",49599],[5,"DebugUtilsCreateInfo",44638],[5,"PhysicalDeviceCapabilities",49600],[5,"PhysicalDeviceFeatures",49600],[5,"Image",49595],[5,"Queue",49595],[5,"DisplayHandle",45705],[5,"WindowHandle",45705],[5,"AndroidDisplayHandle",45705],[5,"AndroidNdkWindowHandle",45705],[5,"AppKitDisplayHandle",45705],[5,"AppKitWindowHandle",45705],[5,"HaikuDisplayHandle",45705],[5,"HaikuWindowHandle",45705],[5,"OrbitalDisplayHandle",45705],[5,"OrbitalWindowHandle",45705],[5,"UiKitDisplayHandle",45705],[5,"UiKitWindowHandle",45705],[5,"XlibDisplayHandle",45705],[5,"XlibWindowHandle",45705],[5,"XcbDisplayHandle",45705],[5,"XcbWindowHandle",45705],[5,"WaylandDisplayHandle",45705],[5,"WaylandWindowHandle",45705],[5,"DrmDisplayHandle",45705],[5,"DrmWindowHandle",45705],[5,"GbmDisplayHandle",45705],[5,"GbmWindowHandle",45705],[5,"WebDisplayHandle",45705],[5,"WebWindowHandle",45705],[5,"WebCanvasWindowHandle",45705],[5,"WebOffscreenCanvasWindowHandle",45705],[5,"WindowsDisplayHandle",45705],[5,"Win32WindowHandle",45705],[5,"WinRtWindowHandle",45705],[5,"NonNull",49601],[5,"NonZeroIsize",49568],[10,"HasRawDisplayHandle",45705],[10,"HasRawWindowHandle",45705],[5,"DrawIndirectArgs",47161],[5,"DrawIndexedIndirectArgs",47161],[5,"DispatchIndirectArgs",47161],[10,"DeviceExt",47161],[5,"DownloadBuffer",47161],[10,"RenderEncoder",47161],[5,"StagingBelt",47161],[5,"Rail",47475],[5,"State",47475],[6,"Edit",47842],[6,"Motion",47842],[17,"Target"],[10,"Deref",49602],[5,"Cursor",48078],[6,"Side",48078],[5,"State",48078],[6,"State",48412],[5,"Handle",48658],[6,"HandleShape",48658],[5,"State",48658],[5,"Screenshot",48832],[5,"Icon",48832],[6,"Level",48832],[6,"Mode",48832],[5,"Settings",48832],[6,"Event",48832],[6,"Position",48832],[6,"UserAttention",48832],[6,"CropError",49407],[6,"Action",48832],[6,"Error",49359],[6,"Error",49603],[6,"ImageError",49604],[6,"ImageFormat",49605],[5,"PlatformSpecific",49449],[15,"Rgba",1504],[15,"WheelScrolled",1724],[15,"CursorMoved",1724],[15,"Lines",1726],[15,"Pixels",1726],[15,"Scroll",2327],[15,"KeyPressed",3686],[15,"KeyReleased",3686],[15,"FingerPressed",5697],[15,"FingerMoved",5697],[15,"FingerLifted",5697],[15,"FingerLost",5697],[8,"PathEvent",8080],[8,"IdEvent",8080],[15,"Begin",8968],[15,"End",8968],[15,"Quadratic",8968],[15,"Cubic",8968],[15,"Line",8968],[8,"Rotation",9532],[8,"Size",9532],[8,"Transform",9532],[8,"Box2D",9532],[8,"Translation",9532],[8,"Point",9532],[8,"Vector",9532],[8,"Rotation2D",12728],[8,"SideOffsets2D",12728],[8,"Size3D",12728],[8,"Rotation3D",12728],[8,"Transform2D",12728],[8,"Transform3D",12728],[8,"Box3D",12728],[8,"Rect",12728],[8,"RigidTransform3D",12728],[8,"HomogeneousVector",12728],[8,"Point3D",12728],[8,"Vector3D",12728],[8,"Translation2D",12728],[8,"Translation3D",12728],[8,"Rotation",13107],[8,"Size",13107],[8,"Transform",13107],[8,"Box2D",13107],[8,"Angle",13107],[8,"Point",13107],[8,"Vector",13107],[8,"Translation",13107],[15,"Split",15080],[15,"Picked",15084],[15,"Dropped",15084],[15,"Canceled",15084],[15,"Split",15088],[15,"Resizing",15180],[15,"Clicking",15180],[15,"Dragging",15180],[15,"Dynamic",15358],[15,"Arrow",15358],[15,"Both",16158],[8,"Label",16250],[8,"Maintain",16250],[8,"SurfaceConfiguration",16250],[8,"ImageCopyTexture",16250],[8,"ImageCopyTextureTagged",16250],[8,"ImageCopyBuffer",16250],[8,"RequestAdapterOptions",16250],[8,"QuerySetDescriptor",16250],[8,"TextureDescriptor",16250],[8,"DeviceDescriptor",16250],[8,"BufferDescriptor",16250],[8,"CommandEncoderDescriptor",16250],[8,"RenderBundleDescriptor",16250],[15,"StorageTexture",23364],[15,"Buffer",23364],[15,"Texture",23364],[15,"Storage",23373],[15,"Dxc",23374],[15,"Validation",23376],[15,"OutOfMemory",23376],[15,"RawHandle",23379],[15,"Astc",23381],[15,"Float",23383],[8,"Label",23384],[15,"MismatchedDynamicOffsetCount",24397],[15,"UnalignedDynamicBinding",24397],[15,"DynamicBindingOutOfBounds",24397],[15,"BindingArrayPartialLengthMismatch",24413],[15,"BindingArrayLengthMismatch",24413],[15,"BindingSizeTooSmall",24413],[15,"BindingsNumMismatch",24413],[15,"WrongBindingType",24413],[15,"BufferRangeTooLarge",24413],[15,"InvalidTextureMultisample",24413],[15,"InvalidTextureSampleType",24413],[15,"InvalidTextureDimension",24413],[15,"InvalidStorageTextureFormat",24413],[15,"InvalidStorageTextureMipLevelCount",24413],[15,"WrongSamplerComparison",24413],[15,"WrongSamplerFiltering",24413],[15,"BindingRangeTooLarge",24413],[15,"Entry",24451],[15,"InvalidBindingIndex",24451],[15,"TooManyGroups",24455],[15,"MisalignedPushConstantRange",24455],[15,"MoreThanOnePushConstantRangePerStage",24455],[15,"PushConstantRangeTooLarge",24455],[15,"PartialRangeMatch",24465],[15,"MissingStages",24465],[15,"UnmatchedStages",24465],[15,"TooLarge",24465],[5,"BakedCommands",24477],[5,"CommandBufferMutable",24477],[8,"ImageCopyTexture",24477],[8,"ImageCopyTextureTagged",24477],[8,"ImageCopyBuffer",24477],[8,"RenderBundleDescriptor",24477],[15,"Color",26462],[15,"BufferOverrun",26464],[15,"InvalidTextureLayerRange",26464],[15,"InvalidTextureLevelRange",26464],[15,"MissingTextureAspect",26464],[15,"TooMany",26475],[15,"IndirectBufferOverrun",26477],[15,"BindGroupIndexOutOfRange",26477],[15,"InvalidGroupSize",26482],[15,"IncompatibleBindGroup",26482],[15,"UnmatchedIndexFormats",26486],[15,"IncompatibleBindGroup",26486],[15,"MissingVertexBuffer",26486],[15,"IndexBeyondLimit",26486],[15,"InstanceBeyondLimit",26486],[15,"VertexBeyondLimit",26486],[15,"Draw",26499],[15,"Dispatch",26499],[15,"AlreadyStarted",26504],[15,"OutOfBounds",26504],[15,"UsedTwiceInsideRenderpass",26504],[15,"IncompatibleType",26504],[15,"InvalidDynamicOffsetCount",26511],[15,"BindGroupIndexOutOfRange",26511],[15,"VertexBufferIndexOutOfRange",26511],[15,"AttachmentsDimensionMismatch",26517],[15,"AttachmentSampleCountMismatch",26517],[15,"IndirectCountBufferOverrun",26517],[15,"IndirectBufferOverrun",26517],[15,"IncompatibleBundleReadOnlyDepthStencil",26517],[15,"InvalidResolveSampleCounts",26517],[15,"MismatchedResolveTextureFormat",26517],[15,"UnsupportedResolveTargetFormat",26517],[15,"TextureViewIsNotRenderable",26517],[15,"BufferOverrun",26546],[15,"QueryOverrun",26546],[15,"InvalidTextureAspect",26555],[15,"CopyFromForbiddenTextureFormat",26555],[15,"CopyToForbiddenTextureFormat",26555],[15,"BufferOverrun",26555],[15,"InvalidMipLevel",26555],[15,"TextureOverrun",26555],[15,"TextureFormatsNotCopyCompatible",26555],[15,"InvalidTextureMipLevel",26555],[15,"InvalidSampleCount",26555],[5,"DeviceLostInvocation",26626],[8,"DeviceDescriptor",26626],[15,"IncompatibleColorAttachment",27260],[15,"IncompatibleDepthStencilAttachment",27260],[15,"IncompatibleSampleCount",27260],[15,"IncompatibleMultiview",27260],[5,"Hubs",27979],[8,"RequestAdapterOptions",28279],[15,"Storage",31645],[15,"Exchange",31646],[15,"Location",31647],[15,"Position",31651],[15,"Select",31652],[15,"Math",31652],[15,"Relational",31652],[15,"ImageSample",31652],[15,"ImageLoad",31652],[15,"Derivative",31652],[15,"Access",31652],[15,"AccessIndex",31652],[15,"RayQueryGetIntersection",31652],[15,"AtomicResult",31652],[15,"Compose",31652],[15,"As",31652],[15,"Unary",31652],[15,"ImageQuery",31652],[15,"Binary",31652],[15,"Swizzle",31652],[15,"Load",31652],[15,"Splat",31652],[15,"WorkGroupUniformLoadResult",31652],[15,"Storage",31705],[15,"Sampled",31705],[15,"Depth",31705],[15,"Size",31710],[15,"ModfResult",31711],[15,"FrexpResult",31711],[15,"Initialize",31715],[15,"Proceed",31715],[15,"Gradient",31718],[15,"If",31720],[15,"Call",31720],[15,"ImageStore",31720],[15,"Loop",31720],[15,"Switch",31720],[15,"Atomic",31720],[15,"RayQuery",31720],[15,"Store",31720],[15,"WorkGroupUniformLoad",31720],[15,"Return",31720],[15,"Image",31746],[15,"Pointer",31746],[15,"Array",31746],[15,"BindingArray",31746],[15,"Matrix",31746],[15,"Sampler",31746],[15,"Struct",31746],[15,"Vector",31746],[15,"ValuePointer",31746],[15,"Embedded",32424],[15,"InvalidCastArg",35231],[15,"AutomaticConversionLossy",35231],[15,"AutomaticConversionFloatToInt",35231],[15,"OutOfBoundsIndex",35236],[15,"InvalidAccess",35236],[15,"InvalidSubAccess",35236],[15,"FunctionNotDefined",35236],[15,"Argument",36787],[15,"ArgumentType",36787],[15,"ArgumentCount",36787],[15,"ComponentCount",36794],[15,"ComponentType",36794],[15,"ArrayStride",36797],[15,"StructSpan",36797],[15,"MemberOffset",36797],[15,"MemberOffsetAfterStruct",36797],[15,"UnsizedMember",36797],[15,"InvalidIntegerInterpolation",36808],[15,"InvalidLocationsWhileDualSourceBlending",36808],[15,"ComparisonSamplingMismatch",36810],[15,"InvalidCall",36813],[15,"Expression",36813],[15,"LocalVariable",36813],[15,"InvalidArgumentType",36813],[15,"InvalidArgumentPointerSpace",36813],[15,"PipelineInputRegularFunction",36813],[15,"InvalidStoreTypes",36813],[15,"MissingTypeFlags",36828],[15,"InvalidPointerToUnsized",36830],[15,"InvalidArrayStride",36830],[15,"MemberOverlap",36830],[15,"MemberOutOfBounds",36830],[15,"Type",36840],[15,"ConstExpression",36840],[15,"Constant",36840],[15,"GlobalVariable",36840],[15,"Function",36840],[15,"EntryPoint",36840],[15,"InvalidLocationAttributeCombination",36857],[15,"BindingCollision",36857],[15,"IncompatibleFormat",37771],[15,"UnalignedShader",37773],[15,"Stage",37773],[15,"Internal",37773],[15,"BlendFactorOnUnsupportedTarget",37773],[15,"TooManyVertexBuffers",37773],[15,"TooManyVertexAttributes",37773],[15,"VertexStrideTooLarge",37773],[15,"UnalignedVertexStride",37773],[15,"InvalidVertexAttributeOffset",37773],[15,"StripIndexFormatForNonStripTopology",37773],[15,"InvalidGroupIndex",37795],[15,"UnsupportedFormat",37938],[15,"UnsupportedPresentMode",37938],[15,"UnsupportedAlphaMode",37938],[15,"TooLarge",37938],[8,"BufferAccessResult",38034],[8,"QuerySetDescriptor",38034],[8,"TextureDescriptor",38034],[8,"BufferDescriptor",38034],[15,"NegativeRange",39260],[15,"OutOfBoundsUnderrun",39260],[15,"OutOfBoundsOverrun",39260],[15,"UnalignedOffset",39260],[15,"UnalignedRangeSize",39260],[15,"MaxBufferSize",39268],[15,"TooManyQueries",39270],[15,"InvalidFilterModeWithAnisotropy",39272],[15,"InvalidLodMaxClamp",39272],[15,"InvalidMipLevelCount",39277],[15,"InvalidCubemapTextureDepth",39279],[15,"InvalidCubemapArrayTextureDepth",39279],[15,"InvalidArrayLayerCount",39279],[15,"TooManyMipLevels",39279],[15,"TooManyArrayLayers",39279],[15,"InvalidAspect",39279],[15,"InvalidTextureViewDimension",39279],[15,"FormatReinterpretation",39279],[15,"Surface",39293],[15,"RenderPass",39293],[15,"NotMultipleOfBlockHeight",39296],[15,"NotMultipleOfBlockWidth",39296],[15,"LimitExceeded",39296],[15,"WidthNotMultipleOf",39296],[15,"HeightNotMultipleOf",39296],[15,"WrongAddressSpace",39772],[15,"WrongTextureViewDimension",39772],[15,"WrongTextureClass",39772],[15,"InvalidWorkgroupSize",39779],[15,"Filtering",39779],[15,"Input",39779],[15,"TooManyVaryings",39779],[15,"InputNotConsumed",39779],[8,"Label",39792],[8,"MemoryRange",39792],[15,"Renderbuffer",44635],[15,"Texture",44635],[15,"FencePool",45700],[15,"Intermediate",45703],[15,"Rectangle",47578],[15,"Circle",47578],[15,"Selection",48452],[15,"Resized",49353],[15,"Opened",49353],[15,"Moved",49353]],"b":[[76,"impl-StyleSheet-for-Theme"],[77,"impl-StyleSheet-for-Theme"],[78,"impl-StyleSheet-for-Theme"],[79,"impl-StyleSheet-for-Theme"],[80,"impl-StyleSheet-for-Theme"],[81,"impl-StyleSheet-for-Theme"],[82,"impl-StyleSheet-for-Theme"],[83,"impl-StyleSheet-for-Theme"],[84,"impl-StyleSheet-for-Theme"],[116,"impl-StyleSheet-for-Theme"],[117,"impl-StyleSheet-for-Theme"],[118,"impl-StyleSheet-for-Theme"],[119,"impl-StyleSheet-for-Theme"],[120,"impl-StyleSheet-for-Theme"],[121,"impl-StyleSheet-for-Theme"],[122,"impl-StyleSheet-for-Theme"],[398,"impl-Renderer-for-Renderer"],[399,"impl-Renderer-for-Renderer"],[400,"impl-StyleSheet-for-Theme"],[401,"impl-StyleSheet-for-Theme"],[402,"impl-StyleSheet-for-Theme"],[403,"impl-StyleSheet-for-Theme"],[404,"impl-StyleSheet-for-Theme"],[406,"impl-Div-for-Radians"],[407,"impl-Div%3Cf32%3E-for-Radians"],[431,"impl-StyleSheet-for-Theme"],[432,"impl-StyleSheet-for-Theme"],[434,"impl-Renderer-for-Renderer"],[435,"impl-Renderer-for-Renderer"],[436,"impl-Renderer-for-Renderer"],[518,"impl-Debug-for-Error"],[519,"impl-Display-for-Error"],[520,"impl-Debug-for-Theme"],[521,"impl-Display-for-Theme"],[535,"impl-Display-for-Point%3CT%3E"],[536,"impl-Debug-for-Point%3CT%3E"],[541,"impl-StyleSheet-for-Theme"],[542,"impl-StyleSheet-for-Theme"],[550,"impl-From%3CHorizontal%3E-for-Alignment"],[552,"impl-From%3CVertical%3E-for-Alignment"],[559,"impl-From%3CDegrees%3E-for-Radians"],[560,"impl-From%3Cf32%3E-for-Radians"],[562,"impl-From%3Cu8%3E-for-Radians"],[563,"impl-From%3CLinear%3E-for-Background"],[564,"impl-From%3CColor%3E-for-Background"],[565,"impl-From%3CGradient%3E-for-Background"],[568,"impl-From%3C%5Bf32;+4%5D%3E-for-Color"],[569,"impl-From%3C%5Bf32;+3%5D%3E-for-Color"],[570,"impl-From%3CRgb%3E-for-Color"],[571,"impl-From%3CAlpha%3CRgb,+f32%3E%3E-for-Color"],[574,"impl-From%3Cu16%3E-for-Length"],[575,"impl-From%3CPixels%3E-for-Length"],[576,"impl-From%3Cf32%3E-for-Length"],[577,"impl-From%3Cf32%3E-for-Padding"],[578,"impl-From%3C%5Bf32;+4%5D%3E-for-Padding"],[579,"impl-From%3Cu16%3E-for-Padding"],[580,"impl-From%3C%5Bf32;+2%5D%3E-for-Padding"],[581,"impl-From%3C%5Bu16;+2%5D%3E-for-Padding"],[582,"impl-From%3C%5Bu16;+4%5D%3E-for-Padding"],[584,"impl-From%3Cu16%3E-for-Pixels"],[585,"impl-From%3Cf32%3E-for-Pixels"],[588,"impl-From%3C%5BT;+2%5D%3E-for-Point%3CT%3E"],[589,"impl-From%3C(T,+T)%3E-for-Point%3CT%3E"],[593,"impl-From%3C%5Bf32;+2%5D%3E-for-Size"],[595,"impl-From%3CPadding%3E-for-Size"],[596,"impl-From%3C%5Bu16;+2%5D%3E-for-Size"],[597,"impl-From%3CVector%3E-for-Size"],[599,"impl-From%3CSize%3E-for-Vector"],[600,"impl-From%3C%5BT;+2%5D%3E-for-Vector%3CT%3E"],[667,"impl-StyleSheet-for-Theme"],[668,"impl-StyleSheet-for-Theme"],[669,"impl-StyleSheet-for-Theme"],[670,"impl-StyleSheet-for-Theme"],[671,"impl-StyleSheet-for-Theme"],[672,"impl-StyleSheet-for-Theme"],[673,"impl-StyleSheet-for-Theme"],[674,"impl-StyleSheet-for-Theme"],[675,"impl-StyleSheet-for-Theme"],[676,"impl-StyleSheet-for-Theme"],[901,"impl-Mul%3Cf32%3E-for-Radians"],[902,"impl-Mul-for-Radians"],[925,"impl-StyleSheet-for-Theme"],[926,"impl-StyleSheet-for-Theme"],[937,"impl-StyleSheet-for-Theme"],[938,"impl-StyleSheet-for-Theme"],[949,"impl-Sub%3CVector%3CT%3E%3E-for-Point%3CT%3E"],[950,"impl-Sub-for-Point%3CT%3E"],[1176,"impl-StyleSheet-for-Theme"],[1177,"impl-StyleSheet-for-Theme"],[1845,"impl-Group%3C\'a,+Message,+Theme,+Renderer%3E"],[1846,"impl-Overlay%3CMessage,+Theme,+Renderer%3E-for-Group%3C\'a,+Message,+Theme,+Renderer%3E"],[2488,"impl-From%3CId%3E-for-Id"],[2489,"impl-From%3CId%3E-for-Id"],[2491,"impl-From%3CId%3E-for-Id"],[2541,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Text%3C\'a,+Theme,+Renderer%3E"],[2542,"impl-Text%3C\'a,+Theme,+Renderer%3E"],[2992,"impl-From%3C%5Bf32;+4%5D%3E-for-Radius"],[2993,"impl-From%3Cf32%3E-for-Radius"],[2994,"impl-From%3Cu8%3E-for-Radius"],[3571,"impl-UpperHex-for-Modifiers"],[3572,"impl-LowerHex-for-Modifiers"],[3573,"impl-Binary-for-Modifiers"],[3574,"impl-Octal-for-Modifiers"],[3575,"impl-Debug-for-Modifiers"],[4750,"impl-Debug-for-Custom"],[4751,"impl-Display-for-Custom"],[4758,"impl-From%3CAppearance%3E-for-Container"],[4759,"impl-From%3CT%3E-for-Container"],[5451,"impl-Add%3CDuration%3E-for-Instant"],[5452,"impl-Add%3CDuration%3E-for-Instant"],[5453,"impl-Add%3CDuration%3E-for-Duration"],[5454,"impl-Add-for-Duration"],[5455,"impl-AddAssign%3CDuration%3E-for-Instant"],[5456,"impl-AddAssign%3CDuration%3E-for-Instant"],[5457,"impl-AddAssign%3CDuration%3E-for-Duration"],[5458,"impl-AddAssign-for-Duration"],[5500,"impl-Div%3Cu32%3E-for-Duration"],[5501,"impl-Div%3CDuration%3E-for-Duration"],[5513,"impl-PartialEq-for-Instant"],[5514,"impl-PartialEq%3CInstant%3E-for-Instant"],[5515,"impl-PartialEq%3CDuration%3E-for-Duration"],[5516,"impl-PartialEq-for-Duration"],[5527,"impl-From%3CInstant%3E-for-Instant"],[5528,"impl-From%3CInstant%3E-for-Instant"],[5568,"impl-PartialOrd%3CInstant%3E-for-Instant"],[5569,"impl-PartialOrd-for-Instant"],[5570,"impl-PartialOrd%3CDuration%3E-for-Duration"],[5571,"impl-PartialOrd-for-Duration"],[5577,"impl-Sub%3CInstant%3E-for-Instant"],[5578,"impl-Sub%3CDuration%3E-for-Instant"],[5579,"impl-Sub-for-Instant"],[5580,"impl-Sub%3CDuration%3E-for-Instant"],[5581,"impl-Sub-for-Duration"],[5582,"impl-Sub%3CDuration%3E-for-Duration"],[5583,"impl-SubAssign%3CDuration%3E-for-Instant"],[5584,"impl-SubAssign%3CDuration%3E-for-Instant"],[5585,"impl-SubAssign%3CDuration%3E-for-Duration"],[5586,"impl-SubAssign-for-Duration"],[5590,"impl-Sum%3C%26Duration%3E-for-Duration"],[5591,"impl-Sum-for-Duration"],[6123,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6124,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6542,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6543,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6714,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[6715,"impl-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[6716,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[6717,"impl-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[6722,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Radio%3CMessage,+Theme,+Renderer%3E"],[6723,"impl-Radio%3CMessage,+Theme,+Renderer%3E"],[6728,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6729,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6730,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Toggler%3C\'a,+Message,+Theme,+Renderer%3E"],[6731,"impl-Toggler%3C\'a,+Message,+Theme,+Renderer%3E"],[6732,"impl-Tooltip%3C\'a,+Message,+Theme,+Renderer%3E"],[6733,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Tooltip%3C\'a,+Message,+Theme,+Renderer%3E"],[7444,"impl-From%3CLinear%3E-for-Fill"],[7446,"impl-From%3CColor%3E-for-Fill"],[7447,"impl-From%3CGradient%3E-for-Fill"],[7453,"impl-From%3CColor%3E-for-Style"],[7455,"impl-From%3CGradient%3E-for-Style"],[7456,"impl-From%3CString%3E-for-Text"],[7457,"impl-From%3C%26str%3E-for-Text"],[8553,"impl-Index%3CControlPointId%3E-for-Path"],[8554,"impl-Index%3CEndpointId%3E-for-Path"],[8555,"impl-Index%3CEndpointId%3E-for-PathSlice%3C\'l%3E"],[8556,"impl-Index%3CControlPointId%3E-for-PathSlice%3C\'l%3E"],[8714,"impl-IntoIterator-for-%26PathSlice%3C\'l%3E"],[8715,"impl-IntoIterator-for-PathSlice%3C\'l%3E"],[9062,"impl-NoAttributes%3CB%3E"],[9063,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9077,"impl-Flattened%3CBuilder%3E"],[9078,"impl-Build-for-Flattened%3CBuilder%3E"],[9080,"impl-Build-for-WithSvg%3CBuilder%3E"],[9081,"impl-WithSvg%3CBuilder%3E"],[9082,"impl-Build-for-NoAttributes%3CB%3E"],[9083,"impl-NoAttributes%3CB%3E"],[9090,"impl-WithSvg%3CBuilder%3E"],[9091,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9102,"impl-WithSvg%3CBuilder%3E"],[9103,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9104,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9105,"impl-NoAttributes%3CB%3E"],[9132,"impl-NoAttributes%3CB%3E"],[9133,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9141,"impl-Debug-for-BorderRadii"],[9142,"impl-Display-for-BorderRadii"],[9214,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9215,"impl-WithSvg%3CBuilder%3E"],[9216,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9217,"impl-NoAttributes%3CB%3E"],[9219,"impl-WithSvg%3CBuilder%3E"],[9220,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9237,"impl-WithSvg%3CBuilder%3E"],[9238,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9239,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9240,"impl-NoAttributes%3CB%3E"],[9259,"impl-WithSvg%3CBuilder%3E"],[9260,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9261,"impl-NoAttributes%3CB%3E"],[9262,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9431,"impl-Index%3CEndpointId%3E-for-CommandsPathSlice%3C\'l,+Endpoint,+ControlPoint%3E"],[9432,"impl-Index%3CControlPointId%3E-for-CommandsPathSlice%3C\'l,+Endpoint,+ControlPoint%3E"],[9582,"impl-Add-for-Angle%3CT%3E"],[9583,"impl-Add%3C%26Angle%3CT%3E%3E-for-Angle%3CT%3E"],[9586,"impl-Segment-for-Arc%3CS%3E"],[9587,"impl-Arc%3CS%3E"],[9588,"impl-CubicBezierSegment%3CS%3E"],[9589,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9590,"impl-LineSegment%3CS%3E"],[9591,"impl-Segment-for-LineSegment%3CS%3E"],[9592,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9593,"impl-QuadraticBezierSegment%3CS%3E"],[9599,"impl-Segment-for-Arc%3CS%3E"],[9600,"impl-Arc%3CS%3E"],[9601,"impl-CubicBezierSegment%3CS%3E"],[9602,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9649,"impl-Segment-for-Arc%3CS%3E"],[9650,"impl-Arc%3CS%3E"],[9651,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9652,"impl-CubicBezierSegment%3CS%3E"],[9653,"impl-LineSegment%3CS%3E"],[9654,"impl-Segment-for-LineSegment%3CS%3E"],[9655,"impl-QuadraticBezierSegment%3CS%3E"],[9656,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9758,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9759,"impl-CubicBezierSegment%3CS%3E"],[9761,"impl-QuadraticBezierSegment%3CS%3E"],[9762,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9767,"impl-Div-for-Angle%3CT%3E"],[9768,"impl-Div%3CT%3E-for-Angle%3CT%3E"],[9792,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9793,"impl-CubicBezierSegment%3CS%3E"],[9795,"impl-QuadraticBezierSegment%3CS%3E"],[9796,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9798,"impl-CubicBezierSegment%3CS%3E"],[9799,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9801,"impl-QuadraticBezierSegment%3CS%3E"],[9802,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9838,"impl-Segment-for-Arc%3CS%3E"],[9839,"impl-Arc%3CS%3E"],[9840,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9841,"impl-CubicBezierSegment%3CS%3E"],[9842,"impl-Segment-for-LineSegment%3CS%3E"],[9843,"impl-LineSegment%3CS%3E"],[9844,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9845,"impl-QuadraticBezierSegment%3CS%3E"],[9862,"impl-Segment-for-Arc%3CS%3E"],[9863,"impl-Arc%3CS%3E"],[9865,"impl-CubicBezierSegment%3CS%3E"],[9866,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9868,"impl-QuadraticBezierSegment%3CS%3E"],[9869,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9897,"impl-Segment-for-Arc%3CS%3E"],[9898,"impl-Arc%3CS%3E"],[9900,"impl-From%3CSvgArc%3CS%3E%3E-for-Arc%3CS%3E"],[9902,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9904,"impl-CubicBezierSegment%3CS%3E"],[9905,"impl-Segment-for-LineSegment%3CS%3E"],[9907,"impl-LineSegment%3CS%3E"],[9911,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9912,"impl-QuadraticBezierSegment%3CS%3E"],[10097,"impl-Arc%3CS%3E"],[10098,"impl-Segment-for-Arc%3CS%3E"],[10099,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10100,"impl-CubicBezierSegment%3CS%3E"],[10101,"impl-LineSegment%3CS%3E"],[10102,"impl-Segment-for-LineSegment%3CS%3E"],[10103,"impl-QuadraticBezierSegment%3CS%3E"],[10104,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10121,"impl-Arc%3CS%3E"],[10122,"impl-Segment-for-Arc%3CS%3E"],[10123,"impl-CubicBezierSegment%3CS%3E"],[10124,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10125,"impl-LineSegment%3CS%3E"],[10126,"impl-Segment-for-LineSegment%3CS%3E"],[10127,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10128,"impl-QuadraticBezierSegment%3CS%3E"],[10131,"impl-Segment-for-Arc%3CS%3E"],[10132,"impl-Arc%3CS%3E"],[10133,"impl-CubicBezierSegment%3CS%3E"],[10134,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10135,"impl-Segment-for-LineSegment%3CS%3E"],[10136,"impl-LineSegment%3CS%3E"],[10137,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10138,"impl-QuadraticBezierSegment%3CS%3E"],[10146,"impl-Sum%3C%26Angle%3CT%3E%3E-for-Angle%3CT%3E"],[10147,"impl-Sum-for-Angle%3CT%3E"],[10152,"impl-Arc%3CS%3E"],[10153,"impl-Segment-for-Arc%3CS%3E"],[10154,"impl-CubicBezierSegment%3CS%3E"],[10155,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10156,"impl-LineSegment%3CS%3E"],[10157,"impl-Segment-for-LineSegment%3CS%3E"],[10158,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10159,"impl-QuadraticBezierSegment%3CS%3E"],[10279,"impl-Segment-for-Arc%3CS%3E"],[10280,"impl-Arc%3CS%3E"],[10281,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10282,"impl-CubicBezierSegment%3CS%3E"],[10283,"impl-Segment-for-LineSegment%3CS%3E"],[10284,"impl-LineSegment%3CS%3E"],[10285,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10286,"impl-QuadraticBezierSegment%3CS%3E"],[10297,"impl-Segment-for-Arc%3CS%3E"],[10298,"impl-Arc%3CS%3E"],[10299,"impl-CubicBezierSegment%3CS%3E"],[10300,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10301,"impl-Segment-for-LineSegment%3CS%3E"],[10302,"impl-LineSegment%3CS%3E"],[10303,"impl-QuadraticBezierSegment%3CS%3E"],[10304,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10472,"impl-PartialEq%3C%5BT%5D%3E-for-ArrayVec%3CT,+CAP%3E"],[10473,"impl-PartialEq-for-ArrayVec%3CT,+CAP%3E"],[10474,"impl-PartialEq-for-ArrayString%3CCAP%3E"],[10475,"impl-PartialEq%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10490,"impl-Display-for-ArrayString%3CCAP%3E"],[10491,"impl-Debug-for-ArrayString%3CCAP%3E"],[10492,"impl-Display-for-CapacityError%3CT%3E"],[10493,"impl-Debug-for-CapacityError%3CT%3E"],[10515,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10516,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[10518,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10519,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[10565,"impl-IntoIterator-for-ArrayVec%3CT,+CAP%3E"],[10566,"impl-IntoIterator-for-%26mut+ArrayVec%3CT,+CAP%3E"],[10567,"impl-IntoIterator-for-%26ArrayVec%3CT,+CAP%3E"],[10580,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10581,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[10587,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[10588,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10599,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10600,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[10644,"impl-TryFrom%3C%26str%3E-for-ArrayString%3CCAP%3E"],[10645,"impl-TryFrom%3CArguments%3C\'a%3E%3E-for-ArrayString%3CCAP%3E"],[10827,"impl-Add-for-Length%3CT,+U%3E"],[10828,"impl-Add%3C%26Length%3CT,+U%3E%3E-for-Length%3CT,+U%3E"],[10829,"impl-Add%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[10830,"impl-Add%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[10831,"impl-Add%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[10832,"impl-Add%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[10835,"impl-Add-for-Size2D%3CT,+U%3E"],[10836,"impl-Add%3C%26Size2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[10837,"impl-Add%3C%26Size3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[10838,"impl-Add-for-Size3D%3CT,+U%3E"],[10841,"impl-Add%3C%26Vector2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[10842,"impl-Add-for-Vector2D%3CT,+U%3E"],[10843,"impl-Add%3C%26Vector3D%3CT,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[10844,"impl-Add-for-Vector3D%3CT,+U%3E"],[10846,"impl-AddAssign%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[10847,"impl-AddAssign%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[10848,"impl-AddAssign%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[10849,"impl-AddAssign%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[10883,"impl-Transform2D%3CT,+Src,+Dst%3E"],[10884,"impl-ApproxEq%3CT%3E-for-Transform2D%3CT,+Src,+Dst%3E"],[10885,"impl-ApproxEq%3CT%3E-for-Transform3D%3CT,+Src,+Dst%3E"],[10886,"impl-Transform3D%3CT,+Src,+Dst%3E"],[11066,"impl-Ceil-for-Point2D%3CT,+U%3E"],[11067,"impl-Point2D%3CT,+U%3E"],[11068,"impl-Point3D%3CT,+U%3E"],[11069,"impl-Ceil-for-Point3D%3CT,+U%3E"],[11070,"impl-Size2D%3CT,+U%3E"],[11071,"impl-Ceil-for-Size2D%3CT,+U%3E"],[11072,"impl-Ceil-for-Size3D%3CT,+U%3E"],[11073,"impl-Size3D%3CT,+U%3E"],[11074,"impl-Vector2D%3CT,+U%3E"],[11075,"impl-Ceil-for-Vector2D%3CT,+U%3E"],[11076,"impl-Vector3D%3CT,+U%3E"],[11077,"impl-Ceil-for-Vector3D%3CT,+U%3E"],[11252,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Box2D%3CT,+U2%3E"],[11253,"impl-Div%3CT%3E-for-Box2D%3CT,+U%3E"],[11254,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Box3D%3CT,+U2%3E"],[11255,"impl-Div%3CT%3E-for-Box3D%3CT,+U%3E"],[11256,"impl-Div%3CScale%3CT,+Src,+Dst%3E%3E-for-Length%3CT,+Dst%3E"],[11257,"impl-Div%3CT%3E-for-Length%3CT,+U%3E"],[11258,"impl-Div%3CLength%3CT,+Src%3E%3E-for-Length%3CT,+Dst%3E"],[11259,"impl-Div%3CT%3E-for-Point2D%3CT,+U%3E"],[11260,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Point2D%3CT,+U2%3E"],[11261,"impl-Div%3CT%3E-for-Point3D%3CT,+U%3E"],[11262,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Point3D%3CT,+U2%3E"],[11263,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Rect%3CT,+U2%3E"],[11264,"impl-Div%3CT%3E-for-Rect%3CT,+U%3E"],[11265,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-SideOffsets2D%3CT,+U2%3E"],[11266,"impl-Div%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[11267,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Size2D%3CT,+U2%3E"],[11268,"impl-Div%3CT%3E-for-Size2D%3CT,+U%3E"],[11269,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Size3D%3CT,+U2%3E"],[11270,"impl-Div%3CT%3E-for-Size3D%3CT,+U%3E"],[11271,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Vector2D%3CT,+U2%3E"],[11272,"impl-Div%3CT%3E-for-Vector2D%3CT,+U%3E"],[11273,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Vector3D%3CT,+U2%3E"],[11274,"impl-Div%3CT%3E-for-Vector3D%3CT,+U%3E"],[11275,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Box2D%3CT,+U%3E"],[11276,"impl-DivAssign%3CT%3E-for-Box2D%3CT,+U%3E"],[11277,"impl-DivAssign%3CT%3E-for-Box3D%3CT,+U%3E"],[11278,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Box3D%3CT,+U%3E"],[11280,"impl-DivAssign%3CT%3E-for-Point2D%3CT,+U%3E"],[11281,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Point2D%3CT,+U%3E"],[11282,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Point3D%3CT,+U%3E"],[11283,"impl-DivAssign%3CT%3E-for-Point3D%3CT,+U%3E"],[11284,"impl-DivAssign%3CT%3E-for-Rect%3CT,+U%3E"],[11285,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Rect%3CT,+U%3E"],[11286,"impl-DivAssign%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[11287,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-SideOffsets2D%3CT,+U%3E"],[11288,"impl-DivAssign%3CT%3E-for-Size2D%3CT,+U%3E"],[11289,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Size2D%3CT,+U%3E"],[11290,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Size3D%3CT,+U%3E"],[11291,"impl-DivAssign%3CT%3E-for-Size3D%3CT,+U%3E"],[11292,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[11293,"impl-DivAssign%3CT%3E-for-Vector2D%3CT,+U%3E"],[11294,"impl-DivAssign%3CT%3E-for-Vector3D%3CT,+U%3E"],[11295,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[11446,"impl-Point2D%3CT,+U%3E"],[11447,"impl-Floor-for-Point2D%3CT,+U%3E"],[11448,"impl-Point3D%3CT,+U%3E"],[11449,"impl-Floor-for-Point3D%3CT,+U%3E"],[11450,"impl-Floor-for-Size2D%3CT,+U%3E"],[11451,"impl-Size2D%3CT,+U%3E"],[11452,"impl-Size3D%3CT,+U%3E"],[11453,"impl-Floor-for-Size3D%3CT,+U%3E"],[11454,"impl-Floor-for-Vector2D%3CT,+U%3E"],[11455,"impl-Vector2D%3CT,+U%3E"],[11456,"impl-Floor-for-Vector3D%3CT,+U%3E"],[11457,"impl-Vector3D%3CT,+U%3E"],[11485,"impl-From%3CPoint2D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[11486,"impl-From%3CVector3D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[11487,"impl-From%3CVector2D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[11488,"impl-From%3CPoint3D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[11491,"impl-From%3C%5BT;+2%5D%3E-for-Point2D%3CT,+U%3E"],[11492,"impl-From%3C(T,+T)%3E-for-Point2D%3CT,+U%3E"],[11493,"impl-From%3C%5BT;+3%5D%3E-for-Point3D%3CT,+U%3E"],[11494,"impl-From%3C(T,+T,+T)%3E-for-Point3D%3CT,+U%3E"],[11503,"impl-From%3C%5BT;+2%5D%3E-for-Size2D%3CT,+U%3E"],[11504,"impl-From%3CVector2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[11505,"impl-From%3C(T,+T)%3E-for-Size2D%3CT,+U%3E"],[11506,"impl-From%3C%5BT;+3%5D%3E-for-Size3D%3CT,+U%3E"],[11507,"impl-From%3CVector3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[11508,"impl-From%3C(T,+T,+T)%3E-for-Size3D%3CT,+U%3E"],[11516,"impl-From%3C%5BT;+2%5D%3E-for-Vector2D%3CT,+U%3E"],[11517,"impl-From%3CSize2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[11518,"impl-From%3C(T,+T)%3E-for-Vector2D%3CT,+U%3E"],[11520,"impl-From%3C(T,+T,+T)%3E-for-Vector3D%3CT,+U%3E"],[11522,"impl-From%3C%5BT;+3%5D%3E-for-Vector3D%3CT,+U%3E"],[11523,"impl-From%3CRotation3D%3CT,+Src,+Dst%3E%3E-for-RigidTransform3D%3CT,+Src,+Dst%3E"],[11525,"impl-From%3CVector3D%3CT,+Dst%3E%3E-for-RigidTransform3D%3CT,+Src,+Dst%3E"],[11702,"impl-Into%3C%5BT;+2%5D%3E-for-Point2D%3CT,+U%3E"],[11703,"impl-Into%3C(T,+T)%3E-for-Point2D%3CT,+U%3E"],[11704,"impl-Into%3C%5BT;+3%5D%3E-for-Point3D%3CT,+U%3E"],[11705,"impl-Into%3C(T,+T,+T)%3E-for-Point3D%3CT,+U%3E"],[11712,"impl-Into%3C(T,+T)%3E-for-Size2D%3CT,+U%3E"],[11714,"impl-Into%3C%5BT;+2%5D%3E-for-Size2D%3CT,+U%3E"],[11715,"impl-Into%3C(T,+T,+T)%3E-for-Size3D%3CT,+U%3E"],[11717,"impl-Into%3C%5BT;+3%5D%3E-for-Size3D%3CT,+U%3E"],[11720,"impl-Into%3CTransform2D%3CT,+Src,+Dst%3E%3E-for-Translation2D%3CT,+Src,+Dst%3E"],[11721,"impl-Into%3CVector2D%3CT,+Src%3E%3E-for-Translation2D%3CT,+Src,+Dst%3E"],[11724,"impl-Into%3CVector3D%3CT,+Src%3E%3E-for-Translation3D%3CT,+Src,+Dst%3E"],[11725,"impl-Into%3CTransform3D%3CT,+Src,+Dst%3E%3E-for-Translation3D%3CT,+Src,+Dst%3E"],[11726,"impl-Into%3C(T,+T)%3E-for-Vector2D%3CT,+U%3E"],[11727,"impl-Into%3C%5BT;+2%5D%3E-for-Vector2D%3CT,+U%3E"],[11729,"impl-Into%3C%5BT;+3%5D%3E-for-Vector3D%3CT,+U%3E"],[11731,"impl-Into%3C(T,+T,+T)%3E-for-Vector3D%3CT,+U%3E"],[12000,"impl-Mul%3CT%3E-for-Box2D%3CT,+U%3E"],[12001,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Box2D%3CT,+U1%3E"],[12002,"impl-Mul%3CT%3E-for-Box3D%3CT,+U%3E"],[12003,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Box3D%3CT,+U1%3E"],[12004,"impl-Mul%3CT%3E-for-Length%3CT,+U%3E"],[12005,"impl-Mul%3CScale%3CT,+Src,+Dst%3E%3E-for-Length%3CT,+Src%3E"],[12006,"impl-Mul%3CT%3E-for-Point2D%3CT,+U%3E"],[12007,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Point2D%3CT,+U1%3E"],[12008,"impl-Mul%3CT%3E-for-Point3D%3CT,+U%3E"],[12009,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Point3D%3CT,+U1%3E"],[12010,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Rect%3CT,+U1%3E"],[12011,"impl-Mul%3CT%3E-for-Rect%3CT,+U%3E"],[12013,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-SideOffsets2D%3CT,+U1%3E"],[12014,"impl-Mul%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[12015,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Size2D%3CT,+U1%3E"],[12016,"impl-Mul%3CT%3E-for-Size2D%3CT,+U%3E"],[12017,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Size3D%3CT,+U1%3E"],[12018,"impl-Mul%3CT%3E-for-Size3D%3CT,+U%3E"],[12019,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Vector2D%3CT,+U1%3E"],[12020,"impl-Mul%3CT%3E-for-Vector2D%3CT,+U%3E"],[12021,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Vector3D%3CT,+U1%3E"],[12022,"impl-Mul%3CT%3E-for-Vector3D%3CT,+U%3E"],[12023,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Box2D%3CT,+U%3E"],[12024,"impl-MulAssign%3CT%3E-for-Box2D%3CT,+U%3E"],[12025,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Box3D%3CT,+U%3E"],[12026,"impl-MulAssign%3CT%3E-for-Box3D%3CT,+U%3E"],[12028,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Point2D%3CT,+U%3E"],[12029,"impl-MulAssign%3CT%3E-for-Point2D%3CT,+U%3E"],[12030,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Point3D%3CT,+U%3E"],[12031,"impl-MulAssign%3CT%3E-for-Point3D%3CT,+U%3E"],[12032,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Rect%3CT,+U%3E"],[12033,"impl-MulAssign%3CT%3E-for-Rect%3CT,+U%3E"],[12034,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-SideOffsets2D%3CT,+U%3E"],[12035,"impl-MulAssign%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[12036,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Size2D%3CT,+U%3E"],[12037,"impl-MulAssign%3CT%3E-for-Size2D%3CT,+U%3E"],[12038,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Size3D%3CT,+U%3E"],[12039,"impl-MulAssign%3CT%3E-for-Size3D%3CT,+U%3E"],[12040,"impl-MulAssign%3CT%3E-for-Vector2D%3CT,+U%3E"],[12041,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[12042,"impl-MulAssign%3CT%3E-for-Vector3D%3CT,+U%3E"],[12043,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[12138,"impl-Round-for-Point2D%3CT,+U%3E"],[12139,"impl-Point2D%3CT,+U%3E"],[12140,"impl-Round-for-Point3D%3CT,+U%3E"],[12141,"impl-Point3D%3CT,+U%3E"],[12143,"impl-Size2D%3CT,+U%3E"],[12144,"impl-Round-for-Size2D%3CT,+U%3E"],[12145,"impl-Round-for-Size3D%3CT,+U%3E"],[12146,"impl-Size3D%3CT,+U%3E"],[12147,"impl-Round-for-Vector2D%3CT,+U%3E"],[12148,"impl-Vector2D%3CT,+U%3E"],[12149,"impl-Round-for-Vector3D%3CT,+U%3E"],[12150,"impl-Vector3D%3CT,+U%3E"],[12191,"impl-Sub-for-Point2D%3CT,+U%3E"],[12192,"impl-Sub%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[12193,"impl-Sub%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[12194,"impl-Sub-for-Point3D%3CT,+U%3E"],[12195,"impl-Sub%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[12196,"impl-Sub%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[12206,"impl-SubAssign%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[12207,"impl-SubAssign%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[12208,"impl-SubAssign%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[12209,"impl-SubAssign%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[12217,"impl-Sum%3C%26Length%3CT,+U%3E%3E-for-Length%3CT,+U%3E"],[12218,"impl-Sum-for-Length%3CT,+U%3E"],[12219,"impl-Sum-for-Size2D%3CT,+U%3E"],[12220,"impl-Sum%3C%26Size2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[12221,"impl-Sum-for-Size3D%3CT,+U%3E"],[12222,"impl-Sum%3C%26Size3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[12223,"impl-Sum-for-Vector2D%3CT,+U%3E"],[12224,"impl-Sum%3C%26Vector2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[12225,"impl-Sum-for-Vector3D%3CT,+U%3E"],[12226,"impl-Sum%3C%26Vector3D%3CT,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[12397,"impl-Rotation2D%3CT,+Src,+Dst%3E"],[12398,"impl-Transformation%3CS%3E-for-Rotation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[12399,"impl-Scale%3CT,+Src,+Dst%3E"],[12400,"impl-Transformation%3CS%3E-for-Scale%3CS,+UnknownUnit,+UnknownUnit%3E"],[12401,"impl-Transform2D%3CT,+Src,+Dst%3E"],[12402,"impl-Transformation%3CS%3E-for-Transform2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[12403,"impl-Transformation%3CS%3E-for-Translation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[12404,"impl-Translation2D%3CT,+Src,+Dst%3E"],[12420,"impl-Rotation2D%3CT,+Src,+Dst%3E"],[12421,"impl-Transformation%3CS%3E-for-Rotation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[12422,"impl-Transformation%3CS%3E-for-Scale%3CS,+UnknownUnit,+UnknownUnit%3E"],[12423,"impl-Scale%3CT,+Src,+Dst%3E"],[12424,"impl-Transformation%3CS%3E-for-Transform2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[12425,"impl-Transform2D%3CT,+Src,+Dst%3E"],[12708,"impl-Point2D%3CT,+U%3E"],[12709,"impl-Zero-for-Point2D%3CT,+U%3E"],[12710,"impl-Zero-for-Point3D%3CT,+U%3E"],[12711,"impl-Point3D%3CT,+U%3E"],[12714,"impl-Size2D%3CT,+U%3E"],[12715,"impl-Zero-for-Size2D%3CT,+U%3E"],[12716,"impl-Zero-for-Size3D%3CT,+U%3E"],[12717,"impl-Size3D%3CT,+U%3E"],[12718,"impl-Vector2D%3CT,+U%3E"],[12719,"impl-Zero-for-Vector2D%3CT,+U%3E"],[12720,"impl-Vector3D%3CT,+U%3E"],[12721,"impl-Zero-for-Vector3D%3CT,+U%3E"],[13177,"impl-PathBuilder-for-BuilderWithAttributes"],[13178,"impl-BuilderWithAttributes"],[13192,"impl-BuilderWithAttributes"],[13193,"impl-Build-for-BuilderWithAttributes"],[13211,"impl-BuilderWithAttributes"],[13212,"impl-PathBuilder-for-BuilderWithAttributes"],[13239,"impl-BuilderWithAttributes"],[13240,"impl-PathBuilder-for-BuilderWithAttributes"],[13321,"impl-BuilderWithAttributes"],[13322,"impl-PathBuilder-for-BuilderWithAttributes"],[13330,"impl-BuilderWithAttributes"],[13331,"impl-PathBuilder-for-BuilderWithAttributes"],[13334,"impl-PathBuilder-for-BuilderWithAttributes"],[13335,"impl-BuilderWithAttributes"],[13337,"impl-PathBuilder-for-BuilderWithAttributes"],[13338,"impl-BuilderWithAttributes"],[13414,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13415,"impl-Builder%3C\'l%3E"],[13416,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[13417,"impl-BuilderWithAttributes%3C\'l%3E"],[13424,"impl-Build-for-Builder%3C\'l%3E"],[13425,"impl-Builder%3C\'l%3E"],[13426,"impl-Build-for-BuilderWithAttributes%3C\'l%3E"],[13427,"impl-BuilderWithAttributes%3C\'l%3E"],[13433,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13434,"impl-Builder%3C\'l%3E"],[13435,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[13436,"impl-BuilderWithAttributes%3C\'l%3E"],[13449,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13450,"impl-Builder%3C\'l%3E"],[13451,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[13452,"impl-BuilderWithAttributes%3C\'l%3E"],[13490,"impl-Builder%3C\'l%3E"],[13491,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13492,"impl-BuilderWithAttributes%3C\'l%3E"],[13493,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[13499,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13500,"impl-Builder%3C\'l%3E"],[13501,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[13502,"impl-BuilderWithAttributes%3C\'l%3E"],[13503,"impl-Builder%3C\'l%3E"],[13504,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13505,"impl-BuilderWithAttributes%3C\'l%3E"],[13506,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[15490,"impl-Debug-for-Error"],[15491,"impl-Display-for-Error"],[16049,"impl-Scrollable-for-State"],[16050,"impl-State"],[16057,"impl-Scrollable-for-State"],[16058,"impl-State"],[17684,"impl-Flags-for-Backends"],[17685,"impl-Backends"],[17686,"impl-Flags-for-Features"],[17687,"impl-Features"],[17688,"impl-Flags-for-InstanceFlags"],[17689,"impl-InstanceFlags"],[17690,"impl-Flags-for-DownlevelFlags"],[17691,"impl-DownlevelFlags"],[17692,"impl-Flags-for-ShaderStages"],[17693,"impl-ShaderStages"],[17694,"impl-Flags-for-TextureFormatFeatureFlags"],[17695,"impl-TextureFormatFeatureFlags"],[17696,"impl-ColorWrites"],[17697,"impl-Flags-for-ColorWrites"],[17698,"impl-BufferUsages"],[17699,"impl-Flags-for-BufferUsages"],[17700,"impl-Flags-for-TextureUsages"],[17701,"impl-TextureUsages"],[17702,"impl-Flags-for-PipelineStatisticsTypes"],[17703,"impl-PipelineStatisticsTypes"],[18995,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[18996,"impl-RenderPass%3C\'a%3E"],[18997,"impl-RenderBundleEncoder%3C\'a%3E"],[18998,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[18999,"impl-RenderPass%3C\'a%3E"],[19000,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[19001,"impl-RenderBundleEncoder%3C\'a%3E"],[19002,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[19003,"impl-RenderPass%3C\'a%3E"],[19004,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[19005,"impl-RenderBundleEncoder%3C\'a%3E"],[19006,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[19007,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[19008,"impl-RenderPass%3C\'a%3E"],[19009,"impl-RenderBundleEncoder%3C\'a%3E"],[19010,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[19539,"impl-Binary-for-Backends"],[19540,"impl-UpperHex-for-Backends"],[19541,"impl-Debug-for-Backends"],[19542,"impl-LowerHex-for-Backends"],[19543,"impl-Octal-for-Backends"],[19545,"impl-Debug-for-Features"],[19546,"impl-LowerHex-for-Features"],[19547,"impl-Octal-for-Features"],[19548,"impl-UpperHex-for-Features"],[19549,"impl-Binary-for-Features"],[19550,"impl-Binary-for-InstanceFlags"],[19551,"impl-LowerHex-for-InstanceFlags"],[19552,"impl-Debug-for-InstanceFlags"],[19553,"impl-Octal-for-InstanceFlags"],[19554,"impl-UpperHex-for-InstanceFlags"],[19557,"impl-LowerHex-for-DownlevelFlags"],[19558,"impl-Octal-for-DownlevelFlags"],[19559,"impl-Debug-for-DownlevelFlags"],[19560,"impl-Binary-for-DownlevelFlags"],[19561,"impl-UpperHex-for-DownlevelFlags"],[19566,"impl-Debug-for-ShaderStages"],[19567,"impl-Binary-for-ShaderStages"],[19568,"impl-UpperHex-for-ShaderStages"],[19569,"impl-Octal-for-ShaderStages"],[19570,"impl-LowerHex-for-ShaderStages"],[19590,"impl-Octal-for-TextureFormatFeatureFlags"],[19591,"impl-Debug-for-TextureFormatFeatureFlags"],[19592,"impl-UpperHex-for-TextureFormatFeatureFlags"],[19593,"impl-LowerHex-for-TextureFormatFeatureFlags"],[19594,"impl-Binary-for-TextureFormatFeatureFlags"],[19628,"impl-LowerHex-for-ColorWrites"],[19629,"impl-UpperHex-for-ColorWrites"],[19630,"impl-Debug-for-ColorWrites"],[19631,"impl-Binary-for-ColorWrites"],[19632,"impl-Octal-for-ColorWrites"],[19655,"impl-Display-for-SurfaceError"],[19656,"impl-Debug-for-SurfaceError"],[19658,"impl-Debug-for-RequestDeviceError"],[19659,"impl-Display-for-RequestDeviceError"],[19660,"impl-Debug-for-CreateSurfaceError"],[19661,"impl-Display-for-CreateSurfaceError"],[19663,"impl-Debug-for-BufferAsyncError"],[19664,"impl-Display-for-BufferAsyncError"],[19670,"impl-Display-for-Error"],[19671,"impl-Debug-for-Error"],[19672,"impl-LowerHex-for-BufferUsages"],[19673,"impl-UpperHex-for-BufferUsages"],[19674,"impl-Debug-for-BufferUsages"],[19675,"impl-Binary-for-BufferUsages"],[19676,"impl-Octal-for-BufferUsages"],[19679,"impl-Debug-for-TextureUsages"],[19680,"impl-LowerHex-for-TextureUsages"],[19681,"impl-UpperHex-for-TextureUsages"],[19682,"impl-Octal-for-TextureUsages"],[19683,"impl-Binary-for-TextureUsages"],[19712,"impl-Octal-for-PipelineStatisticsTypes"],[19713,"impl-Debug-for-PipelineStatisticsTypes"],[19714,"impl-LowerHex-for-PipelineStatisticsTypes"],[19715,"impl-Binary-for-PipelineStatisticsTypes"],[19716,"impl-UpperHex-for-PipelineStatisticsTypes"],[20036,"impl-Backends"],[20037,"impl-Flags-for-Backends"],[20038,"impl-Flags-for-Features"],[20039,"impl-Features"],[20040,"impl-Flags-for-InstanceFlags"],[20041,"impl-InstanceFlags"],[20042,"impl-Flags-for-DownlevelFlags"],[20043,"impl-DownlevelFlags"],[20044,"impl-Flags-for-ShaderStages"],[20045,"impl-ShaderStages"],[20046,"impl-TextureFormatFeatureFlags"],[20047,"impl-Flags-for-TextureFormatFeatureFlags"],[20048,"impl-ColorWrites"],[20049,"impl-Flags-for-ColorWrites"],[20050,"impl-BufferUsages"],[20051,"impl-Flags-for-BufferUsages"],[20052,"impl-Flags-for-TextureUsages"],[20053,"impl-TextureUsages"],[20054,"impl-Flags-for-PipelineStatisticsTypes"],[20055,"impl-PipelineStatisticsTypes"],[21930,"impl-RenderPass%3C\'a%3E"],[21931,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[21933,"impl-RenderBundleEncoder%3C\'a%3E"],[21934,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[21937,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[21938,"impl-RenderPass%3C\'a%3E"],[21939,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[21940,"impl-RenderBundleEncoder%3C\'a%3E"],[21941,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[21942,"impl-RenderPass%3C\'a%3E"],[21944,"impl-RenderBundleEncoder%3C\'a%3E"],[21945,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[21946,"impl-RenderPass%3C\'a%3E"],[21947,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[21949,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[21950,"impl-RenderBundleEncoder%3C\'a%3E"],[21953,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[21954,"impl-RenderPass%3C\'a%3E"],[21955,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[21956,"impl-RenderBundleEncoder%3C\'a%3E"],[23878,"impl-Debug-for-BindGroupLayoutEntryError"],[23879,"impl-Display-for-BindGroupLayoutEntryError"],[23880,"impl-Debug-for-CreateBindGroupLayoutError"],[23881,"impl-Display-for-CreateBindGroupLayoutError"],[23882,"impl-Debug-for-CreateBindGroupError"],[23883,"impl-Display-for-CreateBindGroupError"],[23884,"impl-Debug-for-BindingZone"],[23885,"impl-Display-for-BindingZone"],[23886,"impl-Display-for-BindingTypeMaxCountError"],[23887,"impl-Debug-for-BindingTypeMaxCountError"],[23893,"impl-Debug-for-CreatePipelineLayoutError"],[23894,"impl-Display-for-CreatePipelineLayoutError"],[23895,"impl-Display-for-PushConstantUploadError"],[23896,"impl-Debug-for-PushConstantUploadError"],[23901,"impl-Debug-for-BindError"],[23902,"impl-Display-for-BindError"],[23905,"impl-Display-for-GetBindGroupLayoutError"],[23906,"impl-Debug-for-GetBindGroupLayoutError"],[23907,"impl-Display-for-LateMinBufferBindingSizeMismatch"],[23908,"impl-Debug-for-LateMinBufferBindingSizeMismatch"],[23911,"impl-From%3CMissingDownlevelFlags%3E-for-BindGroupLayoutEntryError"],[23912,"impl-From%3CMissingFeatures%3E-for-BindGroupLayoutEntryError"],[23916,"impl-From%3CDeviceError%3E-for-CreateBindGroupError"],[23918,"impl-From%3CUsageConflict%3E-for-CreateBindGroupError"],[23919,"impl-From%3CMissingBufferUsageError%3E-for-CreateBindGroupError"],[23920,"impl-From%3CMissingTextureUsageError%3E-for-CreateBindGroupError"],[23928,"impl-From%3CDeviceError%3E-for-CreatePipelineLayoutError"],[23930,"impl-From%3CMissingFeatures%3E-for-CreatePipelineLayoutError"],[25374,"impl-Debug-for-CreateRenderBundleError"],[25375,"impl-Display-for-CreateRenderBundleError"],[25376,"impl-Display-for-ExecutionError"],[25377,"impl-Debug-for-ExecutionError"],[25379,"impl-Display-for-RenderBundleError"],[25380,"impl-Debug-for-RenderBundleError"],[25381,"impl-Display-for-ClearError"],[25382,"impl-Debug-for-ClearError"],[25385,"impl-Display-for-DispatchError"],[25386,"impl-Debug-for-DispatchError"],[25387,"impl-Debug-for-ComputePassErrorInner"],[25388,"impl-Display-for-ComputePassErrorInner"],[25389,"impl-Debug-for-ComputePassError"],[25390,"impl-Display-for-ComputePassError"],[25391,"impl-Debug-for-DrawError"],[25392,"impl-Display-for-DrawError"],[25393,"impl-Debug-for-RenderCommandError"],[25394,"impl-Display-for-RenderCommandError"],[25397,"impl-Display-for-QueryError"],[25398,"impl-Debug-for-QueryError"],[25399,"impl-Display-for-QueryUseError"],[25400,"impl-Debug-for-QueryUseError"],[25401,"impl-Debug-for-ResolveError"],[25402,"impl-Display-for-ResolveError"],[25411,"impl-Display-for-AttachmentErrorLocation"],[25412,"impl-Debug-for-AttachmentErrorLocation"],[25413,"impl-Debug-for-ColorAttachmentError"],[25414,"impl-Display-for-ColorAttachmentError"],[25415,"impl-Debug-for-RenderPassErrorInner"],[25416,"impl-Display-for-RenderPassErrorInner"],[25417,"impl-Debug-for-RenderPassError"],[25418,"impl-Display-for-RenderPassError"],[25420,"impl-Display-for-TransferError"],[25421,"impl-Debug-for-TransferError"],[25422,"impl-Display-for-CopyError"],[25423,"impl-Debug-for-CopyError"],[25425,"impl-Display-for-CommandEncoderError"],[25426,"impl-Debug-for-CommandEncoderError"],[25427,"impl-Debug-for-PassErrorScope"],[25428,"impl-Display-for-PassErrorScope"],[25457,"impl-From%3CMissingBufferUsageError%3E-for-ComputePassErrorInner"],[25458,"impl-From%3CQueryUseError%3E-for-ComputePassErrorInner"],[25459,"impl-From%3CDispatchError%3E-for-ComputePassErrorInner"],[25460,"impl-From%3CCommandEncoderError%3E-for-ComputePassErrorInner"],[25461,"impl-From%3CBindError%3E-for-ComputePassErrorInner"],[25462,"impl-From%3CMissingDownlevelFlags%3E-for-ComputePassErrorInner"],[25463,"impl-From%3CPushConstantUploadError%3E-for-ComputePassErrorInner"],[25464,"impl-From%3CDeviceError%3E-for-ComputePassErrorInner"],[25466,"impl-From%3CMissingFeatures%3E-for-ComputePassErrorInner"],[25467,"impl-From%3CUsageConflict%3E-for-ComputePassErrorInner"],[25471,"impl-From%3CMissingTextureUsageError%3E-for-RenderCommandError"],[25472,"impl-From%3CUsageConflict%3E-for-RenderCommandError"],[25473,"impl-From%3CMissingBufferUsageError%3E-for-RenderCommandError"],[25475,"impl-From%3CRenderPassCompatibilityError%3E-for-RenderCommandError"],[25476,"impl-From%3CPushConstantUploadError%3E-for-RenderCommandError"],[25480,"impl-From%3CDeviceError%3E-for-QueryError"],[25481,"impl-From%3CQueryUseError%3E-for-QueryError"],[25482,"impl-From%3CCommandEncoderError%3E-for-QueryError"],[25484,"impl-From%3CResolveError%3E-for-QueryError"],[25497,"impl-From%3CDeviceError%3E-for-RenderPassErrorInner"],[25498,"impl-From%3CDrawError%3E-for-RenderPassErrorInner"],[25499,"impl-From%3CColorAttachmentError%3E-for-RenderPassErrorInner"],[25500,"impl-From%3CRenderPassCompatibilityError%3E-for-RenderPassErrorInner"],[25501,"impl-From%3CUsageConflict%3E-for-RenderPassErrorInner"],[25502,"impl-From%3CMissingBufferUsageError%3E-for-RenderPassErrorInner"],[25503,"impl-From%3CMissingTextureUsageError%3E-for-RenderPassErrorInner"],[25505,"impl-From%3CRenderCommandError%3E-for-RenderPassErrorInner"],[25506,"impl-From%3CMissingDownlevelFlags%3E-for-RenderPassErrorInner"],[25507,"impl-From%3CQueryUseError%3E-for-RenderPassErrorInner"],[25508,"impl-From%3CBindError%3E-for-RenderPassErrorInner"],[25509,"impl-From%3CCommandEncoderError%3E-for-RenderPassErrorInner"],[25510,"impl-From%3CMissingFeatures%3E-for-RenderPassErrorInner"],[25514,"impl-From%3CMissingDownlevelFlags%3E-for-TransferError"],[25515,"impl-From%3CClearError%3E-for-TransferError"],[25516,"impl-From%3CTransferError%3E-for-CopyError"],[25517,"impl-From%3CDeviceError%3E-for-CopyError"],[25518,"impl-From%3CCommandEncoderError%3E-for-CopyError"],[26890,"impl-Display-for-WaitIdleError"],[26891,"impl-Debug-for-WaitIdleError"],[26894,"impl-Display-for-RenderPassCompatibilityError"],[26895,"impl-Debug-for-RenderPassCompatibilityError"],[26896,"impl-Display-for-InvalidDevice"],[26897,"impl-Debug-for-InvalidDevice"],[26898,"impl-Debug-for-DeviceError"],[26899,"impl-Display-for-DeviceError"],[26900,"impl-Display-for-MissingFeatures"],[26901,"impl-Debug-for-MissingFeatures"],[26902,"impl-Display-for-MissingDownlevelFlags"],[26903,"impl-Debug-for-MissingDownlevelFlags"],[27447,"impl-Debug-for-InvalidQueue"],[27448,"impl-Display-for-InvalidQueue"],[27449,"impl-Display-for-QueueWriteError"],[27450,"impl-Debug-for-QueueWriteError"],[27451,"impl-Display-for-QueueSubmitError"],[27452,"impl-Debug-for-QueueSubmitError"],[27459,"impl-From%3CTransferError%3E-for-QueueWriteError"],[27460,"impl-From%3CDeviceError%3E-for-QueueWriteError"],[27461,"impl-From%3CClearError%3E-for-QueueWriteError"],[27463,"impl-From%3CBufferAccessError%3E-for-QueueSubmitError"],[27464,"impl-From%3CDeviceError%3E-for-QueueSubmitError"],[27653,"impl-Debug-for-CreateDeviceError"],[27654,"impl-Display-for-CreateDeviceError"],[27715,"impl-Debug-for-ContextError"],[27716,"impl-Display-for-ContextError"],[28462,"impl-Debug-for-FailedLimit"],[28463,"impl-Display-for-FailedLimit"],[28464,"impl-Display-for-IsSurfaceSupportedError"],[28465,"impl-Debug-for-IsSurfaceSupportedError"],[28466,"impl-Display-for-GetSurfaceSupportError"],[28467,"impl-Debug-for-GetSurfaceSupportError"],[28468,"impl-Display-for-RequestDeviceError"],[28469,"impl-Debug-for-RequestDeviceError"],[28470,"impl-Display-for-InvalidAdapter"],[28471,"impl-Debug-for-InvalidAdapter"],[28472,"impl-Display-for-RequestAdapterError"],[28473,"impl-Debug-for-RequestAdapterError"],[29409,"impl-Flags-for-StorageAccess"],[29410,"impl-StorageAccess"],[29411,"impl-Flags-for-Barrier"],[29412,"impl-Barrier"],[30166,"impl-Display-for-WithSpan%3CE%3E"],[30167,"impl-Debug-for-WithSpan%3CE%3E"],[30181,"impl-LowerHex-for-StorageAccess"],[30182,"impl-Binary-for-StorageAccess"],[30183,"impl-Octal-for-StorageAccess"],[30184,"impl-Debug-for-StorageAccess"],[30185,"impl-UpperHex-for-StorageAccess"],[30207,"impl-Debug-for-Barrier"],[30208,"impl-UpperHex-for-Barrier"],[30209,"impl-LowerHex-for-Barrier"],[30210,"impl-Binary-for-Barrier"],[30211,"impl-Octal-for-Barrier"],[30341,"impl-Flags-for-StorageAccess"],[30342,"impl-StorageAccess"],[30343,"impl-Barrier"],[30344,"impl-Flags-for-Barrier"],[30456,"impl-Index%3CRange%3CT%3E%3E-for-Arena%3CT%3E"],[30457,"impl-Index%3CHandle%3CT%3E%3E-for-Arena%3CT%3E"],[31788,"impl-RayFlag"],[31789,"impl-Flags-for-RayFlag"],[31811,"impl-UpperHex-for-RayFlag"],[31812,"impl-Octal-for-RayFlag"],[31813,"impl-Binary-for-RayFlag"],[31814,"impl-Debug-for-RayFlag"],[31815,"impl-LowerHex-for-RayFlag"],[31819,"impl-RayFlag"],[31820,"impl-Flags-for-RayFlag"],[31983,"impl-Flags-for-Features"],[31984,"impl-Features"],[31985,"impl-Flags-for-WriterFlags"],[31986,"impl-WriterFlags"],[32107,"impl-Binary-for-Features"],[32108,"impl-LowerHex-for-Features"],[32109,"impl-Octal-for-Features"],[32110,"impl-Debug-for-Features"],[32111,"impl-UpperHex-for-Features"],[32112,"impl-Debug-for-Version"],[32113,"impl-Display-for-Version"],[32114,"impl-UpperHex-for-WriterFlags"],[32115,"impl-Debug-for-WriterFlags"],[32116,"impl-LowerHex-for-WriterFlags"],[32117,"impl-Binary-for-WriterFlags"],[32118,"impl-Octal-for-WriterFlags"],[32125,"impl-Display-for-Error"],[32126,"impl-Debug-for-Error"],[32152,"impl-Features"],[32153,"impl-Flags-for-Features"],[32154,"impl-WriterFlags"],[32155,"impl-Flags-for-WriterFlags"],[32556,"impl-Debug-for-EntryPointError"],[32557,"impl-Display-for-EntryPointError"],[32559,"impl-Display-for-Error"],[32560,"impl-Debug-for-Error"],[32915,"impl-Display-for-Error"],[32916,"impl-Debug-for-Error"],[32917,"impl-Display-for-EntryPointError"],[32918,"impl-Debug-for-EntryPointError"],[33766,"impl-Flags-for-ImageTypeFlags"],[33767,"impl-ImageTypeFlags"],[33768,"impl-WriterFlags"],[33769,"impl-Flags-for-WriterFlags"],[33908,"impl-Display-for-Error"],[33909,"impl-Debug-for-Error"],[33911,"impl-Binary-for-ImageTypeFlags"],[33912,"impl-Debug-for-ImageTypeFlags"],[33913,"impl-Octal-for-ImageTypeFlags"],[33914,"impl-LowerHex-for-ImageTypeFlags"],[33915,"impl-UpperHex-for-ImageTypeFlags"],[33916,"impl-Octal-for-WriterFlags"],[33917,"impl-UpperHex-for-WriterFlags"],[33918,"impl-Debug-for-WriterFlags"],[33919,"impl-LowerHex-for-WriterFlags"],[33920,"impl-Binary-for-WriterFlags"],[33947,"impl-ImageTypeFlags"],[33948,"impl-Flags-for-ImageTypeFlags"],[33949,"impl-WriterFlags"],[33950,"impl-Flags-for-WriterFlags"],[34311,"impl-Display-for-ParseError"],[34312,"impl-Debug-for-ParseError"],[34759,"impl-Display-for-ConstantEvaluatorError"],[34760,"impl-Debug-for-ConstantEvaluatorError"],[34764,"impl-Display-for-IndexableLengthError"],[34765,"impl-Debug-for-IndexableLengthError"],[34767,"impl-Display-for-Alignment"],[34768,"impl-Debug-for-Alignment"],[34771,"impl-Debug-for-LayoutErrorInner"],[34772,"impl-Display-for-LayoutErrorInner"],[34773,"impl-Debug-for-LayoutError"],[34774,"impl-Display-for-LayoutError"],[34777,"impl-Debug-for-ResolveError"],[34778,"impl-Display-for-ResolveError"],[35035,"impl-Mul-for-Alignment"],[35036,"impl-Mul%3Cu32%3E-for-Alignment"],[35693,"impl-UniformityRequirements"],[35694,"impl-Flags-for-UniformityRequirements"],[35695,"impl-GlobalUse"],[35696,"impl-Flags-for-GlobalUse"],[35697,"impl-Flags-for-TypeFlags"],[35698,"impl-TypeFlags"],[35699,"impl-Flags-for-ValidationFlags"],[35700,"impl-ValidationFlags"],[35701,"impl-Flags-for-Capabilities"],[35702,"impl-Capabilities"],[35703,"impl-ShaderStages"],[35704,"impl-Flags-for-ShaderStages"],[35996,"impl-Binary-for-UniformityRequirements"],[35997,"impl-LowerHex-for-UniformityRequirements"],[35998,"impl-Debug-for-UniformityRequirements"],[35999,"impl-Octal-for-UniformityRequirements"],[36000,"impl-UpperHex-for-UniformityRequirements"],[36002,"impl-Octal-for-GlobalUse"],[36003,"impl-Binary-for-GlobalUse"],[36004,"impl-Debug-for-GlobalUse"],[36005,"impl-UpperHex-for-GlobalUse"],[36006,"impl-LowerHex-for-GlobalUse"],[36009,"impl-Display-for-ComposeError"],[36010,"impl-Debug-for-ComposeError"],[36011,"impl-Display-for-ExpressionError"],[36012,"impl-Debug-for-ExpressionError"],[36013,"impl-Debug-for-ConstExpressionError"],[36014,"impl-Display-for-ConstExpressionError"],[36015,"impl-Display-for-LiteralError"],[36016,"impl-Debug-for-LiteralError"],[36017,"impl-Display-for-CallError"],[36018,"impl-Debug-for-CallError"],[36019,"impl-Debug-for-LocalVariableError"],[36020,"impl-Display-for-LocalVariableError"],[36021,"impl-Debug-for-FunctionError"],[36022,"impl-Display-for-FunctionError"],[36023,"impl-Display-for-GlobalVariableError"],[36024,"impl-Debug-for-GlobalVariableError"],[36025,"impl-Display-for-VaryingError"],[36026,"impl-Debug-for-VaryingError"],[36027,"impl-Debug-for-EntryPointError"],[36028,"impl-Display-for-EntryPointError"],[36029,"impl-UpperHex-for-TypeFlags"],[36030,"impl-Binary-for-TypeFlags"],[36031,"impl-LowerHex-for-TypeFlags"],[36032,"impl-Debug-for-TypeFlags"],[36033,"impl-Octal-for-TypeFlags"],[36034,"impl-Debug-for-Disalignment"],[36035,"impl-Display-for-Disalignment"],[36036,"impl-Display-for-TypeError"],[36037,"impl-Debug-for-TypeError"],[36038,"impl-Debug-for-ValidationFlags"],[36039,"impl-UpperHex-for-ValidationFlags"],[36040,"impl-Octal-for-ValidationFlags"],[36041,"impl-Binary-for-ValidationFlags"],[36042,"impl-LowerHex-for-ValidationFlags"],[36043,"impl-LowerHex-for-Capabilities"],[36044,"impl-UpperHex-for-Capabilities"],[36045,"impl-Octal-for-Capabilities"],[36046,"impl-Binary-for-Capabilities"],[36047,"impl-Debug-for-Capabilities"],[36048,"impl-Binary-for-ShaderStages"],[36049,"impl-UpperHex-for-ShaderStages"],[36050,"impl-Octal-for-ShaderStages"],[36051,"impl-Debug-for-ShaderStages"],[36052,"impl-LowerHex-for-ShaderStages"],[36055,"impl-Display-for-ConstantError"],[36056,"impl-Debug-for-ConstantError"],[36057,"impl-Debug-for-ValidationError"],[36058,"impl-Display-for-ValidationError"],[36065,"impl-From%3CLiteralError%3E-for-ExpressionError"],[36066,"impl-From%3CResolveError%3E-for-ExpressionError"],[36068,"impl-From%3CComposeError%3E-for-ExpressionError"],[36069,"impl-From%3CIndexableLengthError%3E-for-ExpressionError"],[36070,"impl-From%3CWidthError%3E-for-ConstExpressionError"],[36071,"impl-From%3CComposeError%3E-for-ConstExpressionError"],[36072,"impl-From%3CLiteralError%3E-for-ConstExpressionError"],[36073,"impl-From%3CResolveError%3E-for-ConstExpressionError"],[36083,"impl-From%3CFunctionError%3E-for-EntryPointError"],[36085,"impl-From%3CVaryingError%3E-for-EntryPointError"],[36096,"impl-From%3CLayoutError%3E-for-ValidationError"],[36097,"impl-From%3CBadRangeError%3E-for-ValidationError"],[36098,"impl-From%3CFwdDepError%3E-for-ValidationError"],[36100,"impl-From%3CInvalidHandleError%3E-for-ValidationError"],[36101,"impl-From%3CBadHandle%3E-for-ValidationError"],[36133,"impl-Flags-for-UniformityRequirements"],[36134,"impl-UniformityRequirements"],[36135,"impl-GlobalUse"],[36136,"impl-Flags-for-GlobalUse"],[36137,"impl-TypeFlags"],[36138,"impl-Flags-for-TypeFlags"],[36139,"impl-ValidationFlags"],[36140,"impl-Flags-for-ValidationFlags"],[36141,"impl-Capabilities"],[36142,"impl-Flags-for-Capabilities"],[36143,"impl-Flags-for-ShaderStages"],[36144,"impl-ShaderStages"],[36190,"impl-Index%3CHandle%3CExpression%3E%3E-for-FunctionInfo"],[36191,"impl-Index%3CHandle%3CGlobalVariable%3E%3E-for-FunctionInfo"],[36192,"impl-Index%3CHandle%3CFunction%3E%3E-for-ModuleInfo"],[36193,"impl-Index%3CHandle%3CExpression%3E%3E-for-ModuleInfo"],[36194,"impl-Index%3CHandle%3CType%3E%3E-for-ModuleInfo"],[37050,"impl-PipelineFlags"],[37051,"impl-Flags-for-PipelineFlags"],[37245,"impl-Debug-for-ShaderError%3CE%3E"],[37246,"impl-Display-for-ShaderError%3CWithSpan%3CValidationError%3E%3E"],[37247,"impl-Display-for-ShaderError%3CParseError%3E"],[37248,"impl-Display-for-CreateShaderModuleError"],[37249,"impl-Debug-for-CreateShaderModuleError"],[37251,"impl-Debug-for-ImplicitLayoutError"],[37252,"impl-Display-for-ImplicitLayoutError"],[37254,"impl-Debug-for-CreateComputePipelineError"],[37255,"impl-Display-for-CreateComputePipelineError"],[37261,"impl-Display-for-ColorStateError"],[37262,"impl-Debug-for-ColorStateError"],[37263,"impl-Display-for-DepthStencilStateError"],[37264,"impl-Debug-for-DepthStencilStateError"],[37265,"impl-Debug-for-CreateRenderPipelineError"],[37266,"impl-Display-for-CreateRenderPipelineError"],[37267,"impl-Octal-for-PipelineFlags"],[37268,"impl-Debug-for-PipelineFlags"],[37269,"impl-Binary-for-PipelineFlags"],[37270,"impl-LowerHex-for-PipelineFlags"],[37271,"impl-UpperHex-for-PipelineFlags"],[37279,"impl-From%3CShaderError%3CParseError%3E%3E-for-CreateShaderModuleError"],[37280,"impl-From%3CMissingFeatures%3E-for-CreateShaderModuleError"],[37282,"impl-From%3CShaderError%3CWithSpan%3CValidationError%3E%3E%3E-for-CreateShaderModuleError"],[37283,"impl-From%3CDeviceError%3E-for-CreateShaderModuleError"],[37285,"impl-From%3CCreateBindGroupLayoutError%3E-for-ImplicitLayoutError"],[37287,"impl-From%3CCreatePipelineLayoutError%3E-for-ImplicitLayoutError"],[37289,"impl-From%3CMissingDownlevelFlags%3E-for-CreateComputePipelineError"],[37290,"impl-From%3CStageError%3E-for-CreateComputePipelineError"],[37291,"impl-From%3CImplicitLayoutError%3E-for-CreateComputePipelineError"],[37292,"impl-From%3CDeviceError%3E-for-CreateComputePipelineError"],[37301,"impl-From%3CMissingFeatures%3E-for-CreateRenderPipelineError"],[37302,"impl-From%3CColorAttachmentError%3E-for-CreateRenderPipelineError"],[37303,"impl-From%3CMissingDownlevelFlags%3E-for-CreateRenderPipelineError"],[37304,"impl-From%3CImplicitLayoutError%3E-for-CreateRenderPipelineError"],[37306,"impl-From%3CDeviceError%3E-for-CreateRenderPipelineError"],[37307,"impl-From%3CDepthStencilStateError%3E-for-CreateRenderPipelineError"],[37332,"impl-PipelineFlags"],[37333,"impl-Flags-for-PipelineFlags"],[37859,"impl-Display-for-SurfaceError"],[37860,"impl-Debug-for-SurfaceError"],[37861,"impl-Debug-for-ConfigureSurfaceError"],[37862,"impl-Display-for-ConfigureSurfaceError"],[37867,"impl-From%3CMissingDownlevelFlags%3E-for-ConfigureSurfaceError"],[37868,"impl-From%3CDeviceError%3E-for-ConfigureSurfaceError"],[37869,"impl-From%3CWaitIdleError%3E-for-ConfigureSurfaceError"],[38585,"impl-Display-for-BufferAccessError"],[38586,"impl-Debug-for-BufferAccessError"],[38588,"impl-Debug-for-CreateBufferError"],[38589,"impl-Display-for-CreateBufferError"],[38596,"impl-Display-for-TextureDimensionError"],[38597,"impl-Debug-for-TextureDimensionError"],[38598,"impl-Debug-for-CreateTextureError"],[38599,"impl-Display-for-CreateTextureError"],[38601,"impl-Display-for-TextureViewNotRenderableReason"],[38602,"impl-Debug-for-TextureViewNotRenderableReason"],[38604,"impl-Display-for-CreateTextureViewError"],[38605,"impl-Debug-for-CreateTextureViewError"],[38606,"impl-Display-for-TextureViewDestroyError"],[38607,"impl-Debug-for-TextureViewDestroyError"],[38611,"impl-Display-for-CreateSamplerError"],[38612,"impl-Debug-for-CreateSamplerError"],[38613,"impl-Display-for-CreateQuerySetError"],[38614,"impl-Debug-for-CreateQuerySetError"],[38616,"impl-Display-for-DestroyError"],[38617,"impl-Debug-for-DestroyError"],[38625,"impl-From%3CDeviceError%3E-for-BufferAccessError"],[38627,"impl-From%3CMissingBufferUsageError%3E-for-BufferAccessError"],[38629,"impl-From%3CBufferAccessError%3E-for-CreateBufferError"],[38630,"impl-From%3CMissingDownlevelFlags%3E-for-CreateBufferError"],[38631,"impl-From%3CDeviceError%3E-for-CreateBufferError"],[38640,"impl-From%3CTextureDimensionError%3E-for-CreateTextureError"],[38641,"impl-From%3CDeviceError%3E-for-CreateTextureError"],[38642,"impl-From%3CCreateTextureViewError%3E-for-CreateTextureError"],[38643,"impl-From%3CMissingDownlevelFlags%3E-for-CreateTextureError"],[38653,"impl-From%3CMissingFeatures%3E-for-CreateSamplerError"],[38655,"impl-From%3CDeviceError%3E-for-CreateSamplerError"],[38657,"impl-From%3CMissingFeatures%3E-for-CreateQuerySetError"],[38658,"impl-From%3CDeviceError%3E-for-CreateQuerySetError"],[39525,"impl-Display-for-NumericType"],[39526,"impl-Debug-for-NumericType"],[39527,"impl-Debug-for-InterfaceVar"],[39528,"impl-Display-for-InterfaceVar"],[39530,"impl-Debug-for-MissingBufferUsageError"],[39531,"impl-Display-for-MissingBufferUsageError"],[39532,"impl-Display-for-MissingTextureUsageError"],[39533,"impl-Debug-for-MissingTextureUsageError"],[39534,"impl-Debug-for-BindingError"],[39535,"impl-Display-for-BindingError"],[39536,"impl-Display-for-FilteringError"],[39537,"impl-Debug-for-FilteringError"],[39538,"impl-Display-for-InputError"],[39539,"impl-Debug-for-InputError"],[39540,"impl-Display-for-StageError"],[39541,"impl-Debug-for-StageError"],[40443,"impl-Flags-for-PipelineLayoutFlags"],[40444,"impl-PipelineLayoutFlags"],[40445,"impl-Flags-for-BindGroupLayoutFlags"],[40446,"impl-BindGroupLayoutFlags"],[40447,"impl-TextureFormatCapabilities"],[40448,"impl-Flags-for-TextureFormatCapabilities"],[40449,"impl-FormatAspects"],[40450,"impl-Flags-for-FormatAspects"],[40451,"impl-MemoryFlags"],[40452,"impl-Flags-for-MemoryFlags"],[40453,"impl-AccelerationStructureBuildFlags"],[40454,"impl-Flags-for-AccelerationStructureBuildFlags"],[40455,"impl-Flags-for-AttachmentOps"],[40456,"impl-AttachmentOps"],[40457,"impl-AccelerationStructureGeometryFlags"],[40458,"impl-Flags-for-AccelerationStructureGeometryFlags"],[40459,"impl-BufferUses"],[40460,"impl-Flags-for-BufferUses"],[40461,"impl-Flags-for-TextureUses"],[40462,"impl-TextureUses"],[40463,"impl-AccelerationStructureUses"],[40464,"impl-Flags-for-AccelerationStructureUses"],[41405,"impl-Display-for-DeviceError"],[41406,"impl-Debug-for-DeviceError"],[41407,"impl-Debug-for-ShaderError"],[41408,"impl-Display-for-ShaderError"],[41409,"impl-Display-for-PipelineError"],[41410,"impl-Debug-for-PipelineError"],[41411,"impl-Display-for-SurfaceError"],[41412,"impl-Debug-for-SurfaceError"],[41413,"impl-Display-for-InstanceError"],[41414,"impl-Debug-for-InstanceError"],[41415,"impl-UpperHex-for-PipelineLayoutFlags"],[41416,"impl-Octal-for-PipelineLayoutFlags"],[41417,"impl-Binary-for-PipelineLayoutFlags"],[41418,"impl-Debug-for-PipelineLayoutFlags"],[41419,"impl-LowerHex-for-PipelineLayoutFlags"],[41420,"impl-Octal-for-BindGroupLayoutFlags"],[41421,"impl-Binary-for-BindGroupLayoutFlags"],[41422,"impl-LowerHex-for-BindGroupLayoutFlags"],[41423,"impl-UpperHex-for-BindGroupLayoutFlags"],[41424,"impl-Debug-for-BindGroupLayoutFlags"],[41425,"impl-Octal-for-TextureFormatCapabilities"],[41426,"impl-LowerHex-for-TextureFormatCapabilities"],[41427,"impl-Debug-for-TextureFormatCapabilities"],[41428,"impl-Binary-for-TextureFormatCapabilities"],[41429,"impl-UpperHex-for-TextureFormatCapabilities"],[41430,"impl-Debug-for-FormatAspects"],[41431,"impl-Octal-for-FormatAspects"],[41432,"impl-LowerHex-for-FormatAspects"],[41433,"impl-Binary-for-FormatAspects"],[41434,"impl-UpperHex-for-FormatAspects"],[41435,"impl-UpperHex-for-MemoryFlags"],[41436,"impl-Octal-for-MemoryFlags"],[41437,"impl-LowerHex-for-MemoryFlags"],[41438,"impl-Binary-for-MemoryFlags"],[41439,"impl-Debug-for-MemoryFlags"],[41440,"impl-Debug-for-AccelerationStructureBuildFlags"],[41441,"impl-LowerHex-for-AccelerationStructureBuildFlags"],[41442,"impl-Binary-for-AccelerationStructureBuildFlags"],[41443,"impl-UpperHex-for-AccelerationStructureBuildFlags"],[41444,"impl-Octal-for-AccelerationStructureBuildFlags"],[41445,"impl-Binary-for-AttachmentOps"],[41446,"impl-LowerHex-for-AttachmentOps"],[41447,"impl-Debug-for-AttachmentOps"],[41448,"impl-UpperHex-for-AttachmentOps"],[41449,"impl-Octal-for-AttachmentOps"],[41450,"impl-UpperHex-for-AccelerationStructureGeometryFlags"],[41451,"impl-Debug-for-AccelerationStructureGeometryFlags"],[41452,"impl-Octal-for-AccelerationStructureGeometryFlags"],[41453,"impl-LowerHex-for-AccelerationStructureGeometryFlags"],[41454,"impl-Binary-for-AccelerationStructureGeometryFlags"],[41455,"impl-Debug-for-BufferUses"],[41456,"impl-Binary-for-BufferUses"],[41457,"impl-Octal-for-BufferUses"],[41458,"impl-UpperHex-for-BufferUses"],[41459,"impl-LowerHex-for-BufferUses"],[41460,"impl-UpperHex-for-TextureUses"],[41461,"impl-Binary-for-TextureUses"],[41462,"impl-Octal-for-TextureUses"],[41463,"impl-LowerHex-for-TextureUses"],[41464,"impl-Debug-for-TextureUses"],[41517,"impl-UpperHex-for-AccelerationStructureUses"],[41518,"impl-Debug-for-AccelerationStructureUses"],[41519,"impl-LowerHex-for-AccelerationStructureUses"],[41520,"impl-Octal-for-AccelerationStructureUses"],[41521,"impl-Binary-for-AccelerationStructureUses"],[41534,"impl-From%3CMapError%3E-for-DeviceError"],[41535,"impl-From%3CResult%3E-for-DeviceError"],[41537,"impl-From%3CAllocationError%3E-for-DeviceError"],[41538,"impl-From%3CAllocationError%3E-for-DeviceError"],[41695,"impl-PipelineLayoutFlags"],[41696,"impl-Flags-for-PipelineLayoutFlags"],[41697,"impl-BindGroupLayoutFlags"],[41698,"impl-Flags-for-BindGroupLayoutFlags"],[41699,"impl-TextureFormatCapabilities"],[41700,"impl-Flags-for-TextureFormatCapabilities"],[41701,"impl-Flags-for-FormatAspects"],[41702,"impl-FormatAspects"],[41703,"impl-Flags-for-MemoryFlags"],[41704,"impl-MemoryFlags"],[41705,"impl-Flags-for-AccelerationStructureBuildFlags"],[41706,"impl-AccelerationStructureBuildFlags"],[41707,"impl-AttachmentOps"],[41708,"impl-Flags-for-AttachmentOps"],[41709,"impl-AccelerationStructureGeometryFlags"],[41710,"impl-Flags-for-AccelerationStructureGeometryFlags"],[41711,"impl-BufferUses"],[41712,"impl-Flags-for-BufferUses"],[41713,"impl-Flags-for-TextureUses"],[41714,"impl-TextureUses"],[41715,"impl-Flags-for-AccelerationStructureUses"],[41716,"impl-AccelerationStructureUses"],[44812,"impl-Workarounds"],[44813,"impl-Flags-for-Workarounds"],[45081,"impl-UpperHex-for-Workarounds"],[45082,"impl-Binary-for-Workarounds"],[45083,"impl-Debug-for-Workarounds"],[45084,"impl-LowerHex-for-Workarounds"],[45085,"impl-Octal-for-Workarounds"],[45153,"impl-Workarounds"],[45154,"impl-Flags-for-Workarounds"],[46391,"impl-Display-for-HandleError"],[46392,"impl-Debug-for-HandleError"],[46422,"impl-From%3CHaikuWindowHandle%3E-for-RawWindowHandle"],[46423,"impl-From%3CWaylandWindowHandle%3E-for-RawWindowHandle"],[46424,"impl-From%3CDrmWindowHandle%3E-for-RawWindowHandle"],[46425,"impl-From%3CXcbWindowHandle%3E-for-RawWindowHandle"],[46426,"impl-From%3CWebOffscreenCanvasWindowHandle%3E-for-RawWindowHandle"],[46427,"impl-From%3CGbmWindowHandle%3E-for-RawWindowHandle"],[46428,"impl-From%3CAppKitWindowHandle%3E-for-RawWindowHandle"],[46429,"impl-From%3CWin32WindowHandle%3E-for-RawWindowHandle"],[46430,"impl-From%3CWinRtWindowHandle%3E-for-RawWindowHandle"],[46431,"impl-From%3CWindowHandle%3C\'_%3E%3E-for-RawWindowHandle"],[46432,"impl-From%3CWebCanvasWindowHandle%3E-for-RawWindowHandle"],[46433,"impl-From%3CUiKitWindowHandle%3E-for-RawWindowHandle"],[46434,"impl-From%3CXlibWindowHandle%3E-for-RawWindowHandle"],[46435,"impl-From%3COrbitalWindowHandle%3E-for-RawWindowHandle"],[46437,"impl-From%3CWebWindowHandle%3E-for-RawWindowHandle"],[46438,"impl-From%3CAndroidNdkWindowHandle%3E-for-RawWindowHandle"],[46439,"impl-From%3COrbitalDisplayHandle%3E-for-RawDisplayHandle"],[46440,"impl-From%3CGbmDisplayHandle%3E-for-RawDisplayHandle"],[46441,"impl-From%3CDrmDisplayHandle%3E-for-RawDisplayHandle"],[46442,"impl-From%3CWaylandDisplayHandle%3E-for-RawDisplayHandle"],[46443,"impl-From%3CHaikuDisplayHandle%3E-for-RawDisplayHandle"],[46444,"impl-From%3CDisplayHandle%3C\'_%3E%3E-for-RawDisplayHandle"],[46445,"impl-From%3CAndroidDisplayHandle%3E-for-RawDisplayHandle"],[46446,"impl-From%3CUiKitDisplayHandle%3E-for-RawDisplayHandle"],[46447,"impl-From%3CAppKitDisplayHandle%3E-for-RawDisplayHandle"],[46449,"impl-From%3CXlibDisplayHandle%3E-for-RawDisplayHandle"],[46450,"impl-From%3CXcbDisplayHandle%3E-for-RawDisplayHandle"],[46451,"impl-From%3CWebDisplayHandle%3E-for-RawDisplayHandle"],[46452,"impl-From%3CWindowsDisplayHandle%3E-for-RawDisplayHandle"],[47754,"impl-From%3Cf32%3E-for-LineHeight"],[47756,"impl-From%3CPixels%3E-for-LineHeight"],[48205,"impl-Debug-for-Value"],[48206,"impl-Display-for-Value"],[48213,"impl-Focusable-for-State%3CP%3E"],[48214,"impl-State%3CP%3E"],[48308,"impl-Focusable-for-State%3CP%3E"],[48309,"impl-State%3CP%3E"],[48314,"impl-TextInput-for-State%3CP%3E"],[48315,"impl-State%3CP%3E"],[48317,"impl-State%3CP%3E"],[48318,"impl-TextInput-for-State%3CP%3E"],[48320,"impl-TextInput-for-State%3CP%3E"],[48321,"impl-State%3CP%3E"],[48333,"impl-State%3CP%3E"],[48334,"impl-TextInput-for-State%3CP%3E"],[48399,"impl-State%3CP%3E"],[48400,"impl-Focusable-for-State%3CP%3E"],[49376,"impl-Display-for-Error"],[49377,"impl-Debug-for-Error"],[49378,"impl-From%3CError%3E-for-Error"],[49379,"impl-From%3CError%3E-for-Error"],[49380,"impl-From%3CImageError%3E-for-Error"],[49424,"impl-Debug-for-CropError"],[49425,"impl-Display-for-CropError"]]},\ +"iced":{"doc":"Iced is a cross-platform GUI library focused on simplicity …","t":"TGETGFPFPFPGPPTPFIPPGGKPPPPPFGPPTPGPPTRPPTPTFFPFTFFGIKPEFPFPFTGPPTFTPPPTTTONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOQCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNEOCNNNNOOENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCONNNNNCNNNNNCMMNNNNNNNNOCNNNNNNNNNNOOONNNNNNNCNNNMONNONNNNNNNCCCNNCMNNNNNNNNNNNNNNNNNNNNNNNNNNOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNMOCNOOOCNNNNNNOOOOOOKFFKKFFKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNMNNNNNNNNONNNNNNNNNNNNNNMMNNNNMNNNNONNNNNNNNNNNNEOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCMMONCNNNNNNNNCNNNNMNCNNOMONNCCNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOCMNMMNFPGGFRPPPKPNNNNNNNNNNNNNNNNNNNNNNNNNNMNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOFFTFNNNNNNNNNNNNHNNNNNNNNNNNNHNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNHNNNNNNNNNNNNNNNNNNNNNGPPNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNPPGPPFPGPPPGPPPPGPPPPPPPPPPGPPPPNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOFPGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFKNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFKFNNNNNNNNNNNNNNNONNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNMNMNIRKMMPGFPKNNNNNNNNNNNNMNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNTPPPPTPGKRRRRRKGTRGPKRPKRPGFNNNNNNNNNNNNNNMOMNNNNMNNOMMNMMMNNNNNNNNCNNNNNMMMNNONNNNNNMMMCMMONNNNNNNNNNNNNNNNNNMMOMMNNMMMMOONNNNNNNNNNNNNNNNNNMMNMOMMGPPPGPGPPPPGPKPPRPPPPGPPPPPPPPPPPPPPNNNNNNNNNNNNNNMNNNNNNMMNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNMMMMNNNNNNNNNNNNNNNNNNMMOFRKRFRNNNNNNNNNNNNNNMNNNNNONNMNNNNNNNNNNNNNONNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNFKFFKNNNNNNNNNNNNNNNNNNNNNNONNNNNNNMNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNCNNNMNNNNNONNNOCNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNPKPKGKPKNNNNNNNNMNNNNNNNMCNNNNNNNNNNNNMHMMMHMCNMMCNNNNNNNNMNFKNNNNNNNNNNHNNNNNNNNNHNHMHHONNNNNNNNNNNNMNONNNNNNNMNFFKHMHMOOOOKHMHMHMHMPPFPGPGFRKFMOHHPPGFFNNNNNNNNNNNNNNONNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNNNNNGPPPPPGPPPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFKRRRRKRNMNNNNONNNNNNNNNNNNNNNNNNNNNNNMNNNNONMNNNNNNNNNMMFFNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNOHHFHPGPPGPPGPPGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNIKNMMPPPPGPPPPPGPFPPPPPPPPPPPPPPGGPPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOFGFPNNNNONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNTTTPGGPPTPGFPPPPTPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPGPPPGPPPGPPPPGPPPPPPPPPPGPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOKRRRRMNNNNNNNNNNMMMICFFFRKMOOOOOFNONNNNNNNNNNOONNNNONONNNONNNNNNNNNNNNNNNNNNONFHHHHFNNNNNNNNNNOONNNNHNNNNOONNNNNNNNNOOOOOONNNNNNNNNGPGGPGFPPPPPPPPPPPPPPPPPTPPPPPPPPPPPPPPPPPTPGFGGPPPPGGGGPPGPPGGPGGGGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFJJFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNOOOOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOFFTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGFPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOFFFFFKFPTTTTTTTPRFFPFFFFFFGFFFFFFFRFIFFGFPFFFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHCHNNNCHNNNNNNNNNNNNHQCHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNCNCHNCHNNCCHHHQCCHCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNNNNNNNNNNNNNNNNNNNNCHNCHCHNNNNNNNNNNNNNNCHCHCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNHCHHMNNNNNNNNNNNNNNNNNNNNNNNFFFRKMNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNOOONNNNNNNNNNNNNNNNNNHPPFFGFGGRGPPGFGPPPFKKPPPPRFGFPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNONCONNNONNOONOCNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNPGPPPGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFPPGPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNGFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNFFFNNCNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNNNNNFFNNNNNNNOONNNNNNNOONNNNNNNNNNNNNNOOOOONNNNNNNNNFIFKIPPPPPFPPPPPPFPGFGTTTIFPPPGGPPSPPPFFFFFIFFKKPPPPPPPGPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNMNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCONNNNCNNNNNNNMNNNNNNCCNNOOCMNNNNONNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOFKFFKRKFFNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNOOMNNNNNNNNNNNMNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNMNNNNNNNMNNNNNNMMNNNNNNMNMNMNMNMNMNMNNNNNNNNNNNNMNMNMNMNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFIFTTTTTTFFFTTTTIFITTKRIKIFTTTIIFITNONNNNNNNNNNNNNNMNNNNNNNNONNNMNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOCNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNMNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNOOOOOOONONNNNNNNNNNNNHONNCNNNOOOMNNNNNNNNNNNNNNHNNNNNNNNMNNNNNNNNNMNNNNNNNNNNNNONNNNOONMNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCMHONNONNNNNNNNNOOONNNNOONNNNNNNNNOOONNNNNFFFFNNNNNNNONNNNNONONNNNNNNNNNNNONOOOOOONNNNNNNNOOFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNOONNNNNONNNNNNNNNNNNNNONNNNNNNNFFFFFFFFFFFFFFFFFFFFFKFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNCNNNNNNNNNNNNNNNNNMNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOONNNNNNNNNOONNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNONNNNNNNNNNNNHHNNNNNNNNNNNONOMHNNNNONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNOHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNONNNOONNNNNNNNNOOOOOOOOONNNNNNNNNNNOOOOOOOOONNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNKMNMHHIIIIIIIIIIIIIIIIIIIIOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOKKKKKMMMMMFFFFNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNRKKMMMMNNMMMMMMMMMNNHHHHHHFFFKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIIIOOOOOOOOOOHOHHOOOOOOOIFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKKRKNNNNNNNNMMMMNMMMNNNMMMMMNMMMMMMMMMNNMMMMNNMNPPPGFGPPPPPFGOOOOOOOFFFRKMNNNNNNNNNNOONNNNNNNNONNNNNNNNNNNNNONNNNNNMONNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNFFNNNNNNNHNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNFFFRKNNMNNNNNNNNOONNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNNHNNGFFPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNFFNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFCFFFRKNNNMNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFGPPPGFGGPGKPGPPPPPFPGFPPPFPGFPPFPPFRKGFPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNHNNNNNNONNMONNNNONNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHONOOOOOOOOOOOOOGPPPFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNOOOOOOFPPGFPFFPRKMNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNHNNNNNNNNNNONNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOHHOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOOOFFRKNMNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPGGPPPPPPPPFPFPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFRKMNNNNNOOONNNNNNNONNNNNNMNNNNNNNNNONNNNNNNNNFPGPPPFRKNNMNNNNNNNNNNNNNNNNONNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNOFGPGTPPFFFTFFFPFRKPFNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNHNNNNNHNNNNONNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNOOOOOOGPPKRKPFRFPNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNTTTTTTTPFFPGPPPGGPPPPPPPPPPPPPPPPPPTTTTTTTTTPGFPPPPPPPPPPPPPPPPFFFFFFGGFGGFPFPPIPFFGIIFFFFTTTTTTTTTSSTTTTTPPPPFFFFFFIGPGFFFFFPPFPPPPPPPPPPTTTTTTTTPPPPPPPPFPFPFIGGPPPFFPPPGPIPPPPPPGGPPPPPPFTTTTTTTGFPPPGPPPPPPPPPPPPFPGPTTTPGPPPPPTTTTTTTFIFIFIFFFPPPGPFPFFPPPIPPFPPPPPGPPPTSTTTTTTTTTTTTPIGGGPPPPFTTTPPPPPPPTPPPPPPPPPPPPPFFFPPPPPPTTTTTTTSFFPFPPPPPPPGPGPGGFFGFTSSSFIGFFPPPPPPPPPPPPTTTTTTTTTPPPPFFIFFFFFFFFFPPIFFPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPTTTTTTTTTTTTTTFPPPGGFIGFFFGFPPPPPPPPPPPPPPPPPPPPPPPPFPGFPPGPGFPPPFFIGGGGFTTTTTTTTTTTTFPGIGGFFGFFPPFGPPPPPPTTTTPPPPPPPPPPPKPPPPPPPPTTTTTTTTSTTTPPPPPPFFGFGPPTTPPPPKKKPPKPPTTPPPONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNOOOOOONOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOONOOOOOOOOONNNNNOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOONNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOONNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNOONNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNOONNOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOQQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOONOOOOONNOOOOONNNOOOOOOOOOOOOOONOOOOOOOOOOOOOOOOOOOOOOONOOONNOOOONNNNOOOONNNNNNNNNNNNNNOOOONNOOOOOONNNNNNONNNNONNNNOOOONOOOONNNNOOOOONNNNNNNNNNNNNNNOONOOONOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNOOONNONNNOOOONOOOONOONNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNCOOQOOOOONNNOONNNOONNNNOOOOOOOOOOOOOOOOOOOOOOOOOISSSPIPCCCCCCQQQQQQQQQQQCCHCCCCCCCCCCFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFPGFFFFFFGIPPPPGPFGPGPPPFPPGGGPPPPPPPPPGPPPPPPPPPPPPPPPFPPPPPPPPPPPPFFPGPPPPPPPPPPPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONOOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPGPPFFPPPPPPPPPPPPPPPGPPPGFFGFFFGFPPGPGPPGPPPPPPPPPPPPGPPGPPPPPPPPGPIIIPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPFGPPPPGPPPPGFFIFFFPGFFFFFGGFPGPPPPPPPPPPPGPPGPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOCOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOONNNOOONNNOOOOOCOOOOONNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHIFPIGIFFFFGFFPPPPPFPPFFPPPGGPPSPFGPPPNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOCOOCOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPPPFPFPPGGPPFFPPGPPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOGFPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFKNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNONNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNOKTMMMMFFFNNNOONNNNNNNNNNNNOOOONNNNNNOOOONNNNOONNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIIISFIIIIIIIIIIIIIKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNMNNMNKKFFIRNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFGPFGFPFPFPPPPPPGPPPPPGIGFPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONHOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOTTSPPPPPPPPPPPPGPPPPFPPGPPPPPPPPPGPPTSFPPPPPPPGGPPFPPPPGPPPIPPPPPPPPPPGFPPPPPPPPPPPPPPPPPPGGPPPPPFPFPPPPPPPGPPTPTPIIIIPPPPPPPPPPPPPFPFPFPFPPPPPFPPPTPTPPGGPGPPPPPPPPGPPPPPTPPPPPPGPPPPFPPPPPPPPPGPPPPPPPPFPPPPPPPPPPPPGPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPFPPGPPPPPGFPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPTTPPGPPPGPFPGPGPPPPPPPPFFIFPPGPPPFGPPFPPPFGPGPPPPPPFGPPTTPPGPPFPPPPPPPGPPPPTPFPPPPPPPTPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOOOOONNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOONNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCONNNOOOONNOOOOOOOOONNNNNNNNNNNOONNONNNNNNNNNNNNNNNNNNNNNNNNNNOCNNOONNNONNNNNNNNNONNNONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCONONNNONNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOTTTTTTFTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNCNNNCNNNNNNNNNNNNNNTTTITTTTTPTTTTPPPGSTTFPTTTTPTTTPPTFFFFTTSSTTTFPPFGPFFONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNONONNONNONNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNOONOOOOFIPGGPPFFGPPPPPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOGFIPGIFGPPPIPPPPFFPIFPPPPPPPPPPPPPPFNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONOOOCOONOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOGPGPPPGGPGPPFPPPPPPPPPPPPPNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNONNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTTPPPPPPPPPPPPPPFIPPPTPGPPPPPPPTTFPPTPPPPPPPPTPTPTTPPGPTPPPPPPPPPPPPPPPPPPPPPTPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPFPPPTPTPPPPPPPPPTPPPPTPPPPPPPPPPPPFPPTPFPPPPPPPPPPPPPPPPPPPTTPPPPPPPPTPPPPPPPTPPPPTPTPPPPPPPPTPPTPPPPPPPPTPTTTPPPPPPPPPPPPPPPPPPPPPPPPTPPTPTPPPPPPPPPPPTTPPPFFGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOHFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNCSFPPPPPFGPPFGPPPTFPPIPFTPPPPPPPFPPPPPGGPPPPPPPPPPPPPPPPPPPPFGFPPPTPGFPPTPPSPPPFGPTPPPPPPTPFPPGPPPNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNOOCNONNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOFGPPGGGPPPPPPPHNNNNNONNONNNNNNNHNNNNOOONNNNNNNNNNNNNNNNNNTPPPPPPTTPPPPTTTTTTTTGFPPPPPGPPPPGPGPPTTTGPPTTPPGPPPPPPPGFPTTPPPPGFFPGTTTPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPGTTPPPPPPPPPPPPPFPPPPPPPPPPPPPPTTPPTTTPPPTTTTTFPPPPPPGFTPPFFPPPPTGFFGTTPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNONNNNNNONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOTPPPPGFFPGGGPGPPPPPPPPPFPPPIGPPPPPPPPPPPPPPPPPPPPPFFPFFTFPPFFGPPPPPPPPFFFPTTPNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOONOOOONONNONNNNNOOOOOONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOPGPPPPPPPPPPGFPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNPPPPPPPFGIPIGFFFPGGGGPGGPFFPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPFIPKFFFGFPPTFGIGGFFGGPPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNMNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOONOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPGGPPGPPPGPPFFPPPPPPFPFFPPGIPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOPTTTRFFFGFFGGFFFFFFFKRFKFFTTTRFFRFFPRFFFFFFFPFTTTTTTTTTTTFFRKRFPFFRFFTTTTTFFKPPPRGITTPFTRIFFTTTTKRFFPTTIPPPTTSSSSSSTTTTTFITTPFPTTTFPPPTTTTTTTTGRFFFTSRKRTFFFRFPTTTTTTTTTTTTTRFGGRFPPKRFFGRTTRFFFFFFFRFPPTTTPJTFFOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONOCMMMMMOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOMOONNMOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOMNNNNNNNNNNNNNMMNMMMOOOOMMMMMMMMMMMMMMMOONOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOMMMMMMMMMMMMMMMONNNNNNNNNNNOOMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOCNNNNNNNNNNNOMMMOOMMOOOOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNOOOOOOOOOOOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNMMMCOONNNNNNNNNNNOOOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOONMNNOOOONOOOOOOOOOOONNNNNNNNNNNNOOOOOOMOOMMOOOOOOOOOOONNNNNNNNNNNMMOOOOOOOONNNNNNNNNNNMMMMMMMMMMOOOOOOONNNNOOOOOOMOOMONNNNNNNNNNNNNNNNNNNNNNMOMNNNNNNNNNNNOOOOOMOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOCOMOMOOSCHCCCCCCCCCSSSSSSSSSSSFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFFFFPFFFFFFPFFFPFGFNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNONNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOFFFFFFFFFFFFTTGPFFPFFFPFTFGFFFFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOPFPFPPFFFPPFFPPFFPPFFGKKKKPPPFFGGPPFFPPPFFPPPFFPFFPFPFFPFPPFFPPFFONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOMNMNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOMNFKFFFFPPKFGNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOMMNNNNNNNNNNNNNNNNNNNNNNNNNNMMMMNNNNNNNHNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNHNNONNNNNNNHHOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOHNHHNNMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONOOOFPFGFPFFRKMNNNNNNNNNNOOONNNNNNNNOONNNNNNNNNMHNNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNHOOOOFFFRKFNNMNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPFPGPGFRKINNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGFPPFPPPPPGPPPPPPGPPPPPPPPPRKFPPPMNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNOFFSFFPPGFRKFFMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNCNNNNNNNNNNNNNNNNNMMNNNNNNNHNNNNNNNNNNNNNNNNNNNHNNMNONNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNHHNNHNNHNNNNNNMNNNNNHNNNMOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHMFPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOGPGGPGFPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGFGGPPPPGGGGPPGPPGGPGGGGPOOCOOOFFJJFFFFFFOOOOOOOOOOOOOOOOOOOOOOOOOOOOFRKFMNNNNNOONNNNNNNNNNOONNNMNNNNNNNNNNNNNNNNNNPPPGPFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFPFGPFRKFMNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNMHNNNNNNNNNNNNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOOOGPPPPPPPPPPPPPGPPPPPPPPPPPPFFFPGTPPGPPPPPGGPPPPFPFPPPPPGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOHHHNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOHHHHHNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNCONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONOHOHHNNNOOHOHCHCOOHNNNNNNNNNNHHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOGFPPPNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNNNNGPFPNNNNNNNONNNNNNNNNNNNNNNNNNNONNNNNNNNNNFFNONNNNNNNNNONNNNNNNNNONNNNONNNNNNNNNOOOOOOONONNNNNNNNO","n":["ALL","Alignment","Application","BLACK","Background","Border","Center","Color","Color","Command","Contain","ContentFit","Cover","Custom","DEFAULT","Dark","Degrees","Element","End","Err","Error","Event","Executor","ExecutorCreationFailed","Fill","Fill","FillPortion","Fixed","Font","Gradient","Gradient","GraphicsCreationFailed","INFINITY","Keyboard","Length","Light","Linear","MONOSPACE","Message","Mouse","None","ORIGIN","Ok","PI","Padding","Pixels","PlatformSpecific","Point","RANGE","Radians","Rectangle","Renderer","Result","Sandbox","ScaleDown","Settings","Shadow","Shrink","Size","Start","Subscription","TRANSPARENT","Theme","TinySkia","Touch","UNIT","Vector","WHITE","Wgpu","Window","WindowCreationFailed","ZERO","ZERO","ZERO","a","actions","active","active","active","active","active","active","active","active","active","active_horizontal","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add","add","add","add","add_assign","advanced","alignment","appearance","appearance","appearance","appearance","appearance","appearance","appearance","application","area","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","b","batch","batch","blur_radius","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom","center","center_x","center_y","clear","clipboard","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","color","color","command","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","custom","custom_with_fn","default","default","default","default","default","default","default","default","default_font","default_size","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dimensions","dimensions","disabled","disabled","disabled","disabled_color","disabled_color","distance","div","div","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","dragging","dragging","dragging_horizontal","draw","draw","draw","draw_mesh","draw_pipeline_primitive","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","enter","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","event","executor","expand","expand","extended_palette","family","fill_editor","fill_factor","fill_paragraph","fill_quad","fill_text","fit","fit","fluid","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","focused","focused","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_f64","from_i64","from_linear_rgba","from_recipe","from_rgb","from_rgb8","from_rgba","from_rgba8","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_u64","futures","g","gradient","hash","hash","hash","hash","height","height","highlighter","horizontal","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered_horizontal","hovered_region","hovered_split","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","intersection","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_linear","into_recipes","into_rgba8","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","inverse","invert","is_fill","is_within","keyboard","left","load_font","map","map","max","min","mouse","mul","mul","mul","mul","mul_alpha","multi_window","new","new","new","new","new","new","new","new","none","none","offset","overlay","palette","partial_cmp","partial_cmp","partial_cmp","perform","picked_split","placeholder_color","placeholder_color","position","pressed","r","radius","right","run","run","run","scale_factor","scale_factor","selection_color","selection_color","settings","single","size","snap","spawn","stretch","style","style","style","sub","sub","sub","sub","sub","sub","sub_assign","subscription","system","theme","theme","theme","time","title","to_distance","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","top","touch","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","value_color","value_color","vertical","view","weight","widget","widget","width","width","width","window","with","with_layer","with_name","with_radius","with_size","with_translation","x","x","x","y","y","y","Clipboard","Hasher","Layout","Overlay","Renderer","Shell","Text","Widget","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","are_widgets_invalid","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds","bounds","children","children","clear","clone","clone","clone_into","clone_into","components_from","components_from","components_from","components_from","content","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","diff","downcast","downcast","downcast","downcast","draw","draw","drop","drop","drop","drop","fill_quad","finish","fmt","fmt","fmt","font","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","graphics","horizontal_alignment","image","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invalidate_layout","invalidate_widgets","is_empty","is_layout_invalid","is_over","layout","layout","layout","line_height","merge","mouse","mouse_interaction","mouse_interaction","new","new","on_event","on_event","operate","operate","overlay","overlay","overlay","position","publish","read","redraw_request","renderer","request_redraw","revalidate_layout","shaping","size","size","size_hint","state","subscription","svg","tag","text","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","vertical_alignment","widget","with_layer","with_offset","with_translation","write","write","Bytes","Bytes","Data","FilterMethod","Handle","Handle","Linear","Nearest","Path","Renderer","Rgba","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","as_ref","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","dimensions","downcast","downcast","draw","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","height","pixels","width","Layout","Limits","NONE","Node","adapt_into_using","adapt_into_using","align","align_mut","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","atomic","borrow","borrow","borrow_mut","borrow_mut","bounds","children","clone","clone","clone_into","clone_into","components_from","components_from","contained","container","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","flex","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","height","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","loose","max","max_height","max_width","min","min_height","min_width","move_to","move_to_mut","new","new","next_to_each_other","padded","positioned","resolve","shrink","size","sized","to_owned","to_owned","translate","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","with_children","Axis","Horizontal","Vertical","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","resolve","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Available","Back","Button","ButtonPressed","ButtonReleased","Click","Crosshair","Cursor","CursorEntered","CursorLeft","CursorMoved","Event","Forward","Grab","Grabbing","Idle","Interaction","Left","Lines","Middle","NotAllowed","Other","Pixels","Pointer","ResizingHorizontally","ResizingVertically","Right","ScrollDelta","Text","Unavailable","WheelScrolled","Working","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","click","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","kind","new","position","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","delta","position","x","x","y","y","Click","Double","Kind","Single","Triple","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Element","Group","Overlay","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","draw","draw","drop","drop","from","from","from","from_angle","from_angle","from_children","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_over","is_over","is_over","layout","layout","layout","map","mouse_interaction","mouse_interaction","mouse_interaction","new","new","on_event","on_event","on_event","operate","operate","operate","overlay","overlay","overlay","overlay","position","push","translate","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","with_children","Null","Quad","Renderer","Style","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","bounds","clear","clear","clone","clone","clone","clone_into","clone_into","clone_into","components_from","components_from","components_from","default","default","default","default_font","default_size","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","eq","eq","fill_editor","fill_paragraph","fill_quad","fill_quad","fill_text","fmt","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","load_font","new","shadow","text_color","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","with_layer","with_layer","with_translation","with_translation","EventStream","Output","Recipe","hash","stream","Bytes","Data","Handle","Path","Renderer","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","dimensions","downcast","draw","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","hash","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","ARROW_DOWN_ICON","Absolute","Advanced","Basic","Bounds","CHECKMARK_ICON","CharOffset","Difference","Editor","Editor","Font","Font","Font","Highlight","Highlighter","Hit","ICON_FONT","Iterator","LineHeight","None","Paragraph","Paragraph","Relative","Renderer","Settings","Shape","Shaping","Text","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","bounds","bounds","change_line","clone","clone","clone_into","clone_into","compare","components_from","components_from","content","current_line","cursor","cursor","cursor_position","default_font","default_size","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","editor","eq","eq","equivalent","equivalent","equivalent","fill_editor","fill_paragraph","fill_text","fmt","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","grapheme_position","highlight","highlight_line","highlighter","hit_test","horizontal_alignment","horizontal_alignment","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line","line_count","line_height","load_font","min_bounds","min_height","min_width","new","perform","resize","selection","shaping","size","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","update","update","vertical_alignment","vertical_alignment","with_text","with_text","Action","Backspace","Caret","Click","Cursor","Delete","Direction","DocumentEnd","DocumentStart","Down","Drag","Edit","Edit","Editor","End","Enter","Font","Home","Insert","Left","Left","Motion","Move","PageDown","PageUp","Paste","Right","Right","Scroll","Select","SelectLine","SelectWord","Selection","Up","WordLeft","WordRight","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","bounds","clone","clone","clone_into","clone_into","components_from","components_from","cursor","cursor_position","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","highlight","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line","line_count","perform","selection","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","with_text","lines","Format","Highlight","Highlighter","Iterator","PlainText","Settings","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","change_line","change_line","clone","clone","clone_into","clone_into","color","components_from","components_from","current_line","current_line","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","fmt","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","highlight_line","highlight_line","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","new","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","update","Id","Operation","Text","Tree","Widget","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","children","children","clone","clone","clone_into","clone_into","components_from","components_from","components_from","container","custom","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","diff","diff_children","diff_children_custom","downcast","downcast","downcast","draw","draw","drop","drop","drop","empty","eq","equivalent","equivalent","equivalent","finish","fmt","fmt","focusable","font","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hash","height","horizontal_alignment","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","line_height","mouse_interaction","new","new","new","on_event","operate","operation","overlay","scrollable","shaping","size","size","size","size_hint","state","state","state","style","tag","tag","tag","text","text_input","to_owned","to_owned","tree","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","unique","upcast","upcast","upcast","vertical_alignment","width","Chain","Focusable","None","Operation","Outcome","Scrollable","Some","TextInput","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","container","custom","deref","deref_mut","downcast","drop","finish","fmt","focus","focusable","focusable","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","is_focused","map","move_cursor_to","move_cursor_to_end","move_cursor_to_front","scope","scroll_to","scrollable","scrollable","select_all","snap_to","text_input","text_input","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","unfocus","upcast","Count","Focusable","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","count","default","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","find_focused","fmt","focus","focus","focus_next","focus_previous","focused","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","is_focused","to_owned","total","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","unfocus","upcast","AbsoluteOffset","RelativeOffset","Scrollable","scroll_to","scroll_to","snap_to","snap_to","x","x","y","y","TextInput","move_cursor_to","move_cursor_to","move_cursor_to_end","move_cursor_to_end","move_cursor_to_front","move_cursor_to_front","select_all","select_all","Absolute","Advanced","Appearance","Basic","LineHeight","Relative","Shaping","State","Style","StyleSheet","Text","appearance","color","draw","layout","None","Some","State","Tag","Tree","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","children","clone","clone_into","cmp","compare","components_from","components_from","deref","deref","deref_mut","deref_mut","diff_children_custom_with_search","downcast","downcast","downcast_mut","downcast_ref","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","of","partial_cmp","state","stateless","tag","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Alignment","Bottom","Center","Center","Center","End","Horizontal","Left","Right","Start","Top","Vertical","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Appearance","Application","Executor","Flags","Message","Style","StyleSheet","Theme","adapt_into_using","appearance","arrays_from","arrays_into","as_any","as_any_mut","background_color","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","eq","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","run","scale_factor","style","subscription","text_color","theme","title","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","update","view","Border","Radius","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","color","components_from","default","deref","deref_mut","downcast","drop","eq","fmt","from","from","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","radius","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","width","read","write","Command","channel","Captured","Event","Ignored","Keyboard","MacOS","MacOS","Mouse","PlatformSpecific","PlatformSpecific","ReceivedUrl","Status","Touch","Window","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","listen","listen_raw","listen_with","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Default","Executor","enter","new","spawn","Black","Bold","Condensed","Cursive","Error","Expanded","ExtraBold","ExtraCondensed","ExtraExpanded","ExtraLight","Family","Fantasy","Font","Italic","Light","Medium","Monospace","Name","Normal","Normal","Normal","Oblique","SansSerif","SemiCondensed","SemiExpanded","Semibold","Serif","Stretch","Style","Thin","UltraCondensed","UltraExpanded","Weight","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","default","default","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","family","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","hash","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","load","stretch","style","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","weight","ColorStop","Gradient","Linear","Linear","adapt_into_using","adapt_into_using","add_stop","add_stops","angle","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","offset","stops","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","ALT","COMMAND","CTRL","Character","Event","Key","KeyPressed","KeyReleased","LOGO","Left","Location","Modifiers","ModifiersChanged","Named","Numpad","Right","SHIFT","Standard","Unidentified","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","alt","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_ref","bitand","bitand_assign","bitor","bitor_assign","bits","bitxor","bitxor_assign","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cmp","command","compare","compare","complement","components_from","components_from","components_from","components_from","contains","control","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","difference","downcast","downcast","downcast","downcast","drop","drop","drop","drop","empty","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits_truncate","from_bits_unchecked","from_iter","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","init","init","init","init","insert","intersection","intersects","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_empty","key","logo","not","on_key_press","on_key_release","partial_cmp","partial_cmp","remove","set","shift","sub","sub_assign","symmetric_difference","to_owned","to_owned","to_owned","to_owned","toggle","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","union","upcast","upcast","upcast","upcast","key","key","location","location","modifiers","modifiers","text","AVRInput","AVRPower","Accept","Again","AllCandidates","Alphanumeric","Alt","AltGraph","AppSwitch","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Attn","AudioBalanceLeft","AudioBalanceRight","AudioBassBoostDown","AudioBassBoostToggle","AudioBassBoostUp","AudioFaderFront","AudioFaderRear","AudioSurroundModeNext","AudioTrebleDown","AudioTrebleUp","AudioVolumeDown","AudioVolumeMute","AudioVolumeUp","Backspace","BrightnessDown","BrightnessUp","BrowserBack","BrowserFavorites","BrowserForward","BrowserHome","BrowserRefresh","BrowserSearch","BrowserStop","Call","Camera","CameraFocus","Cancel","CapsLock","ChannelDown","ChannelUp","Character","Clear","Close","ClosedCaptionToggle","CodeInput","ColorF0Red","ColorF1Green","ColorF2Yellow","ColorF3Blue","ColorF4Grey","ColorF5Brown","Compose","ContextMenu","Control","Convert","Copy","CrSel","Cut","DVR","Delete","Dimmer","DisplaySwap","Eisu","Eject","End","EndCall","Enter","EraseEof","Escape","ExSel","Execute","Exit","F1","F10","F11","F12","F13","F14","F15","F16","F17","F18","F19","F2","F20","F21","F22","F23","F24","F25","F26","F27","F28","F29","F3","F30","F31","F32","F33","F34","F35","F4","F5","F6","F7","F8","F9","FavoriteClear0","FavoriteClear1","FavoriteClear2","FavoriteClear3","FavoriteRecall0","FavoriteRecall1","FavoriteRecall2","FavoriteRecall3","FavoriteStore0","FavoriteStore1","FavoriteStore2","FavoriteStore3","FinalMode","Find","Fn","FnLock","GoBack","GoHome","GroupFirst","GroupLast","GroupNext","GroupPrevious","Guide","GuideNextDay","GuidePreviousDay","HangulMode","HanjaMode","Hankaku","HeadsetHook","Help","Hibernate","Hiragana","HiraganaKatakana","Home","Hyper","Info","Insert","InstantReplay","JunjaMode","KanaMode","KanjiMode","Katakana","Key","Key11","Key12","LastNumberRedial","LaunchApplication1","LaunchApplication2","LaunchCalendar","LaunchContacts","LaunchMail","LaunchMediaPlayer","LaunchMusicPlayer","LaunchPhone","LaunchScreenSaver","LaunchSpreadsheet","LaunchWebBrowser","LaunchWebCam","LaunchWordProcessor","Link","ListProgram","LiveContent","Lock","LogOff","MailForward","MailReply","MailSend","MannerMode","MediaApps","MediaAudioTrack","MediaClose","MediaFastForward","MediaLast","MediaPause","MediaPlay","MediaPlayPause","MediaRecord","MediaRewind","MediaSkipBackward","MediaSkipForward","MediaStepBackward","MediaStepForward","MediaStop","MediaTopMenu","MediaTrackNext","MediaTrackPrevious","Meta","MicrophoneToggle","MicrophoneVolumeDown","MicrophoneVolumeMute","MicrophoneVolumeUp","ModeChange","Named","Named","NavigateIn","NavigateNext","NavigateOut","NavigatePrevious","New","NextCandidate","NextFavoriteChannel","NextUserProfile","NonConvert","Notification","NumLock","OnDemand","Open","PageDown","PageUp","Pairing","Paste","Pause","PinPDown","PinPMove","PinPToggle","PinPUp","Play","PlaySpeedDown","PlaySpeedReset","PlaySpeedUp","Power","PowerOff","PreviousCandidate","Print","PrintScreen","Process","Props","RandomToggle","RcLowBattery","RecordSpeedNext","Redo","RfBypass","Romaji","STBInput","STBPower","Save","ScanChannelsToggle","ScreenModeNext","ScrollLock","Select","Settings","Shift","SingleCandidate","Soft1","Soft2","Soft3","Soft4","Space","SpeechCorrectionList","SpeechInputToggle","SpellCheck","SplitScreenToggle","Standby","Subtitle","Super","Symbol","SymbolLock","TV","TV3DMode","TVAntennaCable","TVAudioDescription","TVAudioDescriptionMixDown","TVAudioDescriptionMixUp","TVContentsMenu","TVDataService","TVInput","TVInputComponent1","TVInputComponent2","TVInputComposite1","TVInputComposite2","TVInputHDMI1","TVInputHDMI2","TVInputHDMI3","TVInputHDMI4","TVInputVGA1","TVMediaContext","TVNetwork","TVNumberEntry","TVPower","TVRadioService","TVSatellite","TVSatelliteBS","TVSatelliteCS","TVSatelliteToggle","TVTerrestrialAnalog","TVTerrestrialDigital","TVTimer","Tab","Teletext","Undo","Unidentified","VideoModeNext","VoiceDial","WakeUp","Wink","Zenkaku","ZenkakuHankaku","ZoomIn","ZoomOut","ZoomToggle","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","cmp","compare","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","hash","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","partial_cmp","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Available","Back","Button","ButtonPressed","ButtonReleased","Crosshair","Cursor","CursorEntered","CursorLeft","CursorMoved","Event","Forward","Grab","Grabbing","Idle","Interaction","Left","Lines","Middle","NotAllowed","Other","Pixels","Pointer","ResizingHorizontally","ResizingVertically","Right","ScrollDelta","Text","Unavailable","WheelScrolled","Working","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","compare","components_from","components_from","components_from","components_from","components_from","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_over","partial_cmp","position","position_from","position_in","position_over","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","delta","position","x","x","y","y","Application","Executor","Flags","Message","Theme","new","run","run","scale_factor","scale_factor","style","style","subscription","subscription","theme","theme","title","update","view","Element","menu","Appearance","Menu","State","Style","StyleSheet","appearance","background","border","selected_background","selected_text_color","text_color","Settings","adapt_into_using","antialiasing","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","default","default_font","default_text_size","deref","deref_mut","downcast","drop","flags","fmt","fonts","from","from_angle","from_stimulus","id","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","window","with_flags","Subscription","channel","run","run_with_id","unfold","Information","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","cpu_brand","cpu_cores","deref","deref_mut","downcast","drop","fetch_information","fmt","from","from_angle","from_stimulus","graphics_adapter","graphics_backend","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","memory_total","memory_used","system_kernel","system_name","system_short_version","system_version","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Application","Box","Button","Checkbox","Color","Container","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","DARK","Danger","Danger","Dark","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Destructive","LIGHT","Light","Menu","Palette","PaneGrid","PickList","Positive","Primary","Primary","Primary","ProgressBar","Radio","Rule","Scrollable","Secondary","Secondary","Slider","Success","Success","Svg","Text","Text","TextEditor","TextInput","Theme","Toggler","Transparent","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","custom","custom","custom_fn","danger","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","palette","primary","success","text","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","with_fn","Background","Danger","EXTENDED_DARK","EXTENDED_LIGHT","Extended","Pair","Palette","Primary","Secondary","Success","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","background","base","base","base","base","base","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","danger","danger","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","generate","generate","generate","generate","generate","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_dark","new","new","primary","primary","secondary","strong","strong","strong","strong","strong","success","success","text","text","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","weak","weak","weak","weak","weak","Duration","Instant","MAX","MICROSECOND","MILLISECOND","NANOSECOND","SECOND","ZERO","abs_diff","adapt_into_using","adapt_into_using","add","add","add","add","add_assign","add_assign","add_assign","add_assign","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","as_micros","as_millis","as_nanos","as_secs","as_secs_f32","as_secs_f64","borrow","borrow","borrow_mut","borrow_mut","checked_add","checked_add","checked_div","checked_duration_since","checked_mul","checked_sub","checked_sub","clone","clone","clone_into","clone_into","cmp","cmp","compare","compare","components_from","components_from","default","deref","deref","deref_mut","deref_mut","deserialize","div","div","div_assign","div_duration_f32","div_duration_f64","div_f32","div_f64","downcast","downcast","drop","drop","duration_since","elapsed","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","every","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_micros","from_millis","from_nanos","from_secs","from_secs_f32","from_secs_f64","from_stimulus","from_stimulus","hash","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_zero","mul","mul_assign","mul_f32","mul_f64","new","now","partial_cmp","partial_cmp","partial_cmp","partial_cmp","saturating_add","saturating_duration_since","saturating_mul","saturating_sub","serialize","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","subsec_micros","subsec_millis","subsec_nanos","sum","sum","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_from","try_from_secs_f32","try_from_secs_f64","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Event","Finger","FingerLifted","FingerLost","FingerMoved","FingerPressed","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","id","id","id","id","position","position","position","position","Button","Canvas","Checkbox","Column","ComboBox","Component","Container","Custom","DEFAULT_HEIGHT","DEFAULT_HEIGHT","DEFAULT_PADDING","DEFAULT_SIZE","DEFAULT_SIZE","DEFAULT_SPACING","DEFAULT_WIDTH","Dark","Event","Image","Lazy","Light","MouseArea","PaneGrid","PickList","ProgressBar","QRCode","Radio","Renderer","Responsive","Row","Rule","Scrollable","Shader","Slider","Space","State","Svg","Text","TextEditor","TextInput","Theme","Themer","TinySkia","Toggler","Tooltip","VerticalSlider","Wgpu","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","align_items","align_items","align_x","align_y","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","button","button","canvas","canvas","cell_size","center_x","center_y","checkbox","checkbox","children","children","children","children","children","children","children","children","children","children","children","color","column","column","combo_box","combo_box","component","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","container","container","content_fit","content_fit","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","diff","diff","diff","diff","diff","diff","diff","diff","diff","diff","direction","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","filter_method","fmt","fmt","fmt","fmt","focus_next","focus_previous","font","font","font","font","font","font","font","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_path","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gap","handle","height","height","height","height","height","height","height","height","height","height","height","height","height","highlight","horizontal","horizontal_rule","horizontal_space","icon","icon","icon","id","id","id","image","image","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","keyed","keyed_column","keyed_column","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","layout","lazy","line_height","line_height","max_height","max_width","max_width","mouse_area","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","mouse_interaction","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","on_action","on_click","on_close","on_drag","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_event","on_input","on_input","on_middle_press","on_middle_release","on_option_hovered","on_paste","on_press","on_press","on_press_maybe","on_release","on_release","on_release","on_resize","on_right_press","on_right_release","on_scroll","on_submit","operate","operate","operate","operate","operate","operate","operate","operate","operate","operate","operate","operate","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","overlay","padding","padding","padding","padding","padding","padding","padding","padding","padding","pane_grid","password","pick_list","pick_list","placeholder","progress_bar","progress_bar","push","push","qr_code","radio","radio","responsive","row","row","rule","scrollable","scrollable","shader","shader","shift_step","shift_step","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size","size_hint","slider","slider","snap_within_viewport","space","spacing","spacing","spacing","spacing","spacing","spacing","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","state","step","step","style","style","style","style","style","style","style","style","style","style","style","style","style","style","style","style","style","svg","svg","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","tag","text","text","text_alignment","text_editor","text_editor","text_input","text_input","text_input_style","text_line_height","text_line_height","text_line_height","text_line_height","text_shaping","text_shaping","text_shaping","text_shaping","text_shaping","text_size","text_size","text_size","text_size","theme","themer","toggler","toggler","tooltip","tooltip","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","vertical","vertical_rule","vertical_slider","vertical_slider","vertical_space","view","width","width","width","width","width","width","width","width","width","width","width","width","width","width","width","width","width","width","width","with_children","with_children","with_height","with_width","Appearance","Button","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","default","default","deref","deref","deref_mut","deref_mut","disabled","downcast","downcast","draw","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","mouse_interaction","new","pressed","shadow","shadow_offset","text_color","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","Bevel","Butt","Cache","Canvas","Event","Fill","Frame","Geometry","Geometry","Gradient","Gradient","Keyboard","LineCap","LineDash","LineJoin","Linear","Miter","Mouse","Path","Program","Renderer","Round","Round","Solid","Square","State","Stroke","Style","Text","TinySkia","TinySkia","Touch","Wgpu","Wgpu","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","center","circle","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","content","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","draw_with","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","event","fill","fill","fill_rectangle","fill_text","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gradient","height","horizontal_alignment","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_geometry","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line","line_cap","line_dash","line_height","line_join","mouse_interaction","new","new","new","offset","pack","path","position","raw","rectangle","rotate","rule","scale","scale_nonuniform","segments","shaping","size","size","stroke","stroke","style","style","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","transform","translate","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","vertical_alignment","width","width","with_clip","with_color","with_line_cap","with_line_join","with_save","with_width","Captured","Event","Ignored","Keyboard","Mouse","Status","Touch","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","merge","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","EvenOdd","Fill","Gradient","NonZero","Rule","Solid","Style","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","rule","style","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Gradient","Linear","Linear","Packed","adapt_into_using","adapt_into_using","add_stop","add_stops","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","end","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_valid_bit_pattern","new","pack","pack","start","stops","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Arc","Builder","Path","adapt_into_using","adapt_into_using","arc","arc","arc_to","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","bezier_curve_to","borrow","borrow","borrow_mut","borrow_mut","build","center","circle","clone","clone_into","close","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","ellipse","end_angle","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line_to","move_to","new","quadratic_curve_to","radius","rectangle","start_angle","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Arc","Elliptical","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","center","center","clone","clone_into","components_from","deref","deref_mut","downcast","drop","end_angle","end_angle","fmt","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","radii","radius","rotation","start_angle","start_angle","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","ArcFlags","AttributeIndex","AttributeSlice","AttributeStore","Attributes","Begin","Begin","Begin","Bevel","Butt","ControlPointId","Cubic","Cubic","Cubic","End","End","End","EndpointId","EvenOdd","Event","EventId","FillRule","INVALID","INVALID","INVALID","IdEvent","IdPolygon","Line","Line","Line","LineCap","LineJoin","Miter","MiterClip","NO_ATTRIBUTES","Negative","Negative","NonZero","Path","PathBuffer","PathBufferSlice","PathCommands","PathCommandsSlice","PathEvent","PathSlice","Polygon","Position","PositionStore","Positive","Positive","Quadratic","Quadratic","Quadratic","Round","Round","Side","Square","Winding","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_slice","as_slice","as_slice","attributes","attributes","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","builder","builder","builder","builder","builder_with_attributes","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closed","closed","commands","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","event","event","event","event","events","first_endpoint","first_endpoint","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_iter","from_iter","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_usize","from_usize","get","get","get","get","get","get","get_control_point","get_control_point","get_control_point","get_control_point","get_endpoint","get_endpoint","get_endpoint","get_endpoint","hash","hash","hash","hash","hash","id_iter","id_iter","id_iter","index","index","index","index","index","indices","indices","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_edge","is_empty","is_empty","is_empty","is_in","is_negative","is_out","is_positive","iter","iter","iter","iter","iter","iter","iter","iter","iter_with_attributes","iter_with_attributes","iterator","large_arc","last_endpoint","last_endpoint","len","len","math","new","new","new","next_event_id_in_path","next_event_id_in_path","next_event_id_in_sub_path","next_event_id_in_sub_path","num_attributes","num_attributes","num_attributes","num_attributes","offset","offset","opposite","path","path_buffer","path_events","path_slice","points","points","polygon","position","reserve","reversed","reversed","svg_builder","sweep","to","to_f32","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_usize","to_usize","to_usize","traits","transformed","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","with_attributes","with_capacity","with_points","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","BorderRadii","Build","Flattened","NoAttributes","PathBuilder","PathType","SvgPathBuilder","Transformed","WithSvg","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add_circle","add_circle","add_ellipse","add_ellipse","add_line_segment","add_line_segment","add_point","add_point","add_polygon","add_polygon","add_polygon","add_rectangle","add_rectangle","add_rounded_rectangle","add_rounded_rectangle","arc","arc_to","arc_to","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","begin","begin","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom_left","bottom_right","build","build","build","build","build","build","build","build","clone","clone","clone_into","clone_into","close","close","close","close","close","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","current_position","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","end","end","end","end","end","eq","eq","event","extend_from_paths","flattened","flattened","flattened","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","horizontal_line_to","horizontal_line_to","init","init","init","init","init","inner","inner_mut","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_inner","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","line_to","line_to","line_to","line_to","line_to","move_to","move_to","move_to","new","new","new","new","new","num_attributes","num_attributes","num_attributes","num_attributes","partial_cmp","path_event","path_event","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","relative_arc_to","relative_arc_to","relative_cubic_bezier_to","relative_cubic_bezier_to","relative_horizontal_line_to","relative_horizontal_line_to","relative_line_to","relative_line_to","relative_move_to","relative_move_to","relative_quadratic_bezier_to","relative_quadratic_bezier_to","relative_vertical_line_to","relative_vertical_line_to","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","set_tolerance","set_transform","set_transform","smooth_cubic_bezier_to","smooth_cubic_bezier_to","smooth_quadratic_bezier_to","smooth_quadratic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_quadratic_bezier_to","smooth_relative_quadratic_bezier_to","to_owned","to_owned","to_smolstr","to_string","top_left","top_right","transformed","transformed","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","vertical_line_to","vertical_line_to","with_capacity","with_svg","with_svg","wrap","CommandsPathSlice","Events","Iter","PathCommands","PathCommandsBuilder","PathCommandsSlice","PointEvents","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","end","events","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_control_point","get_endpoint","index","index","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","iter","line_to","new","next","next","next","points","quadratic_bezier_to","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","with_capacity","Angle","Arc","ArcFlags","Box2D","CubicBezierSegment","DIV_EPSILON","EIGHT","EPSILON","FIVE","FOUR","HALF","Line","LineEquation","LineSegment","MAX","MIN","NINE","ONE","Point","QuadraticBezierSegment","Rotation","SEVEN","SIX","Scalar","Scalar","Scale","Segment","Size","SvgArc","TEN","THREE","TWO","Transform","Translation","Triangle","Vector","ZERO","a","a","ab","ac","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add","add","add_assign","after_split","after_split","after_split","after_split","after_split","after_split","after_split","after_split","after_split","angle","angle_to","approx_epsilon","approx_eq_eps","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","arc","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","b","b","ba","baseline","baseline","bc","before_split","before_split","before_split","before_split","before_split","before_split","before_split","before_split","before_split","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounding_box","bounding_box","bounding_box","bounding_box","bounding_box","bounding_range_x","bounding_range_x","bounding_range_x","bounding_range_x","bounding_range_y","bounding_range_y","bounding_range_y","bounding_range_y","bounding_triangle","c","c","ca","cast","cb","center","circle","clipped","clipped_x","clipped_y","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closest_point","closest_point","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains_point","contains_segment","ctrl","ctrl1","ctrl2","cubic_bezier","cubic_intersections","cubic_intersections_t","default","degrees","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","derivative","derivative","derivative","derivative","derivative","derivative","derivative","distance_to_point","distance_to_point","distance_to_point","distance_to_point","div","div","div_assign","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drag","drag","drag_with_weight","drop","drop","drop","drop","drop","drop","drop","drop","drop","dx","dx","dx","dx","dx","dx","dy","dy","dy","dy","dy","dy","end_angle","epsilon_for","eq","eq","eq","eq","eq","eq","eq","eq","equation","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fast_bounding_box","fast_bounding_box","fast_bounding_box","fast_bounding_range_x","fast_bounding_range_x","fast_bounding_range_x","fast_bounding_range_y","fast_bounding_range_y","fast_bounding_range_y","fat_line","fat_line","flags","flattened","flattened","flattened","flattened_t","flattening_step","flip","flip","flip","flip","flip","flip","flip","flip","flip","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_each_cubic_bezier","for_each_cubic_bezier","for_each_flattened","for_each_flattened","for_each_flattened","for_each_flattened","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_inflection_t","for_each_local_x_extremum_t","for_each_local_x_extremum_t","for_each_local_y_extremum_t","for_each_local_y_extremum_t","for_each_monotonic","for_each_monotonic","for_each_monotonic_range","for_each_monotonic_range","for_each_quadratic_bezier","for_each_quadratic_bezier","for_each_quadratic_bezier","for_each_quadratic_bezier_with_t","for_each_quadratic_bezier_with_t","for_each_quadratic_bezier_with_t","for_each_x_monotonic","for_each_x_monotonic","for_each_x_monotonic_range","for_each_x_monotonic_range","for_each_y_monotonic","for_each_y_monotonic","for_each_y_monotonic_range","for_each_y_monotonic_range","frac_pi_2","frac_pi_3","frac_pi_4","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_svg_arc","get","get_angle","hash","height","horizontal_line_intersection","horizontal_line_intersection_t","init","init","init","init","init","init","init","init","init","intersection","intersection","intersection_t","intersects","intersects","intersects_box","intersects_line","intersects_line_segment","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invert","is_a_point","is_finite","is_horizontal","is_linear","is_linear","is_monotonic","is_monotonic","is_quadratic","is_straight_line","is_vertical","is_x_monotonic","is_x_monotonic","is_y_monotonic","is_y_monotonic","large_arc","length","length","lerp","line_intersection","line_intersection_t","line_intersections","line_intersections","line_intersections_t","line_intersections_t","line_segment_intersections","line_segment_intersections","line_segment_intersections_t","line_segment_intersections_t","local_x_extremum_t","local_y_extremum_t","m11","m12","m21","m22","m31","m32","max","mid_point","min","mul","mul_assign","neg","new","normal","num_quadratics","offset","overlaps_line","overlaps_segment","parallel_line","partial_cmp","pi","point","point","positive","project_point","quadratic_bezier","quadratic_intersections","quadratic_intersections_t","radians","radians","radii","radii","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample_tangent","set_length","signed","signed_distance_to_point","signed_distance_to_point","sin_cos","size","solve_t_for_x","solve_t_for_x","solve_t_for_y","solve_t_for_y","solve_x_for_y","solve_x_for_y","solve_y_for_x","solve_y_for_x","split","split","split","split","split","split","split","split","split","split_at_x","split_range","split_range","split_range","split_range","split_range","split_range","split_range","split_range","split_range","square_distance_to_point","square_distance_to_point","square_distance_to_point","square_length","start_angle","sub","sub_assign","sum","sum","sweep","sweep_angle","tangent","to","to","to","to","to","to","to","to","to","to","to","to","to","to_arc","to_cubic","to_degrees","to_f32","to_f32","to_f32","to_f32","to_f32","to_f64","to_f64","to_f64","to_f64","to_f64","to_line","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_quadratic","to_quadratic_error","to_svg_arc","to_vector","traits","transform","transformed","transformed","transformed","translate","try_cast","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","two_pi","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","utils","value","vector","vector","vertical_line_intersection","vertical_line_intersection_t","width","x","x","x","x","x","x","x","x","x","x","x","x","x_maximum_t","x_maximum_t","x_minimum_t","x_minimum_t","x_rotation","x_rotation","y","y","y","y","y","y","y","y","y","y","y","y","y_maximum_t","y_maximum_t","y_minimum_t","y_minimum_t","zero","Arc","ArcFlags","Flattened","SvgArc","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","center","components_from","deref","deref_mut","downcast","drop","flags","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_iter","into_stimulus","large_arc","next","radii","radii","start_angle","sweep","sweep_angle","to","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","x_rotation","x_rotation","ArrayString","ArrayVec","CapacityError","Drain","IntoIter","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_mut","as_mut_ptr","as_mut_slice","as_mut_str","as_ptr","as_ref","as_ref","as_slice","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","capacity","clear","clear","clone","clone","clone","clone","clone_from","clone_from","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","compare","compare","compare","components_from","components_from","components_from","components_from","components_from","default","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drain","drop","drop","drop","drop","drop","drop","drop","drop","element","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","flush","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_byte_string","from_iter","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_str","ge","ge","ge","gt","gt","gt","hash","hash","init","init","init","init","init","insert","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_inner","into_inner_unchecked","into_iter","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_empty","is_full","is_full","le","le","le","len","len","len","limit_ptr","lt","lt","lt","new","new","new","new_const","new_const","next","next","next_back","next_back","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pop","pop","pop_at","push","push","push_str","push_unchecked","remaining_capacity","remaining_capacity","remove","remove","retain","set_len","set_len","simplify","size_hint","size_hint","start_ptr","swap_pop","swap_remove","take","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","truncate","truncate","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_extend_from_slice","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_insert","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_push","try_push","try_push_str","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","write","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_char","write_str","zero_filled","CubicBezierSegment","Flattened","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","components_into","ctrl1","ctrl2","deref","deref_mut","downcast","drop","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_iter","into_stimulus","next","size_hint","to","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Angle","BoolVector2D","BoolVector3D","Box2D","Box3D","HomogeneousVector","Length","Point2D","Point3D","Rect","RigidTransform3D","Rotation2D","Rotation3D","Scale","SideOffsets2D","Size2D","Size3D","Transform2D","Transform3D","Translation2D","Translation3D","Trig","UnknownUnit","Vector2D","Vector3D","abs","abs","abs","abs","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_size","add_size","all","all","and","and","angle","angle_from_x_axis","angle_to","angle_to","any","any","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_eq","approx_eq","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approxeq","approxord","area","area","area","around_axis","around_x","around_y","around_z","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom","box3d","bvec2","bvec3","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","center","center","center","clamp","clamp","clamp","clamp","clamp","clamp","clamp","clamp_length","clamp_length","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","compare","compare","compare","component_div","component_div","component_mul","component_mul","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","contains","contains","contains","contains","contains_box","contains_box","contains_rect","cos","cross","cross","decompose_reversed","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","degrees_to_radians","depth","depth","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","determinant","determinant","distance_to","distance_to","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_euclid","div_euclid","dot","dot","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equal","equal","equal","equal","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","euler","extend","extend","fast_atan2","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle_and_length","from_array","from_array","from_arrays","from_arrays","from_length_all_same","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_origin_and_size","from_points","from_points","from_points","from_rotation","from_scale","from_size","from_size","from_size","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_translation","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_vectors_inner","from_vectors_outer","get","get","get_angle","greater_than","greater_than","greater_than","greater_than","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","height","height","height","height","height","horizontal","i","identity","identity","identity","identity","identity","identity","identity","identity","inflate","inflate","inflate","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_box","inner_rect","intersection","intersection","intersection","intersection_unchecked","intersection_unchecked","intersects","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","inverse","inverse","inverse","inverse","inverse","inverse","inverse","inverse","is_2d","is_backface_visible","is_empty","is_empty","is_empty","is_empty","is_empty","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_identity","is_identity","is_identity","is_invertible","is_invertible","is_negative","is_negative","is_normalized","is_positive","is_positive","is_zero","j","k","left","length","length","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lower_than","lower_than","lower_than","lower_than","m11","m11","m12","m12","m13","m14","m21","m21","m22","m22","m23","m24","m31","m31","m32","m32","m33","m34","m41","m42","m43","m44","max","max","max","max","max","max","max","max","max","max","max","max_x","max_y","min","min","min","min","min","min","min","min","min","min","min","min_x","min_y","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_s","neg","neg","neg","neg","neg","neg","neg","neg","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_2d","new_all_same","new_from_reversed","none","none","norm","normalize","normalize","normalize","not","not","not_equal","not_equal","not_equal","not_equal","num","one","one","one","or","or","origin","origin","origin","ortho","outer_box","outer_rect","outer_transformed_box","outer_transformed_box2d","outer_transformed_box3d","outer_transformed_rect","outer_transformed_rect","partial_cmp","partial_cmp","partial_cmp","perspective","point2","point3","position","pre_rotate","pre_rotate","pre_scale","pre_scale","pre_translate","pre_translate","project_onto_vector","project_onto_vector","project_to_2d","quaternion","r","radians","radians","radians_to_degrees","rect","reflect","reflect","rem_euclid","rem_euclid","right","robust_normalize","robust_normalize","rotation","rotation","rotation","round","round","round","round","round","round","round","round","round","round","round","round","round","round","round","round_in","round_in","round_in","round_out","round_out","round_out","saturating_add","saturating_sub","scale","scale","scale","scale","scale","select_point","select_point","select_size","select_size","select_vector","select_vector","set_size","sin","size","size","size","size2","size3","skew","slerp","splat","splat","splat","splat","splat","splat","splat","splat","square_length","square_length","square_norm","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","tan","then","then","then","then","then","then_rotate","then_rotate","then_scale","then_scale","then_translate","then_translate","to_2d","to_2d","to_2d","to_3d","to_3d","to_3d","to_3d","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array_4d","to_array_4d","to_array_transposed","to_array_transposed","to_arrays","to_arrays","to_arrays_transposed","to_box2d","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_non_empty","to_non_empty","to_non_empty","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_point","to_point","to_point2d","to_point3d","to_rect","to_size","to_transform","to_transform","to_transform","to_transform","to_transform","to_transform","to_transform","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple_4d","to_tuple_4d","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u64","to_u64","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_vector","to_vector","to_vector","to_vector","to_vector","to_vector","top","transform_box","transform_box2d","transform_box2d","transform_box3d","transform_box3d","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point2d","transform_point2d","transform_point2d","transform_point2d_homogeneous","transform_point3d","transform_point3d","transform_point3d","transform_point3d","transform_point3d_homogeneous","transform_rect","transform_rect","transform_rect","transform_size","transform_size","transform_size","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector2d","transform_vector2d","transform_vector3d","transform_vector3d","translate","translate","translate","translation","translation","translation","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_normalize","try_normalize","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","union","union","unit_quaternion","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","vec2","vec3","vector_part","vertical","volume","volume","w","width","width","width","width","width","with_destination","with_destination","with_length","with_max_length","with_max_length","with_min_length","with_min_length","with_source","with_source","x","x","x","x","x","x","x","x","x","x_range","x_range","x_range","xy","xy","xy","xy_area","xz","xz","xz","xz_area","y","y","y","y","y","y","y","y","y","y_range","y_range","y_range","yx","yx","yz","yz","yz","yz_area","z","z","z","z","z","z_range","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","ApproxEq","approx_epsilon","approx_eq","approx_eq_eps","max","min","Box2D","Box3D","HomogeneousVector","Length","Point2D","Point3D","Rect","RigidTransform3D","Rotation2D","Rotation3D","Scale","SideOffsets2D","Size2D","Size3D","Transform2D","Transform3D","Translation2D","Translation3D","Vector2D","Vector3D","angle","bottom","depth","height","height","i","j","k","left","m11","m11","m12","m12","m13","m14","m21","m21","m22","m22","m23","m24","m31","m31","m32","m32","m33","m34","m41","m42","m43","m44","max","max","min","min","origin","r","right","rotation","size","top","translation","w","width","width","x","x","x","x","x","x","x","y","y","y","y","y","y","y","z","z","z","z","Ceil","Floor","One","Round","Zero","ceil","floor","one","round","zero","Flattened","FlattenedT","FlatteningParameters","QuadraticBezierSegment","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","components_from","components_from","components_from","ctrl","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","new","next","next","size_hint","size_hint","to","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","Scalar","Segment","Transformation","after_split","approximate_length","before_split","derivative","dx","dy","flip","for_each_flattened_with_t","from","sample","split","split_range","to","transform_point","transform_vector","x","y","cubic_polynomial_roots","directed_angle","directed_angle2","min_max","normalized_tangent","tangent","Flattened","FromPolyline","NoAttributes","PathIterator","Transformed","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","closed","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","drop","drop","drop","drop","flattened","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","new","new","next","next","next","next","open","size_hint","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","with_attributes","Angle","Box2D","Point","Rotation","Scale","Size","Transform","Translation","Vector","angle","height","m11","m12","m21","m22","m31","m32","max","min","point","radians","size","vector","width","x","x","x","y","y","y","Builder","BuilderImpl","BuilderWithAttributes","IdIter","Iter","IterWithAttributes","Path","PathSlice","Reversed","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","build","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","end","end","end","extend_from_paths","extend_from_paths","fmt","for_each_flattened","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_path","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","new","new","next","next","next","next","num_attributes","num_attributes","num_attributes","points","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","reserve","reserve","reserve","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","with_capacity","with_svg","Builder","BuilderWithAttributes","Iter","PathBuffer","PathBufferSlice","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","begin","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","build","build","build","build","clone","clone_into","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","end","end","end","end","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","line_to","new","next","next_back","num_attributes","num_attributes","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","reserve","reserve","reserve","reserve","size_hint","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","with_attributes","IdPolygon","IdPolygonIter","PathEvents","Polygon","PolygonIdIter","PolygonIter","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","closed","closed","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","drop","drop","drop","drop","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","next","next","next","next","par_bridge","points","points","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","Build","PathBuilder","PathIterator","PathType","SvgPathBuilder","add_circle","add_ellipse","add_line_segment","add_point","add_polygon","add_polygon","add_rectangle","add_rounded_rectangle","arc_to","begin","build","close","close","cubic_bezier_to","cubic_bezier_to","end","event","flattened","flattened","horizontal_line_to","line_to","line_to","move_to","num_attributes","path_event","quadratic_bezier_to","quadratic_bezier_to","relative_arc_to","relative_cubic_bezier_to","relative_horizontal_line_to","relative_line_to","relative_move_to","relative_quadratic_bezier_to","relative_vertical_line_to","reserve","reserve","smooth_cubic_bezier_to","smooth_quadratic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_quadratic_bezier_to","transformed","transformed","vertical_line_to","with_svg","Bevel","Butt","Gradient","LineCap","LineDash","LineJoin","Miter","Round","Round","Solid","Square","Stroke","Style","line_cap","line_dash","line_join","offset","segments","style","width","Appearance","Checkbox","Icon","Style","StyleSheet","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","code_point","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","fmt","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered","icon_color","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line_height","shaping","size","text_color","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","ComboBox","State","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","build_matchers","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","search","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","with_selection","Appearance","Container","Id","Style","StyleSheet","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","draw_background","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","new","shadow","text_color","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","unique","upcast","upcast","visible_bounds","with_background","with_border","FilterMethod","Handle","Image","Linear","Nearest","Viewer","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","components_from","data","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","draw","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_memory","from_path","from_pixels","from_stimulus","from_stimulus","from_stimulus","hash","hash","height","id","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","max_scale","min_scale","mouse_interaction","new","on_event","padding","scale_step","size","state","tag","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","viewer","viewer","width","State","Viewer","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","default","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","image_size","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","is_cursor_grabbed","new","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Column","adapt_into_using","align_items","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","children","column","components_from","default","deref","deref_mut","diff","downcast","draw","drop","from","from_angle","from_stimulus","height","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","max_width","mouse_interaction","new","on_event","operate","overlay","padding","push","size","spacing","state","tag","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","width","with_children","Column","menu","Appearance","Menu","State","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","fmt","fmt","font","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","new","new","overlay","padding","selected_background","selected_text_color","style","text_color","text_line_height","text_shaping","text_size","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","width","All","Appearance","Axis","Bottom","Canceled","Center","Configuration","Content","Contents","Direction","Down","DragEvent","Draggable","Dropped","Edge","Edge","Edge","Horizontal","Left","Left","Line","Maximized","Node","Pane","Pane","Pane","Pane","PaneGrid","Picked","Region","ResizeEvent","Right","Right","Split","Split","Split","State","Style","StyleSheet","Target","TitleBar","Top","Up","Vertical","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adjacent","always_show_controls","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","can_be_dragged_at","can_be_dragged_at","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","close","cmp","cmp","color","compare","compare","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","controls","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get","get_mut","hash","hash","hash","hash","hovered_region","hovered_split","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","internal","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_over_pick_area","iter","iter","iter_mut","layout","layout","layout","len","maximize","maximized","mouse_interaction","move_to_edge","new","new","new","padding","pane_regions","panes","partial_cmp","partial_cmp","picked_split","ratio","resize","restore","split","split","split","split_line_bounds","split_regions","split_with","splits","state","style","style","swap","title_bar","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","width","with_configuration","a","axis","b","ratio","pane","pane","pane","target","a","axis","b","id","ratio","Action","Clicking","Dragging","Idle","Internal","Resizing","State","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clicked_pane","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","fmt","fmt","from","from","from_angle","from_angle","from_configuration","from_stimulus","from_stimulus","init","init","internal","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","panes","picked_pane","picked_split","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","axis","origin","origin","pane","pane","split","Appearance","Arrow","Dynamic","Handle","Icon","None","PickList","State","Static","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","code_point","components_from","components_from","components_from","components_from","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","eq","eq","fmt","fmt","fmt","fmt","font","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","handle_color","hovered","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","line_height","mouse_interaction","overlay","placeholder_color","shaping","size","text_color","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","update","closed","open","size","Appearance","ProgressBar","Style","StyleSheet","adapt_into_using","appearance","arrays_from","arrays_into","as_any","as_any_mut","background","bar","border_radius","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","DataTooLong","Error","ErrorCorrection","High","InvalidCharacter","InvalidEciDesignator","InvalidVersion","Low","Medium","Micro","Normal","QRCode","Quartile","State","UnsupportedCharacterSet","Version","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","drop","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","with_error_correction","with_version","Appearance","Radio","Style","StyleSheet","active","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","background","border_color","border_width","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","dot_color","downcast","drop","fmt","from","from_angle","from_stimulus","hovered","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Appearance","AsymmetricPadding","FillMode","Full","Padded","Percent","Rule","Style","StyleSheet","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","fill","fill_mode","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","radius","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","AbsoluteOffset","Alignment","Both","Direction","END","End","Horizontal","Id","Properties","RelativeOffset","START","Scrollable","Scrollbar","Scroller","Start","State","Style","StyleSheet","Vertical","Viewport","absolute_offset","absolute_offset_reversed","active","active_horizontal","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","alignment","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","content_bounds","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","dragging","dragging_horizontal","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","horizontal","hovered","hovered_horizontal","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","margin","mouse_interaction","new","new","new","relative_offset","scroll","scroll_to","scroll_to","scroll_to","scroll_x_to","scroll_y_to","scroller","scroller_width","scrollers_grabbed","snap_to","snap_to","snap_to","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unique","unsnap","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","vertical","width","x","x","y","y","horizontal","vertical","Event","Keyboard","Mouse","Primitive","Primitive","Program","RedrawRequested","Shader","State","Storage","Touch","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","drop","drop","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","get","get_mut","has","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","mouse_interaction","prepare","render","store","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","ADDRESS_MODE_CLAMP_TO_BORDER","ADDRESS_MODE_CLAMP_TO_ZERO","ALL","ALLOW_UNDERLYING_NONCOMPLIANT_ADAPTER","ALPHA","ALPHA_BLENDING","ANISOTROPIC_FILTERING","AccelerationStructure","Adapter","AdapterInfo","Add","AddressMode","All","Always","Astc","AstcBlock","AstcChannel","Auto","AutoNoVsync","AutoVsync","Automatic","B10x10","B10x5","B10x6","B10x8","B12x10","B12x12","B4x4","B5x4","B5x5","B6x5","B6x6","B8x5","B8x6","B8x8","BASE_VERTEX","BGRA8UNORM_STORAGE","BLACK","BLENDABLE","BLUE","BLUE","BROWSER_WEBGPU","BUFFER_BINDINGS_NOT_16_BYTE_ALIGNED","BUFFER_BINDING_ARRAY","Back","Backend","Backends","Bc1RgbaUnorm","Bc1RgbaUnormSrgb","Bc2RgbaUnorm","Bc2RgbaUnormSrgb","Bc3RgbaUnorm","Bc3RgbaUnormSrgb","Bc4RSnorm","Bc4RUnorm","Bc5RgSnorm","Bc5RgUnorm","Bc6hRgbFloat","Bc6hRgbUfloat","Bc7RgbaUnorm","Bc7RgbaUnormSrgb","Bgra8Unorm","Bgra8UnormSrgb","BindGroup","BindGroupDescriptor","BindGroupEntry","BindGroupLayout","BindGroupLayoutDescriptor","BindGroupLayoutEntry","BindingResource","BindingType","BlendComponent","BlendFactor","BlendOperation","BlendState","BrowserWebGpu","Buffer","Buffer","Buffer","BufferAddress","BufferArray","BufferAsyncError","BufferBinding","BufferBindingType","BufferDescriptor","BufferSize","BufferSlice","BufferUsages","BufferView","BufferViewMut","CLEAR_TEXTURE","CLIPPER_INVOCATIONS","CLIPPER_PRIMITIVES_OUT","COLOR","COMPARISON_SAMPLERS","COMPUTE","COMPUTE_SHADERS","COMPUTE_SHADER_INVOCATIONS","CONSERVATIVE_RASTERIZATION","COPY_BUFFER_ALIGNMENT","COPY_BYTES_PER_ROW_ALIGNMENT","COPY_DST","COPY_DST","COPY_SRC","COPY_SRC","CUBE_ARRAY_TEXTURES","Ccw","ClampToBorder","ClampToEdge","Clear","Color","ColorTargetState","ColorWrites","CommandBuffer","CommandBufferDescriptor","CommandEncoder","CommandEncoderDescriptor","CompareFunction","Comparison","CompositeAlphaMode","ComputePass","ComputePassDescriptor","ComputePassTimestampWrites","ComputePipeline","ComputePipelineDescriptor","Constant","Cpu","CreateSurfaceError","Cube","CubeArray","Cw","D1","D1","D2","D2","D2Array","D3","D3","DEBUG","DEPTH32FLOAT_STENCIL8","DEPTH_BIAS_CLAMP","DEPTH_CLIP_CONTROL","DEPTH_TEXTURE_AND_BUFFER_COPIES","DISCARD_HAL_LABELS","DUAL_SOURCE_BLENDING","DX12","DecrementClamp","DecrementWrap","Depth","Depth16Unorm","Depth24Plus","Depth24PlusStencil8","Depth32Float","Depth32FloatStencil8","DepthBiasState","DepthOnly","DepthStencilState","Destroyed","Device","DeviceDescriptor","DeviceLostReason","DeviceType","Discard","DiscreteGpu","DisplayP3","DownlevelCapabilities","DownlevelFlags","Dst","DstAlpha","Dx12","Dx12Compiler","Dxc","DynamicOffset","EacR11Snorm","EacR11Unorm","EacRg11Snorm","EacRg11Unorm","Empty","Equal","Error","ErrorFilter","Etc2Rgb8A1Unorm","Etc2Rgb8A1UnormSrgb","Etc2Rgb8Unorm","Etc2Rgb8UnormSrgb","Etc2Rgba8Unorm","Etc2Rgba8UnormSrgb","Extent3d","FILTERABLE","FLOAT32_FILTERABLE","FRAGMENT","FRAGMENT_SHADER_INVOCATIONS","FRAGMENT_STORAGE","FRAGMENT_WRITABLE_STORAGE","FULL_DRAW_INDEX_UINT32","Face","Features","Fifo","FifoRelaxed","Fill","FilterMode","Filtering","Float","Float16x2","Float16x4","Float32","Float32x2","Float32x3","Float32x4","Float64","Float64x2","Float64x3","Float64x4","FragmentState","Front","FrontFace","Fxc","GL","GREEN","GREEN","Gl","Gles3MinorVersion","Good","Greater","GreaterEqual","Hdr","HighPerformance","IGNORE","INDEPENDENT_BLEND","INDEX","INDIRECT","INDIRECT_EXECUTION","INDIRECT_FIRST_INSTANCE","INVALID_TIMESTAMP","Id","ImageCopyBuffer","ImageCopyBufferBase","ImageCopyTexture","ImageCopyTextureBase","ImageCopyTextureTagged","ImageCopyTextureTaggedBase","ImageDataLayout","ImageSubresourceRange","Immediate","IncrementClamp","IncrementWrap","IndexFormat","Inherit","Instance","Instance","InstanceDescriptor","InstanceFlags","IntegratedGpu","Invert","Keep","Label","Less","LessEqual","Limits","Line","LineList","LineStrip","Linear","Load","LoadOp","Lost","Lost","LowPower","MAPPABLE_PRIMARY_BUFFERS","MAP_ALIGNMENT","MAP_READ","MAP_WRITE","METAL","MULTISAMPLED_SHADING","MULTISAMPLE_RESOLVE","MULTISAMPLE_X16","MULTISAMPLE_X2","MULTISAMPLE_X4","MULTISAMPLE_X8","MULTIVIEW","MULTI_DRAW_INDIRECT","MULTI_DRAW_INDIRECT_COUNT","Mailbox","Maintain","MaintainBase","MaintainResult","MapMode","Max","Metal","Min","MirrorRepeat","MultisampleState","NONBLOCKING_QUERY_RESOLVE","NONE","NON_POWER_OF_TWO_MIPMAPPED_TEXTURES","NV12","Nearest","Never","NonFiltering","None","None","NotEqual","OVER","Occlusion","Ok","One","OneMinusConstant","OneMinusDst","OneMinusDstAlpha","OneMinusSrc","OneMinusSrc1","OneMinusSrc1Alpha","OneMinusSrcAlpha","Opaque","OpaqueBlack","OpaqueWhite","Operations","Origin2d","Origin3d","Other","OutOfMemory","OutOfMemory","OutOfMemory","Outdated","Outdated","PARTIALLY_BOUND_BINDING_ARRAY","PIPELINE_STATISTICS_QUERY","POLYGON_MODE_LINE","POLYGON_MODE_POINT","PREMULTIPLIED_ALPHA_BLENDING","PRIMARY","PUSH_CONSTANTS","PUSH_CONSTANT_ALIGNMENT","PipelineLayout","PipelineLayoutDescriptor","PipelineStatistics","PipelineStatisticsTypes","Plane0","Plane1","Plane2","Point","PointList","Poll","Poll","PolygonMode","PostMultiplied","PowerPreference","PreMultiplied","PredefinedColorSpace","PresentMode","PresentationTimestamp","PrimitiveState","PrimitiveTopology","PushConstantRange","QUERY_RESOLVE","QUERY_RESOLVE_BUFFER_ALIGNMENT","QUERY_SET_MAX_QUERIES","QUERY_SIZE","QuerySet","QuerySetDescriptor","QueryType","Queue","QueueWriteBufferView","R16Float","R16Sint","R16Snorm","R16Uint","R16Unorm","R32Float","R32Sint","R32Uint","R8Sint","R8Snorm","R8Uint","R8Unorm","RAY_QUERY","RAY_TRACING_ACCELERATION_STRUCTURE","READ_ONLY_DEPTH_STENCIL","RED","RED","RENDER_ATTACHMENT","REPLACE","REPLACE","RG11B10UFLOAT_RENDERABLE","RawHandle","Read","ReadOnly","ReadWrite","RenderBundle","RenderBundleDepthStencil","RenderBundleDescriptor","RenderBundleEncoder","RenderBundleEncoderDescriptor","RenderPass","RenderPassColorAttachment","RenderPassDepthStencilAttachment","RenderPassDescriptor","RenderPassTimestampWrites","RenderPipeline","RenderPipelineDescriptor","Repeat","Replace","RequestAdapterOptions","RequestAdapterOptionsBase","RequestDeviceError","ReverseSubtract","Rg11b10Float","Rg16Float","Rg16Sint","Rg16Snorm","Rg16Uint","Rg16Unorm","Rg32Float","Rg32Sint","Rg32Uint","Rg8Sint","Rg8Snorm","Rg8Uint","Rg8Unorm","Rgb10a2Uint","Rgb10a2Unorm","Rgb9e5Ufloat","Rgba16Float","Rgba16Sint","Rgba16Snorm","Rgba16Uint","Rgba16Unorm","Rgba32Float","Rgba32Sint","Rgba32Uint","Rgba8Sint","Rgba8Snorm","Rgba8Uint","Rgba8Unorm","Rgba8UnormSrgb","SAMPLED_TEXTURE_AND_STORAGE_BUFFER_ARRAY_NON_UNIFORM_INDEXING","SECONDARY","SHADER_EARLY_DEPTH_TEST","SHADER_F16","SHADER_F64","SHADER_I16","SHADER_PRIMITIVE_INDEX","SHADER_UNUSED_VERTEX_OUTPUT","SPIRV_SHADER_PASSTHROUGH","STORAGE","STORAGE_BINDING","STORAGE_READ_WRITE","STORAGE_RESOURCE_BINDING_ARRAY","SURFACE_VIEW_FORMATS","Sampler","Sampler","Sampler","SamplerArray","SamplerBindingType","SamplerBorderColor","SamplerDescriptor","ShaderLocation","ShaderModel","ShaderModule","ShaderModuleDescriptor","ShaderModuleDescriptorSpirV","ShaderSource","ShaderStages","Sint","Sint16x2","Sint16x4","Sint32","Sint32x2","Sint32x3","Sint32x4","Sint8x2","Sint8x4","Sm2","Sm4","Sm5","Snorm16x2","Snorm16x4","Snorm8x2","Snorm8x4","Some","Src","Src1","Src1Alpha","SrcAlpha","SrcAlphaSaturated","Srgb","Stencil8","StencilFaceState","StencilOnly","StencilOperation","StencilState","Storage","StorageTexture","StorageTextureAccess","Store","StoreOp","SubmissionIndex","SubmissionQueueEmpty","Suboptimal","Subtract","Surface","SurfaceCapabilities","SurfaceConfiguration","SurfaceError","SurfaceStatus","SurfaceTarget","SurfaceTargetUnsafe","SurfaceTexture","TEXTURE_ADAPTER_SPECIFIC_FORMAT_FEATURES","TEXTURE_BINDING","TEXTURE_BINDING_ARRAY","TEXTURE_COMPRESSION_ASTC","TEXTURE_COMPRESSION_ASTC_HDR","TEXTURE_COMPRESSION_BC","TEXTURE_COMPRESSION_ETC2","TEXTURE_FORMAT_16BIT_NORM","TEXTURE_FORMAT_NV12","TIMESTAMP_QUERY","TIMESTAMP_QUERY_INSIDE_PASSES","TRANSPARENT","Texture","Texture","TextureAspect","TextureDescriptor","TextureDimension","TextureFormat","TextureFormatFeatureFlags","TextureFormatFeatures","TextureSampleType","TextureUsages","TextureView","TextureView","TextureViewArray","TextureViewDescriptor","TextureViewDimension","Timeout","Timeout","Timestamp","TransparentBlack","TriangleList","TriangleStrip","UNIFORM","UNIFORM_BUFFER_AND_STORAGE_TEXTURE_ARRAY_NON_UNIFORM_INDEXING","UNRESTRICTED_EXTERNAL_TEXTURE_COPIES","UNRESTRICTED_INDEX_BUFFER","Uint","Uint16","Uint16x2","Uint16x4","Uint32","Uint32","Uint32x2","Uint32x3","Uint32x4","Uint8x2","Uint8x4","UncapturedErrorHandler","Uniform","Unknown","Unorm","Unorm16x2","Unorm16x4","Unorm8x2","Unorm8x4","UnormSrgb","VALIDATION","VERTEX","VERTEX","VERTEX_AND_INSTANCE_INDEX_RESPECTS_RESPECTIVE_FIRST_VALUE_IN_INDIRECT_DRAW","VERTEX_ATTRIBUTE_64BIT","VERTEX_FRAGMENT","VERTEX_SHADER_INVOCATIONS","VERTEX_STORAGE","VERTEX_STRIDE_ALIGNMENT","VERTEX_WRITABLE_STORAGE","VIEW_FORMATS","VULKAN","Validation","Validation","Version0","Version1","Version2","Vertex","VertexAttribute","VertexBufferLayout","VertexFormat","VertexState","VertexStepMode","VirtualGpu","Vulkan","WEBGPU_TEXTURE_FORMAT_SUPPORT","WHITE","Wait","Wait","WaitForSubmissionIndex","WaitForSubmissionIndex","WasmNotSend","WasmNotSendSync","WasmNotSync","Wgsl","Window","WindowHandle","Write","WriteOnly","ZERO","ZERO","Zero","Zero","Zero","a","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add_srgb_suffix","address_mode_u","address_mode_v","address_mode_w","all","all","all","all","all","all","all","all","all","all","all_native_mask","all_webgpu_mask","allowed_usages","alpha","alpha_mode","alpha_modes","alpha_to_coverage_enabled","anisotropy_clamp","any_backend_feature_enabled","array_layer_count","array_layer_count","array_stride","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_entire_binding","as_entire_buffer_binding","as_hal","as_hal","as_hal","as_hal","as_hal","as_image_copy","as_mut","as_mut","as_ref","aspect","aspect","aspect","aspect","aspect","aspect","aspect_specific_format","attributes","b","back","backend","backends","base_array_layer","base_array_layer","base_mip_level","base_mip_level","begin_compute_pass","begin_occlusion_query","begin_pipeline_statistics_query","begin_pipeline_statistics_query","begin_render_pass","beginning_of_pass_write_index","beginning_of_pass_write_index","bias","bind_group_layouts","binding","binding","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","blend","block_copy_size","block_dimensions","block_size","border_color","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer","buffer","buffer","buffers","bytes_per_row","check_limits","check_limits_with_fail_fn","clamp","clear_buffer","clear_texture","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","color","color_attachments","color_formats","color_space","color_space","compare","compare","compare","compare","compare","compare","compatible_surface","compatible_surface","compatible_texture_dimension","complement","complement","complement","complement","complement","complement","complement","complement","complement","complement","compliant","components","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_with_aspect","configure","conservative","constant","contains","contains","contains","contains","contains","contains","contains","contains","contains","contains","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","contains_invalid_bits","copy_buffer_to_buffer","copy_buffer_to_texture","copy_texture_to_buffer","copy_texture_to_texture","count","count","count","create_adapter_from_hal","create_bind_group","create_bind_group_layout","create_buffer","create_buffer_from_hal","create_buffer_init","create_command_encoder","create_compute_pipeline","create_device_from_hal","create_pipeline_layout","create_query_set","create_render_bundle_encoder","create_render_pipeline","create_sampler","create_shader_module","create_shader_module_spirv","create_shader_module_unchecked","create_surface","create_surface_unsafe","create_texture","create_texture_from_hal","create_texture_with_data","create_view","cull_mode","debugging","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","depth_compare","depth_fail_op","depth_ops","depth_or_array_layers","depth_or_array_layers","depth_read_only","depth_stencil","depth_stencil","depth_stencil_attachment","depth_write_enabled","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","desired_maximum_frame_latency","destroy","destroy","destroy","device","device_type","difference","difference","difference","difference","difference","difference","difference","difference","difference","difference","dimension","dimension","dimension","dispatch_workgroups","dispatch_workgroups_indirect","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downlevel_defaults","downlevel_webgl2_defaults","draw","draw","draw","draw","draw_indexed","draw_indexed","draw_indexed","draw_indexed","draw_indexed_indirect","draw_indexed_indirect","draw_indexed_indirect","draw_indexed_indirect","draw_indirect","draw_indirect","draw_indirect","draw_indirect","driver","driver_info","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dst_factor","dx12_shader_compiler","empty","empty","empty","empty","empty","empty","empty","empty","empty","empty","end_occlusion_query","end_of_pass_write_index","end_of_pass_write_index","end_pipeline_statistics_query","end_pipeline_statistics_query","entries","entries","entry_point","entry_point","entry_point","enumerate_adapters","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","execute_bundles","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","fail_op","features","features","finish","finish","flags","flags","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","force_fallback_adapter","force_fallback_adapter","format","format","format","format","format","format","format","format","formats","fragment","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_build_config","from_core","from_hal","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_plane","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_window","front","front_face","g","generate_report","get_bind_group_layout","get_bind_group_layout","get_capabilities","get_current_texture","get_default_config","get_downlevel_capabilities","get_info","get_mapped_range","get_mapped_range_mut","get_presentation_timestamp","get_texture_format_features","get_timestamp_period","gles_minor_version","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","global_id","guaranteed_format_features","has_color_aspect","has_depth_aspect","has_dynamic_offset","has_stencil_aspect","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","height","height","height","include_spirv_raw","include_wgsl","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert_debug_marker","insert_debug_marker","insert_debug_marker","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_combined_depth_stencil_format","is_compressed","is_depth_enabled","is_depth_read_only","is_depth_stencil_component","is_depth_stencil_format","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_enabled","is_enabled","is_full_resource","is_invalid","is_multi_planar_format","is_queue_empty","is_read_only","is_read_only","is_read_only","is_srgb","is_stencil_read_only","is_strip","is_surface_supported","is_wait","is_webgpu_compliant","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","label","label","label","label","label","label","label","label","label","label","label","label","label","label","label","label","label","label","label","layer_range","layout","layout","layout","layout","layout","limits","limits","limits","load","lod_max_clamp","lod_min_clamp","mag_filter","map_async","map_index","map_label","mapped_at_creation","mask","max_bind_groups","max_bindings_per_bind_group","max_buffer_size","max_compute_invocations_per_workgroup","max_compute_workgroup_size_x","max_compute_workgroup_size_y","max_compute_workgroup_size_z","max_compute_workgroup_storage_size","max_compute_workgroups_per_dimension","max_dynamic_storage_buffers_per_pipeline_layout","max_dynamic_uniform_buffers_per_pipeline_layout","max_inter_stage_shader_components","max_mips","max_non_sampler_bindings","max_push_constant_size","max_sampled_textures_per_shader_stage","max_samplers_per_shader_stage","max_storage_buffer_binding_size","max_storage_buffers_per_shader_stage","max_storage_textures_per_shader_stage","max_texture_array_layers","max_texture_dimension_1d","max_texture_dimension_2d","max_texture_dimension_3d","max_uniform_buffer_binding_size","max_uniform_buffers_per_shader_stage","max_vertex_attributes","max_vertex_buffer_array_stride","max_vertex_buffers","min_filter","min_storage_buffer_offset_alignment","min_uniform_buffer_offset_alignment","mip_level","mip_level","mip_level","mip_level","mip_level_count","mip_level_count","mip_level_count","mip_level_count","mip_level_size","mip_range","mipmap_filter","module","module","module","multi_draw_indexed_indirect","multi_draw_indexed_indirect_count","multi_draw_indirect","multi_draw_indirect_count","multisample","multiview","multiview","name","needs_ref_value","needs_ref_value","needs_ref_value","new","not","not","not","not","not","not","not","not","not","not","occlusion_query_set","offset","offset","offset","on_submitted_work_done","on_uncaptured_error","operation","ops","origin","origin","origin","origin","panic_on_timeout","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pass_op","physical_size","planes","poll","poll_all","polygon_mode","pop_debug_group","pop_debug_group","pop_debug_group","pop_error_scope","power_preference","power_preference","premultiplied_alpha","premultiplied_alpha","present","present_mode","present_modes","primitive","push_constant_ranges","push_debug_group","push_debug_group","push_debug_group","push_error_scope","query_set","query_set","r","range","read_mask","ref_second_blend_source","remove","remove","remove","remove","remove","remove","remove","remove","remove","remove","remove_srgb_suffix","request_adapter","request_device","required_features","required_features","required_limits","resolve_query_set","resolve_target","resource","rows_per_image","sample_count","sample_count","sample_count","sample_count_supported","sample_type","set","set","set","set","set","set","set","set","set","set","set_bind_group","set_bind_group","set_bind_group","set_bind_group","set_bind_group","set_blend_constant","set_device_lost_callback","set_index_buffer","set_index_buffer","set_index_buffer","set_index_buffer","set_pipeline","set_pipeline","set_pipeline","set_pipeline","set_pipeline","set_push_constants","set_push_constants","set_push_constants","set_push_constants","set_push_constants","set_scissor_rect","set_stencil_reference","set_vertex_buffer","set_vertex_buffer","set_vertex_buffer","set_vertex_buffer","set_viewport","shader_location","shader_model","size","size","size","size","size","size","size_multiple_requirement","slice","slope_scale","source","source","source","source","source","src_factor","stages","start_capture","stencil","stencil_ops","stencil_read_only","step_mode","stop_capture","store","strip_index_format","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","submit","suboptimal","supported_sample_counts","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","targets","texture","texture","texture","texture","texture","timestamp_writes","timestamp_writes","to_2d","to_3d","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_str","to_string","to_string","to_string","to_string","to_string","to_tagged","to_untagged","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","topology","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unclipped_depth","union","union","union","union","union","union","union","union","union","union","unmap","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","usage","usage","usage","usage","usage","usages","uses_constant","using_alignment","using_resolution","util","vendor","vertex","vertex_attr_array","view","view","view_formats","view_formats","visibility","wait","wait_for","width","width","width","with_env","write_buffer","write_buffer_with","write_mask","write_mask","write_texture","write_timestamp","write_timestamp","write_timestamp","x","x","y","y","z","access","format","has_dynamic_offset","min_binding_size","multisampled","sample_type","ty","view_dimension","view_dimension","read_only","dxc_path","dxil_path","description","source","source","raw_display_handle","raw_window_handle","block","channel","filterable","Label","MAX_BIND_GROUPS","MAX_COLOR_ATTACHMENTS","MAX_VERTEX_BUFFERS","None","RawString","Some","any_surface","api","binding_model","command","device","error","gfx_if_dx12","gfx_if_dx12_hidden","gfx_if_empty","gfx_if_empty_hidden","gfx_if_gles","gfx_if_gles_hidden","gfx_if_metal","gfx_if_metal_hidden","gfx_if_vulkan","gfx_if_vulkan_hidden","gfx_select","global","hal_api","hal_label","hub","id","identity","instance","pipeline","present","registry","resource","storage","validation","AnySurface","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","backend","borrow","borrow_mut","components_from","deref","deref_mut","downcast","downcast_ref","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","take","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Empty","Gles","Vulkan","ArrayUnsupported","BindError","BindGroup","BindGroupDescriptor","BindGroupDynamicBindingData","BindGroupEntry","BindGroupLayout","BindGroupLayoutDescriptor","BindGroupLayoutEntryError","BindGroupLayouts","BindingArrayLengthMismatch","BindingArrayPartialLengthMismatch","BindingArrayZeroLength","BindingRangeTooLarge","BindingResource","BindingSizeTooSmall","BindingTypeMaxCountError","BindingTypeMaxCountErrorKind","BindingZeroSize","BindingZone","BindingsNumMismatch","Buffer","BufferArray","BufferBinding","BufferRangeTooLarge","ConflictBinding","CreateBindGroupError","CreateBindGroupLayoutError","CreatePipelineLayoutError","DepthStencilAspect","Device","Device","Device","DuplicateBinding","DynamicBindingOutOfBounds","DynamicStorageBuffers","DynamicUniformBuffers","Entry","GetBindGroupLayoutError","InvalidBindGroupLayout","InvalidBindingIndex","InvalidBuffer","InvalidGroupIndex","InvalidLayout","InvalidPipeline","InvalidSampler","InvalidStorageTextureFormat","InvalidStorageTextureMipLevelCount","InvalidTexture","InvalidTextureDimension","InvalidTextureMultisample","InvalidTextureSampleType","InvalidTextureView","InvalidVisibility","LateMinBufferBindingSizeMismatch","MisalignedPushConstantRange","MismatchedDynamicOffsetCount","MissingBindingDeclaration","MissingBufferUsage","MissingDownlevelFlags","MissingFeatures","MissingFeatures","MissingStages","MissingTextureUsage","MoreThanOnePushConstantRangePerStage","PartialRangeMatch","Pipeline","PipelineLayout","PipelineLayoutDescriptor","PushConstantRangeTooLarge","PushConstantUploadError","ResourceUsageConflict","SampleTypeFloatFilterableBindingMultisampled","SampledTextures","Sampler","SamplerArray","Samplers","SingleBindingExpected","Stage","StorageBuffers","StorageReadNotSupported","StorageTextureCube","StorageTextureReadWrite","StorageTextures","TextureView","TextureViewArray","TooLarge","TooManyBindings","TooManyBindings","TooManyGroups","Unaligned","UnalignedBufferOffset","UnalignedDynamicBinding","UniformBuffers","UnmatchedStages","WrongBindingType","WrongSamplerComparison","WrongSamplerFiltering","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info","as_info","as_info_mut","as_info_mut","as_info_mut","bind_group_layouts","binding","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bound_size","buffer_id","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","compact_index","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","components_into","count","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","entries","entries","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_pretty","fmt_pretty","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","group_index","hash","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","kind","label","label","label","label","layout","limit","offset","push_constant_ranges","resource","shader_size","size","source","source","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","zone","actual","alignment","binding","binding","binding_range","buffer_size","expected","group","group","group","idx","idx","limit_name","maximum_dynamic_offset","offset","offset","actual","actual","actual","actual","actual","binding","binding","binding","binding","binding","binding","binding","binding","binding","buffer","buffer","expected","expected","expected","expected","given","layout_cmp","layout_dimension","layout_flt","layout_format","layout_multisampled","layout_sample_type","limit","min","mip_level_count","range","sampler_cmp","sampler_flt","size","view_dimension","view_format","view_format","view_samples","binding","binding","error","maximum","actual","bound","index","index","index","intersected","max","max","provided","range","actual","actual","actual","end_offset","idx","idx","idx","matched","missing","offset","range","unmatched","AlreadyStarted","AlreadyStopped","AttachmentErrorLocation","AttachmentSampleCountMismatch","AttachmentsDimensionMismatch","BakedCommands","BasePassRef","BeginOcclusionQuery","BeginPipelineStatisticsQuery","Beginning","Bind","Bind","BindGroupIndexOutOfRange","BindGroupIndexOutOfRange","BindingSizeTooSmall","BindingSizeTooSmall","BufferOffsetAlignment","BufferOverrun","BufferOverrun","BufferOverrun","Bundle","Clear","ClearError","Color","ColorAttachment","ColorAttachment","ColorAttachmentError","CommandBuffer","CommandBufferMutable","CommandEncoderError","ComputePass","ComputePassDescriptor","ComputePassError","ComputePassErrorInner","ComputePassTimestampWrites","CopyAspectNotOne","CopyDstMissingAspects","CopyError","CopyFromForbiddenTextureFormat","CopySide","CopySrcMissingAspects","CopyToForbiddenTextureFormat","CreateRenderBundleError","Depth","Destination","DestroyedBuffer","DestroyedBuffer","Device","Device","Device","Device","Device","Discard","Dispatch","Dispatch","DispatchError","Draw","Draw","DrawError","Encoder","Encoder","Encoder","Encoder","End","EndOcclusionQuery","EndPipelineStatisticsQuery","ExecuteBundle","ExecutionError","ExternalCopyToForbiddenTextureFormat","ImageCopyBuffer","ImageCopyTexture","ImageCopyTextureTagged","IncompatibleBindGroup","IncompatibleBindGroup","IncompatibleBundleReadOnlyDepthStencil","IncompatibleBundleTargets","IncompatiblePipelineRods","IncompatiblePipelineTargets","IncompatibleType","IndexBeyondLimit","IndirectBufferOverrun","IndirectBufferOverrun","IndirectCountBufferOverrun","InstanceBeyondLimit","Invalid","InvalidAttachment","InvalidBindGroup","InvalidBindGroup","InvalidBindGroup","InvalidBindGroup","InvalidBuffer","InvalidBuffer","InvalidBuffer","InvalidBuffer","InvalidBytesPerRow","InvalidCommandEncoder","InvalidCopySize","InvalidDepthOps","InvalidDepthStencilAttachmentFormat","InvalidDepthTextureExtent","InvalidDevice","InvalidDevice","InvalidDevice","InvalidDimensionExternal","InvalidDynamicOffsetCount","InvalidFormat","InvalidGroupSize","InvalidIndirectBuffer","InvalidMipLevel","InvalidPipeline","InvalidPipeline","InvalidPopDebugGroup","InvalidPopDebugGroup","InvalidQuerySet","InvalidQuerySet","InvalidQuerySet","InvalidQuerySet","InvalidRenderBundle","InvalidResolveSampleCounts","InvalidRowsPerImage","InvalidSampleCount","InvalidSampleCount","InvalidScissorRect","InvalidStencilOps","InvalidTexture","InvalidTexture","InvalidTextureAspect","InvalidTextureLayerRange","InvalidTextureLevelRange","InvalidTextureMipLevel","InvalidValuesOffset","InvalidViewportDepth","InvalidViewportRect","Load","LoadOp","MemoryInitFailure","MismatchedResolveTextureFormat","MissingAttachments","MissingBlendConstant","MissingBufferUsage","MissingBufferUsage","MissingBufferUsage","MissingClearTextureFeature","MissingCopyDstUsageFlag","MissingCopyDstUsageFlag","MissingCopySrcUsageFlag","MissingDownlevelFlags","MissingDownlevelFlags","MissingDownlevelFlags","MissingFeatures","MissingFeatures","MissingIndexBuffer","MissingOcclusionQuerySet","MissingPipeline","MissingPipeline","MissingRenderAttachmentUsageFlag","MissingTextureAspect","MissingTextureUsage","MissingVertexBuffer","MultiViewDimensionMismatch","MultiViewMismatch","NoValidTextureClearMode","NotRecording","Occlusion","OutOfBounds","OutOfMemory","Pass","PassChannel","PassErrorScope","PipelineStatistics","PopDebugGroup","PushConstants","PushConstants","QueryError","QueryOverrun","QueryReset","QueryUse","QueryUse","QueryUseError","Rect","RenderBundle","RenderBundleDescriptor","RenderBundleEncoder","RenderBundleEncoderDescriptor","RenderBundleError","RenderCommand","RenderCommandError","RenderPass","RenderPassColorAttachment","RenderPassDepthStencilAttachment","RenderPassDescriptor","RenderPassError","RenderPassErrorInner","RenderPassTimestampLocation","RenderPassTimestampWrites","Resolve","ResolveError","ResourceUsageConflict","ResourceUsageConflict","SameSourceDestinationBuffer","SetBindGroup","SetIndexBuffer","SetPipelineCompute","SetPipelineRender","SetPushConstant","SetScissorRect","SetVertexBuffer","SetViewport","SimplifiedQueryType","Source","Store","StoreOp","SurfaceTextureDropped","TextureFormatsNotCopyCompatible","TextureOverrun","TextureViewIsNotRenderable","Timestamp","TooMany","Transfer","TransferError","UnalignedBufferOffset","UnalignedBufferOffset","UnalignedBufferOffset","UnalignedBytesPerRow","UnalignedCopyHeight","UnalignedCopyOriginX","UnalignedCopyOriginY","UnalignedCopySize","UnalignedCopyWidth","UnalignedFillSize","Unimplemented","Unimplemented","UnmatchedIndexFormats","UnspecifiedBytesPerRow","UnspecifiedRowsPerImage","UnsupportedResolveTargetFormat","UsageConflict","Use","UsedTwiceInsideRenderpass","VertexBeyondLimit","VertexBufferIndexOutOfRange","WriteTimestamp","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info","as_info_mut","as_info_mut","aspect","aspect","beginning_of_pass_write_index","beginning_of_pass_write_index","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer","bundle_ffi","channel","clear_value","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color_attachments","color_formats","color_space","commands","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","components_into","components_into","compute_ffi","default","default","default","default","depth","depth_stencil","depth_stencil_attachment","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dummy","dynamic_offsets","end_of_pass_write_index","end_of_pass_write_index","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","fmt_pretty","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","h","hash","hash","hash","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_finished","label","label","label","label","label","label","layout","load_op","mip_level","mip_level","multiview","new","new","new","occlusion_query_set","origin","origin","parent","parent_id","parent_id","premultiplied_alpha","push_constant_data","query_set","query_set","read_only","render_ffi","resolve_target","sample_count","scope","scope","scope","set_index_buffer","set_index_buffer","source","source","source","source","source","source","source","source","source","source","source","source","source","source","stencil","store_op","string_data","texture","texture","timestamp_writes","timestamp_writes","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","view","view","w","x","y","index","resolve","buffer_size","end_offset","start_offset","subresource_array_layer_count","subresource_base_array_layer","subresource_base_mip_level","subresource_mip_level_count","subresource_range_aspects","texture_format","texture_layer_range","texture_level_range","given","limit","buffer_size","end_offset","index","max","offset","current","diff","index","limit","buffer","diff","index","index","index_limit","instance_limit","last_index","last_instance","last_vertex","pipeline","slot","slot","vertex_limit","indexed","indirect","indirect","pipeline","pipeline","active_query_index","new_query_index","query_index","query_index","query_set_size","query_type","set_type","actual","expected","index","index","max","max","actual_extent","actual_location","actual_location","actual_samples","begin_count_offset","buffer_size","bundle_depth","bundle_stencil","count","count_buffer_size","dst","dst","end_count_offset","end_offset","expected_extent","expected_location","expected_location","expected_samples","format","location","location","location","location","offset","pass_depth","pass_stencil","reason","src","src","buffer_end_offset","buffer_size","buffer_start_offset","end_query","end_query","query_set_size","start_query","start_query","stride","aspect","aspect","aspect","buffer_size","count","dimension","dst_format","end_offset","end_offset","format","format","format","level","requested","sample_count","side","side","src_format","start_offset","start_offset","texture_size","total","wgpu_render_bundle_draw","wgpu_render_bundle_draw_indexed","wgpu_render_bundle_draw_indexed_indirect","wgpu_render_bundle_draw_indirect","wgpu_render_bundle_insert_debug_marker","wgpu_render_bundle_pop_debug_group","wgpu_render_bundle_push_debug_group","wgpu_render_bundle_set_bind_group","wgpu_render_bundle_set_index_buffer","wgpu_render_bundle_set_pipeline","wgpu_render_bundle_set_push_constants","wgpu_render_bundle_set_vertex_buffer","wgpu_compute_pass_begin_pipeline_statistics_query","wgpu_compute_pass_dispatch_workgroups","wgpu_compute_pass_dispatch_workgroups_indirect","wgpu_compute_pass_end_pipeline_statistics_query","wgpu_compute_pass_insert_debug_marker","wgpu_compute_pass_pop_debug_group","wgpu_compute_pass_push_debug_group","wgpu_compute_pass_set_bind_group","wgpu_compute_pass_set_pipeline","wgpu_compute_pass_set_push_constant","wgpu_compute_pass_write_timestamp","wgpu_render_pass_begin_occlusion_query","wgpu_render_pass_begin_pipeline_statistics_query","wgpu_render_pass_draw","wgpu_render_pass_draw_indexed","wgpu_render_pass_draw_indexed_indirect","wgpu_render_pass_draw_indirect","wgpu_render_pass_end_occlusion_query","wgpu_render_pass_end_pipeline_statistics_query","wgpu_render_pass_execute_bundles","wgpu_render_pass_insert_debug_marker","wgpu_render_pass_multi_draw_indexed_indirect","wgpu_render_pass_multi_draw_indexed_indirect_count","wgpu_render_pass_multi_draw_indirect","wgpu_render_pass_multi_draw_indirect_count","wgpu_render_pass_pop_debug_group","wgpu_render_pass_push_debug_group","wgpu_render_pass_set_bind_group","wgpu_render_pass_set_blend_constant","wgpu_render_pass_set_index_buffer","wgpu_render_pass_set_pipeline","wgpu_render_pass_set_push_constants","wgpu_render_pass_set_scissor_rect","wgpu_render_pass_set_stencil_reference","wgpu_render_pass_set_vertex_buffer","wgpu_render_pass_set_viewport","wgpu_render_pass_write_timestamp","BufferMapPendingClosure","Device","Device","DeviceDescriptor","DeviceError","DeviceLostCallback","DeviceLostClosure","DeviceLostClosureC","DeviceLostClosureRust","DeviceLostInvocation","HostMap","ImplicitPipelineContext","ImplicitPipelineIds","IncompatibleColorAttachment","IncompatibleDepthStencilAttachment","IncompatibleMultiview","IncompatibleSampleCount","Invalid","InvalidDevice","InvalidQueueId","Lost","MissingDownlevelFlags","MissingFeatures","OutOfMemory","Read","RenderBundle","RenderPassCompatibilityCheckType","RenderPassCompatibilityError","RenderPipeline","ResourceCreationFailed","SHADER_STAGE_COUNT","StuckGpu","UserClosures","WaitIdleError","Write","WrongDevice","WrongSubmissionIndex","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","any_device","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","callback","callback","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","create_buffer_from_hal","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","device_lost_invocations","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_c","from_rust","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","global","group_ids","group_ids","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_valid","label","mappings","queue","required_features","required_limits","resource","root_id","root_id","source","submissions","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","user_data","actual","actual","actual","actual","expected","expected","expected","expected","indices","ty","ty","ty","ty","AnyDevice","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","downcast","downcast_clone","downcast_ref","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","new","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Buffer","BufferStillMapped","DestroyedBuffer","DestroyedBuffer","DestroyedTexture","DestroyedTexture","InvalidQueue","MemoryInitFailure","Queue","Queue","Queue","QueueSubmitError","QueueWriteError","StagingBuffer","StuckGpu","SubmittedWorkDoneClosure","SubmittedWorkDoneClosureC","SurfaceOutputDropped","SurfaceUnconfigured","TempResource","Texture","Transfer","Unmap","WrappedSubmissionIndex","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","callback","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","device","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_c","from_rust","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","index","info","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","queue_id","raw","source","source","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","user_data","CreateDeviceError","Device","FailedToCreateZeroBuffer","OutOfMemory","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","fmt","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","source","to_owned","to_smolstr","to_string","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","ContextError","ErrorFormatter","PrettyError","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","bind_group_label","bind_group_layout_label","borrow","borrow","borrow_mut","borrow_mut","buffer_label","buffer_label_with_key","cause","command_buffer_label","components_from","components_from","compute_pipeline_label","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","error","fmt","fmt","fmt_pretty","fmt_pretty","format_pretty_any","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","label","label","label_key","note","query_set_label","render_pipeline_label","sampler_label","source","string","texture_label","texture_label_with_key","texture_view_label","texture_view_label_with_key","to_smolstr","to_string","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Global","GlobalReport","adapt_into_using","adapt_into_using","adapter_as_hal","adapter_downlevel_capabilities","adapter_drop","adapter_features","adapter_get_info","adapter_get_presentation_timestamp","adapter_get_texture_format_features","adapter_is_surface_supported","adapter_limits","adapter_request_device","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","bind_group_drop","bind_group_label","bind_group_layout_drop","bind_group_layout_label","borrow","borrow","borrow_mut","borrow_mut","buffer_destroy","buffer_drop","buffer_get_mapped_range","buffer_label","buffer_map_async","buffer_unmap","clear_backend","command_buffer_drop","command_buffer_label","command_encoder_clear_buffer","command_encoder_clear_texture","command_encoder_copy_buffer_to_buffer","command_encoder_copy_buffer_to_texture","command_encoder_copy_texture_to_buffer","command_encoder_copy_texture_to_texture","command_encoder_drop","command_encoder_finish","command_encoder_insert_debug_marker","command_encoder_pop_debug_group","command_encoder_push_debug_group","command_encoder_resolve_query_set","command_encoder_run_compute_pass","command_encoder_run_render_pass","command_encoder_write_timestamp","components_from","components_from","compute_pipeline_drop","compute_pipeline_get_bind_group_layout","compute_pipeline_label","create_adapter_from_hal","create_buffer_error","create_buffer_from_hal","create_device_from_hal","create_render_bundle_error","create_texture_error","create_texture_from_hal","deref","deref","deref_mut","deref_mut","device_as_hal","device_create_bind_group","device_create_bind_group_layout","device_create_buffer","device_create_command_encoder","device_create_compute_pipeline","device_create_pipeline_layout","device_create_query_set","device_create_render_bundle_encoder","device_create_render_pipeline","device_create_sampler","device_create_shader_module","device_create_shader_module_spirv","device_create_texture","device_destroy","device_downlevel_properties","device_drop","device_features","device_fence_as_hal","device_label","device_limits","device_mark_lost","device_poll","device_set_device_lost_closure","device_start_capture","device_stop_capture","downcast","downcast","drop","drop","drop","enumerate_adapters","eq","equivalent","equivalent","equivalent","fmt","from","from","from_angle","from_angle","from_hal_instance","from_instance","from_stimulus","from_stimulus","generate_report","gl","hub_report","init","init","instance","instance_as_hal","instance_create_surface","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","pipeline_layout_drop","pipeline_layout_label","poll_all_devices","query_set_drop","query_set_label","queue_create_staging_buffer","queue_drop","queue_get_timestamp_period","queue_on_submitted_work_done","queue_submit","queue_validate_write_buffer","queue_write_buffer","queue_write_staging_buffer","queue_write_texture","render_bundle_drop","render_bundle_encoder_finish","render_bundle_label","render_pipeline_drop","render_pipeline_get_bind_group_layout","render_pipeline_label","request_adapter","sampler_drop","sampler_label","shader_module_drop","shader_module_label","surface_as_hal","surface_configure","surface_drop","surface_get_capabilities","surface_get_current_texture","surface_present","surface_texture_discard","surfaces","surfaces","surfaces","texture_as_hal","texture_create_view","texture_destroy","texture_drop","texture_label","texture_view_drop","texture_view_label","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","vulkan","HalApi","VARIANT","create_instance_from_hal","get_surface","hub","instance_as_hal","Hub","HubReport","Hubs","adapt_into_using","adapt_into_using","adapt_into_using","adapters","adapters","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","bind_group_layouts","bind_group_layouts","bind_groups","bind_groups","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","buffers","buffers","command_buffers","command_buffers","components_from","components_from","components_from","components_into","compute_pipelines","compute_pipelines","deref","deref","deref","deref_mut","deref_mut","deref_mut","devices","devices","downcast","downcast","downcast","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","generate_report","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","is_empty","pipeline_layouts","pipeline_layouts","query_sets","query_sets","queues","queues","render_bundles","render_bundles","render_pipelines","render_pipelines","samplers","samplers","shader_modules","shader_modules","staging_buffers","texture_views","texture_views","textures","textures","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","AdapterId","BindGroupId","BindGroupLayoutId","BufferId","CommandBufferId","CommandEncoderId","ComputePassEncoderId","ComputePipelineId","DeviceId","EPOCH_MASK","Id","PipelineLayoutId","QuerySetId","QueueId","RenderBundleEncoderId","RenderBundleId","RenderPassEncoderId","RenderPipelineId","SamplerId","ShaderModuleId","StagingBufferId","SurfaceId","TextureId","TextureViewId","TypedId","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","backend","borrow","borrow_mut","clone","clone_into","cmp","compare","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from","from_angle","from_raw","from_stimulus","hash","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_raw","into_raw","into_stimulus","partial_cmp","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","unzip","unzip","upcast","zip","zip","GlobalIdentityHandlerFactory","IdentityHandlerFactory","IdentityManager","IdentityManagerFactory","Input","Input","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","autogenerate_ids","autogenerate_ids","borrow","borrow","borrow_mut","borrow_mut","components_from","components_from","components_into","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","fmt","fmt","free","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","input_to_id","input_to_id","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","mark_as_used","new","process","spawn","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Adapter","AdapterInputs","DeviceLost","FailedLimit","GetSurfaceSupportError","HalSurface","IdSet","Instance","Internal","InvalidAdapter","InvalidAdapter","InvalidAdapter","InvalidAdapter","InvalidSurface","InvalidSurface","InvalidSurface","IsSurfaceSupportedError","LimitsExceeded","Mask","NoGraphicsQueue","NotFound","OutOfMemory","RequestAdapterError","RequestAdapterOptions","RequestDeviceError","Surface","Unsupported","UnsupportedFeature","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info","as_info_mut","as_info_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","compatible_surface","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","force_fallback_adapter","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_capabilities","gl","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_surface_supported","label","name","new","parse_backends_from_comma_list","power_preference","raw","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","vulkan","ABSTRACT_FLOAT","ABSTRACT_INT","ABSTRACT_WIDTH","Abs","AbstractFloat","AbstractFloat","AbstractInt","AbstractInt","AccelerationStructure","Access","AccessIndex","Acos","Acosh","Add","Add","AddressSpace","All","And","And","Any","Arena","Array","ArrayLength","ArraySize","As","Asin","Asinh","Atan","Atan2","Atanh","Atomic","Atomic","AtomicCompareExchangeWeakResult","AtomicFunction","AtomicResult","Auto","BOOL","BOOL_WIDTH","Barrier","Barrier","BaseInstance","BaseVertex","Bgra8Unorm","Bi","Bias","Binary","BinaryOperator","Binding","BindingArray","BitwiseNot","Block","Block","Bool","Bool","Break","BuiltIn","BuiltIn","ByName","ByNameOrId","Bytes","Call","CallResult","Ceil","Center","Centroid","Clamp","ClipDistance","Coarse","Compose","Compute","ConservativeDepth","Constant","Constant","Constant","Continue","Cos","Cosh","CountLeadingZeros","CountOneBits","CountTrailingZeros","Cross","Cube","CullDistance","D1","D2","D3","Default","Degrees","Depth","Derivative","DerivativeAxis","DerivativeControl","Determinant","Distance","Divide","Dot","Dynamic","EarlyDepthTest","Emit","EntryPoint","Equal","Exact","Exchange","ExclusiveOr","ExclusiveOr","Exp","Exp2","Expression","ExtractBits","F32","F32","F64","F64","FaceForward","FastHashMap","FastHashSet","FastIndexMap","FastIndexSet","FindLsb","FindMsb","Fine","Flat","Float","Floor","Fma","Fract","FragDepth","Fragment","Frexp","FrexpResult","FrontFacing","Function","Function","FunctionArgument","FunctionArgument","FunctionResult","GlobalInvocationId","GlobalVariable","GlobalVariable","Gradient","Greater","GreaterEqual","GreaterEqual","Handle","Handle","I32","I32","I32","I64","I64","If","Image","ImageClass","ImageDimension","ImageLoad","ImageQuery","ImageQuery","ImageSample","ImageStore","InclusiveOr","InclusiveOr","Initialize","InsertBits","InstanceIndex","Interpolation","Inverse","InverseSqrt","IsInf","IsNan","Kill","LOAD","Ldexp","Length","Less","LessEqual","LessEqual","Linear","Literal","Literal","Load","LocalInvocationId","LocalInvocationIndex","LocalVariable","LocalVariable","Location","Log","Log2","LogicalAnd","LogicalNot","LogicalOr","Loop","Math","MathFunction","Matrix","Max","Max","Min","Min","Mix","Modf","ModfResult","Module","Modulo","Multiply","Negate","None","None","Normalize","NotEqual","NumLayers","NumLevels","NumSamples","NumWorkGroups","Outer","Override","Pack2x16float","Pack2x16snorm","Pack2x16unorm","Pack4x8snorm","Pack4x8unorm","Perspective","PointCoord","PointSize","Pointer","Position","Pow","PredeclaredType","PrimitiveIndex","Private","Proceed","PushConstant","Quad","R16Float","R16Sint","R16Snorm","R16Uint","R16Unorm","R32Float","R32Sint","R32Uint","R8Sint","R8Snorm","R8Uint","R8Unorm","Radians","Range","RayQuery","RayQuery","RayQueryFunction","RayQueryGetIntersection","RayQueryProceedResult","Reflect","Refract","Relational","RelationalFunction","ResourceBinding","Return","ReverseBits","Rg11b10Float","Rg16Float","Rg16Sint","Rg16Snorm","Rg16Uint","Rg16Unorm","Rg32Float","Rg32Sint","Rg32Uint","Rg8Sint","Rg8Snorm","Rg8Uint","Rg8Unorm","Rgb10a2Uint","Rgb10a2Unorm","Rgba16Float","Rgba16Sint","Rgba16Snorm","Rgba16Uint","Rgba16Unorm","Rgba32Float","Rgba32Sint","Rgba32Uint","Rgba8Sint","Rgba8Snorm","Rgba8Uint","Rgba8Unorm","Round","STORAGE","STORE","Sample","SampleIndex","SampleLevel","SampleMask","Sampled","Sampler","Sampling","Saturate","Scalar","Scalar","ScalarKind","Select","ShaderStage","ShiftLeft","ShiftRight","Sign","Sin","Sinh","Sint","Size","SmoothStep","SourceLocation","Span","SpanContext","SpecialTypes","Splat","Sqrt","Statement","Step","Storage","Storage","StorageAccess","StorageFormat","Store","Struct","StructMember","Subtract","Subtract","Switch","SwitchCase","SwitchValue","Swizzle","SwizzleComponent","Tan","Tanh","Terminate","Transpose","Tri","Trunc","Type","TypeInner","U32","U32","U32","UNDEFINED","Uint","Unary","UnaryOperator","Unchanged","Uniform","UniqueArena","Unpack2x16float","Unpack2x16snorm","Unpack2x16unorm","Unpack4x8snorm","Unpack4x8unorm","ValuePointer","Vector","VectorSize","Vertex","VertexIndex","ViewIndex","W","WORK_GROUP","Width","WithSpan","WorkGroup","WorkGroupId","WorkGroupSize","WorkGroupUniformLoad","WorkGroupUniformLoadResult","X","X","XYZW","Y","Y","Z","Zero","ZeroValue","access","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","all","and_then","append","append","apply_default_interpolation","argument_count","arguments","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_inner","automatic_conversion_combine","automatically_converts_to","back","binding","binding","binding","binding","binding","bitand","bitand","bitand_assign","bitand_assign","bitor","bitor","bitor_assign","bitor_assign","bits","bits","bits","bits","bitxor","bitxor","bitxor_assign","bitxor_assign","body","body","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","canonical_form","check_contains_handle","check_contains_handle","check_contains_range","clear","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","cmp","compact","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","compare","complement","complement","component_type","components","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","conservative","const_expressions","constants","contains","contains","cull","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","difference","difference","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","early_depth_test","emit_to_stderr","emit_to_stderr_with_path","emit_to_string","emit_to_string_with_path","empty","empty","entry_points","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expressions","extend","extend","extend","extend_block","fall_through","fetch_if","fetch_if_or_append","fetch_or_append","first_and_last","float","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_index","from_iter","from_iter","from_name","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_vec","from_zero_based_index_range","front","function","functions","generate_predeclared_type","generate_ray_desc_type","generate_ray_intersection_type","get","get_handle","get_mut","get_span","get_span","global_variables","group","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","implicit_derivatives","index","index","index","index","index","index_mut","indexable_length","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","insert","insert","insert","intersection","intersection","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_inner","into_inner","into_iter","into_iter","into_iter","into_iter","into_other","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_abstract","is_all","is_all","is_atomic_pointer","is_defined","is_dynamic_index","is_dynamically_sized","is_empty","is_empty","is_empty","is_empty","is_empty","is_mipmapped","is_multisampled","is_numeric","is_terminator","iter","iter","iter","iter","iter_mut","iter_names","iter_names","keywords","kind","len","len","len","length","line_number","line_position","local_variables","location","location","name","name","name","name","name","name","name","name","named_expressions","needs_pre_emit","new","new","new","new","new","new","new_from_bounds","next","not","not","offset","offset","one","originating_global","override","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pointer_space","predeclared_types","proc","push","range_from","ray_desc","ray_intersection","remove","remove","replace","result","scalar","scalar","scalar_kind","scalar_kind","scalar_width","set","set","size","source","space","span_iter","span_iter_mut","spans","special_types","splice","stage","sub","sub","sub_assign","sub_assign","subsume","symmetric_difference","symmetric_difference","to_built_in","to_ctx","to_hlsl_str","to_indexable_length","to_inner_atomic","to_inner_scalar","to_inner_vector","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_range","to_smolstr","to_string","to_wgsl","to_wgsl","to_wgsl","to_wgsl","toggle","toggle","total_span","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_get","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","ty","ty","ty","ty","ty","ty_inner","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","types","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","union","until","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","valid","value","width","width","with_capacity","with_context","with_span","workgroup_size","zero","zero_based_index_range","access","compare","interpolation","location","sampling","second_blend_source","invariant","accept","arg","arg1","arg2","arg3","argument","array_index","array_index","axis","base","base","committed","comparison","components","condition","convert","coordinate","coordinate","ctrl","depth_ref","expr","expr","expr","fun","fun","gather","image","image","image","index","index","kind","left","level","level","offset","op","op","pattern","pointer","query","query","reject","right","sample","sampler","size","size","ty","ty","ty","value","vector","access","format","kind","multi","multi","level","size","size","width","width","acceleration_structure","descriptor","result","x","y","accept","arguments","array_index","body","break_if","cases","condition","continuing","coordinate","fun","fun","function","image","pointer","pointer","pointer","query","reject","result","result","result","selector","value","value","value","value","arrayed","base","base","base","class","columns","comparison","dim","members","rows","scalar","scalar","scalar","size","size","size","size","space","space","span","stride","CULL_BACK_FACING","CULL_FRONT_FACING","CULL_NO_OPAQUE","CULL_OPAQUE","NO_OPAQUE","OPAQUE","RayFlag","SKIP_AABBS","SKIP_CLOSEST_HIT_SHADER","SKIP_TRIANGLES","TERMINATE_ON_FIRST_HIT","adapt_into_using","all","arrays_from","arrays_into","as_any","as_any_mut","bitand","bitand_assign","bitor","bitor_assign","bits","bits","bitxor","bitxor_assign","borrow","borrow_mut","clone","clone_into","complement","components_from","contains","default","deref","deref_mut","difference","downcast","drop","empty","eq","equivalent","equivalent","equivalent","extend","fmt","fmt","fmt","fmt","fmt","from","from_angle","from_bits","from_bits_retain","from_bits_retain","from_bits_truncate","from_iter","from_name","from_stimulus","glsl","hlsl","init","insert","intersection","intersects","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_iter","into_stimulus","is_all","is_empty","iter","iter_names","msl","not","remove","set","spv","sub","sub_assign","symmetric_difference","to_owned","toggle","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","union","upcast","ADJUST_COORDINATE_SPACE","ARRAY_OF_ARRAYS","BUFFER_STORAGE","BindingMap","CLIP_DISTANCE","COMPUTE_SHADER","CONSERVATIVE_DEPTH","CUBE_TEXTURES_ARRAY","CULL_DISTANCE","Custom","DOUBLE_TYPE","DRAW_PARAMETERS","DUAL_SOURCE_BLENDING","DYNAMIC_ARRAY_SIZE","Desktop","Embedded","EntryPointNotFound","Error","FIRST_INSTANCE_BINDING","FORCE_POINT_SIZE","FULL_IMAGE_FORMATS","Features","FmtError","IMAGE_LOAD_STORE","IMAGE_SIZE","INCLUDE_UNUSED_ITEMS","INSTANCE_INDEX","ImageMultipleSamplers","MULTISAMPLED_TEXTURES","MULTISAMPLED_TEXTURE_ARRAYS","MULTI_VIEW","MissingFeatures","MultiplePushConstants","NOPERSPECTIVE_QUALIFIER","Options","PipelineOptions","PushConstantItem","ReflectionInfo","SAMPLE_QUALIFIER","SAMPLE_VARIABLES","SUPPORTED_CORE_VERSIONS","SUPPORTED_ES_VERSIONS","TEXTURE_LEVELS","TEXTURE_SAMPLES","TEXTURE_SHADOW_LOD","TextureMapping","UnsupportedExternal","UnsupportedScalar","VaryingLocation","Version","VersionNotSupported","Writer","WriterFlags","access_path","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","all","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","binding_map","bitand","bitand","bitand_assign","bitand_assign","bitor","bitor","bitor_assign","bitor_assign","bits","bits","bits","bits","bitxor","bitxor","bitxor_assign","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","complement","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","contains","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","difference","difference","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","empty","entry_point","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_iter","from_iter","from_name","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","index","init","init","init","init","init","init","init","init","init","init","init","insert","insert","intersection","intersection","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_all","is_empty","is_empty","iter","iter","iter_names","iter_names","location","multiview","new","new_gles","not","not","offset","partial_cmp","push_constant_items","remove","remove","sampler","set","set","shader_stage","source","sub","sub","sub_assign","sub_assign","symmetric_difference","symmetric_difference","texture","texture_mapping","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","toggle","toggle","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uniforms","union","union","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","varying","version","write","writer_flags","zero_initialize_workgroup_memory","is_webgl","version","BindTarget","BindingMap","Custom","EntryPointError","Error","IoError","MissingBinding","Options","ReflectionInfo","ShaderModel","Unimplemented","UnsupportedScalar","V5_0","V5_1","V6_0","Writer","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","binding_array_size","binding_map","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","entry_point_names","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fake_missing_bindings","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","partial_cmp","push_constants_target","register","shader_model","source","space","special_constants_binding","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_str","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","write","zero_initialize_workgroup_memory","BindSamplerTarget","BindTarget","BindingMap","CapabilityNotSupported","EntryPointError","EntryPointResourceMap","EntryPointResources","Error","FeatureNotImplemented","Format","Inline","InlineSamplerIndex","MissingBindTarget","MissingBinding","MissingPushConstants","MissingSizesBuffer","Options","PipelineOptions","Resource","Slot","TranslationInfo","UnimplementedBindTarget","UnsupportedArrayOf","UnsupportedArrayOfType","UnsupportedAttribute","UnsupportedBinaryOp","UnsupportedBuiltIn","UnsupportedCall","UnsupportedCompose","UnsupportedFunction","UnsupportedRWStorageTexture","UnsupportedRayTracing","UnsupportedWriteableStorageBuffer","UnsupportedWriteableStorageTexture","Validation","Writer","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","allow_and_force_point_size","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","binding_array_size","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds_check_policies","buffer","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","entry_point_names","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fake_missing_bindings","finish","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","hash","hash","init","init","init","init","init","init","init","init","init","inline_samplers","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","lang_version","mutable","new","per_entry_point_map","push_constant_buffer","resources","sampler","sampler","sizes_buffer","source","spirv_cross_compatibility","texture","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","write","write_string","zero_initialize_workgroup_memory","Address","Always","BorderColor","ClampToBorder","ClampToEdge","ClampToZero","CompareFunc","Coord","Equal","Filter","Greater","GreaterEqual","InlineSampler","Less","LessEqual","Linear","MirroredRepeat","Nearest","Never","Normalized","NotEqual","OpaqueBlack","OpaqueWhite","Pixel","Repeat","TransparentBlack","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","address","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_str","as_str","as_str","as_str","as_str","border_color","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","compare_func","components_from","components_from","components_from","components_from","components_from","components_from","coord","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","hash","hash","hash","init","init","init","init","init","init","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","lod_clamp","mag_filter","max_anisotropy","min_filter","mip_filter","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","ADJUST_COORDINATE_SPACE","ARRAYED","Addresses","ArbitraryPrecisionFixedPointINTEL","ArbitraryPrecisionFloatingPointINTEL","ArbitraryPrecisionIntegersINTEL","AsmINTEL","AtomicFloat16AddEXT","AtomicFloat16MinMaxEXT","AtomicFloat32AddEXT","AtomicFloat32MinMaxEXT","AtomicFloat64AddEXT","AtomicFloat64MinMaxEXT","AtomicStorage","AtomicStorageOps","BFloat16ConversionINTEL","BindingInfo","BindingMap","BindlessTextureNV","BitInstructions","BlockingPipesINTEL","CLAMP_FRAG_DEPTH","CacheControlsINTEL","Capability","ClipDistance","ComputeDerivativeGroupLinearNV","ComputeDerivativeGroupQuadsNV","CooperativeMatrixKHR","CooperativeMatrixNV","CoreBuiltinsARM","CullDistance","DEBUG","DEPTH","DebugInfo","DebugInfoModuleINTEL","DemoteToHelperInvocation","DemoteToHelperInvocationEXT","DenormFlushToZero","DenormPreserve","DerivativeControl","DeviceEnqueue","DeviceGroup","DisplacementMicromapNV","DotProduct","DotProductInput4x8Bit","DotProductInput4x8BitKHR","DotProductInput4x8BitPacked","DotProductInput4x8BitPackedKHR","DotProductInputAll","DotProductInputAllKHR","DotProductKHR","DrawParameters","EntryPointNotFound","Error","ExpectAssumeKHR","FORCE_POINT_SIZE","FPFastMathModeINTEL","FPGAArgumentInterfacesINTEL","FPGABufferLocationINTEL","FPGAClusterAttributesINTEL","FPGADSPControlINTEL","FPGAInvocationPipeliningAttributesINTEL","FPGAKernelAttributesINTEL","FPGAKernelAttributesv2INTEL","FPGALatencyControlINTEL","FPGALoopControlsINTEL","FPGAMemoryAccessesINTEL","FPGAMemoryAttributesINTEL","FPGARegINTEL","FPMaxErrorINTEL","FeatureNotImplemented","Float16","Float16Buffer","Float16ImageAMD","Float64","FloatingPointModeINTEL","FragmentBarycentricKHR","FragmentBarycentricNV","FragmentDensityEXT","FragmentFullyCoveredEXT","FragmentMaskAMD","FragmentShaderPixelInterlockEXT","FragmentShaderSampleInterlockEXT","FragmentShaderShadingRateInterlockEXT","FragmentShadingRateKHR","FunctionFloatControlINTEL","FunctionPointersINTEL","GenericPointer","Geometry","GeometryPointSize","GeometryShaderPassthroughNV","GeometryStreams","GlobalVariableFPGADecorationsINTEL","GlobalVariableHostAccessINTEL","GroupNonUniform","GroupNonUniformArithmetic","GroupNonUniformBallot","GroupNonUniformClustered","GroupNonUniformPartitionedNV","GroupNonUniformQuad","GroupNonUniformRotateKHR","GroupNonUniformShuffle","GroupNonUniformShuffleRelative","GroupNonUniformVote","GroupUniformArithmeticKHR","Groups","IOPipesINTEL","Image1D","ImageBasic","ImageBuffer","ImageCubeArray","ImageFootprintNV","ImageGatherBiasLodAMD","ImageGatherExtended","ImageMSArray","ImageMipmap","ImageQuery","ImageReadWrite","ImageReadWriteLodAMD","ImageRect","ImageTypeFlags","IndirectReferencesINTEL","InputAttachment","InputAttachmentArrayDynamicIndexing","InputAttachmentArrayDynamicIndexingEXT","InputAttachmentArrayNonUniformIndexing","InputAttachmentArrayNonUniformIndexingEXT","Int16","Int64","Int64Atomics","Int64ImageEXT","Int8","IntegerFunctions2INTEL","InterpolationFunction","Kernel","KernelAttributesINTEL","LABEL_VARYINGS","Linkage","LiteralSampler","LongConstantCompositeINTEL","LoopFuseINTEL","MULTISAMPLED","Matrix","MemoryAccessAliasingINTEL","MeshShadingEXT","MeshShadingNV","MinLod","MissingCapabilities","MultiView","MultiViewport","NamedBarrier","Native","None","OptNoneINTEL","Options","PerViewAttributesNV","PhysicalStorageBufferAddresses","PhysicalStorageBufferAddressesEXT","PipeStorage","PipelineOptions","Pipes","Polyfill","RayCullMaskKHR","RayQueryKHR","RayQueryPositionFetchKHR","RayQueryProvisionalKHR","RayTracingDisplacementMicromapNV","RayTracingKHR","RayTracingMotionBlurNV","RayTracingNV","RayTracingOpacityMicromapEXT","RayTracingPositionFetchKHR","RayTracingProvisionalKHR","RayTraversalPrimitiveCullingKHR","RoundToInfinityINTEL","RoundingModeRTE","RoundingModeRTZ","RuntimeAlignedAttributeINTEL","RuntimeDescriptorArray","RuntimeDescriptorArrayEXT","SAMPLED","SampleMaskOverrideCoverageNV","SampleMaskPostDepthCoverage","SampleRateShading","Sampled1D","SampledBuffer","SampledCubeArray","SampledImageArrayDynamicIndexing","SampledImageArrayNonUniformIndexing","SampledImageArrayNonUniformIndexingEXT","SampledRect","Shader","ShaderClockKHR","ShaderEnqueueAMDX","ShaderInvocationReorderNV","ShaderLayer","ShaderNonUniform","ShaderNonUniformEXT","ShaderSMBuiltinsNV","ShaderStereoViewNV","ShaderViewportIndex","ShaderViewportIndexLayerEXT","ShaderViewportIndexLayerNV","ShaderViewportMaskNV","ShadingRateNV","SignedZeroInfNanPreserve","SparseResidency","SplitBarrierINTEL","StencilExportEXT","StorageBuffer16BitAccess","StorageBuffer8BitAccess","StorageBufferArrayDynamicIndexing","StorageBufferArrayNonUniformIndexing","StorageBufferArrayNonUniformIndexingEXT","StorageImageArrayDynamicIndexing","StorageImageArrayNonUniformIndexing","StorageImageArrayNonUniformIndexingEXT","StorageImageExtendedFormats","StorageImageMultisample","StorageImageReadWithoutFormat","StorageImageWriteWithoutFormat","StorageInputOutput16","StoragePushConstant16","StoragePushConstant8","StorageTexelBufferArrayDynamicIndexing","StorageTexelBufferArrayDynamicIndexingEXT","StorageTexelBufferArrayNonUniformIndexing","StorageTexelBufferArrayNonUniformIndexingEXT","StorageUniform16","StorageUniformBufferBlock16","SubgroupAvcMotionEstimationChromaINTEL","SubgroupAvcMotionEstimationINTEL","SubgroupAvcMotionEstimationIntraINTEL","SubgroupBallotKHR","SubgroupBufferBlockIOINTEL","SubgroupDispatch","SubgroupImageBlockIOINTEL","SubgroupImageMediaBlockIOINTEL","SubgroupShuffleINTEL","SubgroupVoteKHR","Tessellation","TessellationPointSize","TextureBlockMatchQCOM","TextureBoxFilterQCOM","TextureSampleWeightedQCOM","TileImageColorReadAccessEXT","TileImageDepthReadAccessEXT","TileImageStencilReadAccessEXT","TransformFeedback","USMStorageClassesINTEL","UniformAndStorageBuffer16BitAccess","UniformAndStorageBuffer8BitAccess","UniformBufferArrayDynamicIndexing","UniformBufferArrayNonUniformIndexing","UniformBufferArrayNonUniformIndexingEXT","UniformDecoration","UniformTexelBufferArrayDynamicIndexing","UniformTexelBufferArrayDynamicIndexingEXT","UniformTexelBufferArrayNonUniformIndexing","UniformTexelBufferArrayNonUniformIndexingEXT","UnstructuredLoopControlsINTEL","UnsupportedVersion","Validation","VariableLengthArrayINTEL","VariablePointers","VariablePointersStorageBuffer","Vector16","VectorAnyINTEL","VectorComputeINTEL","VulkanMemoryModel","VulkanMemoryModelDeviceScope","VulkanMemoryModelDeviceScopeKHR","VulkanMemoryModelKHR","WorkgroupMemoryExplicitLayout16BitAccessKHR","WorkgroupMemoryExplicitLayout8BitAccessKHR","WorkgroupMemoryExplicitLayoutKHR","Writer","WriterFlags","ZeroInitializeWorkgroupMemoryMode","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","all","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","binding_array_size","binding_map","bitand","bitand","bitand_assign","bitand_assign","bitor","bitor","bitor_assign","bitor_assign","bits","bits","bits","bits","bitxor","bitxor","bitxor_assign","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds_check_policies","capabilities","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","compare","complement","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","contains","debug_info","decorate_non_uniform_binding_array_access","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","difference","difference","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","empty","entry_point","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","extend","file_name","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_iter","from_iter","from_name","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_str","from_u32","get_capabilities_used","hash","hash","hash","hash","init","init","init","init","init","init","init","init","init","init","insert","insert","intersection","intersection","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_all","is_empty","is_empty","iter","iter","iter_names","iter_names","lang_version","new","not","not","partial_cmp","remove","remove","set","set","shader_stage","source_code","sub","sub","sub_assign","sub_assign","symmetric_difference","symmetric_difference","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","toggle","toggle","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","union","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","write","write_vec","zero_initialize_workgroup_memory","compact","SymbolTable","Typifier","adapt_into_using","adapt_into_using","add","add_root","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","components_from","components_from","default","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","get","grow","index","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","invalidate","lookup","new","pop_scope","push_scope","register_type","reset","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","wgsl","Frontend","ParseError","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","emit_to_stderr","emit_to_stderr_with_path","emit_to_string","emit_to_string_with_path","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","labels","location","message","new","parse","parse_str","source","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","wgsl","RESERVED","Alignment","ArrayLength","ArrayLengthDynamic","Atomic","AutomaticConversionFloatToInt","AutomaticConversionLossy","BoundsCheckPolicies","BoundsCheckPolicy","Call","Constant","ConstantEvaluator","ConstantEvaluatorError","Derivative","DivisionByZero","Dynamic","EIGHT","Emitter","EntryPoint","EntryPointArgument","EntryPointIndex","EntryPointLocal","ExpressionConstnessTracker","FOUR","Function","FunctionArg","FunctionArgument","FunctionArgumentNotFound","FunctionLocal","FunctionNotDefined","FunctionReturnsVoid","GlobalCtx","GlobalVariable","GlobalVariable","Handle","ImageExpression","IncompatibleOperands","IndexableLength","IndexableLengthError","InvalidAccess","InvalidAccessBase","InvalidAccessIndex","InvalidAccessIndexTy","InvalidArrayElementType","InvalidArrayLength","InvalidArrayLengthArg","InvalidBinaryOpArgs","InvalidCastArg","InvalidClamp","InvalidImage","InvalidMathArg","InvalidMathArgCount","InvalidPointer","InvalidScalar","InvalidStructMemberType","InvalidSubAccess","InvalidUnaryOpArg","InvalidVector","Known","LayoutError","LayoutErrorInner","Layouter","Literal","Load","LocalVariable","MIN_UNIFORM","MissingSpecialType","NameKey","Namer","NonPowerOfTwoWidth","NotImplemented","ONE","OutOfBoundsIndex","Overflow","POINTER_SPAN","RayQueryExpression","ReadZeroSkipWrite","RemainderByZero","ResolveContext","ResolveError","Restrict","SIXTEEN","ShiftedMoreThan32Bits","SplatScalarOnly","StructMember","SubexpressionsAreNotConstant","SwizzleOutOfBounds","SwizzleVectorOnly","TWO","Type","TypeLayout","TypeNotConstructible","TypeNotIndexable","TypeResolution","Unchecked","Value","WorkGroupUniformLoadResult","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","alignment","arguments","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","binding_array","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer","call","call_or","cast","cast_array","choose_policy","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","compare","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","const_expressions","constants","constants","contains","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","ensure_block_returns","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","finish","flatten_compose","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_glsl_function","for_glsl_module","for_wgsl_function","for_wgsl_module","force_non_const","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_arena","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_width","functions","global_vars","handle","hash","hash","hash","hash","hash","image_load","image_store","index","index","index","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","inner_with","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_aligned","is_const","is_running","local_vars","mul","mul","new","new","partial_cmp","reset","resolve","round_up","size","source","special_types","start","to_ctx","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_stride","to_string","to_string","to_string","to_string","to_string","to_string","to_wgsl","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_eval_and_append","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","types","types","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","with_locals","from","to","to_type","to_type","value","expr","expr","index","indexed","indexed","name","ty","BoundsCheckPolicies","BoundsCheckPolicy","Dynamic","Expression","GuardedIndex","IndexableLength","IndexableLengthError","InvalidArrayLength","Known","Known","ReadZeroSkipWrite","Restrict","TypeNotIndexable","Unchecked","access_needs_check","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","binding_array","borrow","borrow_mut","buffer","clone","clone_into","components_from","deref","deref_mut","downcast","drop","find_checked_indexes","fmt","from","from_angle","from_stimulus","image_load","image_store","index","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","ARGUMENT","Alignment","Argument","Argument","ArgumentCount","ArgumentType","ArrayStride","BINDINGS","BLOCKS","BindingArrayBaseTypeNotStruct","BindingCollision","BindingCollision","BreakOutsideOfLoopOrSwitch","CLIP_DISTANCE","COMPUTE","CONSTANTS","CONSTRUCTIBLE","CONTROL_FLOW_UNIFORMITY","COPY","CUBE_ARRAY_TEXTURES","CULL_DISTANCE","CallError","Capabilities","ComparisonSamplingMismatch","ComponentCount","ComponentType","Compose","Compose","ComposeError","Conflict","ConflictingCaseType","ConflictingSwitchCase","ConstExpression","ConstExpressionError","Constant","ConstantError","ContinueOutsideOfLoop","Corrupted","DATA","DERIVATIVE","DUAL_SOURCE_BLENDING","Disalignment","DoesntExist","DuplicateBuiltIn","EARLY_DEPTH_TEST","EXPRESSIONS","EmptyStruct","EntryPoint","EntryPointError","ExpectedBindingArrayType","ExpectedGlobalOrArgument","ExpectedGlobalVariable","ExpectedImageType","ExpectedSamplerType","Expression","ExpressionAlreadyInScope","ExpressionError","ExpressionInfo","ExpressionMismatch","FLOAT64","FRAGMENT","ForbiddenStageOperations","Function","Function","FunctionArgumentDoesntExist","FunctionError","FunctionInfo","GlobalUse","GlobalVariable","GlobalVariableError","HOST_SHAREABLE","IMPLICIT_LEVEL","IO_SHAREABLE","IndexMustBeConstant","IndexOutOfBounds","IndexableLength","Infinity","InitializerNotAllowed","InitializerType","InitializerType","InstructionsAfterReturn","InvalidAccelerationStructure","InvalidArgumentPointerSpace","InvalidArgumentType","InvalidArgumentType","InvalidArrayBaseType","InvalidArrayStride","InvalidArrayType","InvalidAtomic","InvalidAtomicResultType","InvalidAtomicWidth","InvalidAttributeInStage","InvalidBaseType","InvalidBinaryOperandTypes","InvalidBinding","InvalidBooleanVector","InvalidBuiltInStage","InvalidBuiltInType","InvalidCall","InvalidCastArgument","InvalidData","InvalidDepthReference","InvalidDepthSampleLevel","InvalidDerivative","InvalidDynamicArray","InvalidFloatArgument","InvalidGatherComponent","InvalidGatherDimension","InvalidGatherLevel","InvalidGlobalUsage","InvalidHandle","InvalidIfType","InvalidImageArrayIndex","InvalidImageArrayIndexType","InvalidImageClass","InvalidImageCoordinateType","InvalidImageOtherIndex","InvalidImageOtherIndexType","InvalidImageStore","InvalidIndexType","InvalidInputAttributeInStage","InvalidIntegerInterpolation","InvalidInterpolation","InvalidLocationAttributeCombination","InvalidLocationsWhileDualSourceBlending","InvalidPointerBase","InvalidPointerToUnsized","InvalidPointerType","InvalidRayDescriptor","InvalidRayQueryExpression","InvalidRayQueryType","InvalidRayQueryType","InvalidReturnSpot","InvalidReturnType","InvalidSampleLevelBiasType","InvalidSampleLevelExactType","InvalidSampleLevelGradientType","InvalidSampleOffset","InvalidSelectTypes","InvalidSplatType","InvalidSplatType","InvalidStorePointer","InvalidStoreTypes","InvalidStoreValue","InvalidSwitchType","InvalidSwizzleComponent","InvalidType","InvalidType","InvalidType","InvalidType","InvalidUnaryOperandType","InvalidUsage","InvalidVectorType","InvalidWorkGroupUniformLoadResultType","LastCaseFallTrough","Layouter","Literal","Literal","LiteralError","LocalVariable","LocalVariableError","MULTISAMPLED_SHADING","MULTIVIEW","MatrixElementNotFloat","MemberMissingBinding","MemberOffset","MemberOffsetAfterStruct","MemberOutOfBounds","MemberOverlap","MissingBinding","MissingCapabilities","MissingCapability","MissingDefaultCase","MissingInterpolation","MissingTypeFlags","MissingVertexOutputPosition","ModuleInfo","MoreThanOnePushConstantUsed","MultipleDefaultCases","NaN","NegativeIndex","NonConst","NonConstInitializer","NonConstructibleReturnType","NonConstructibleType","NonHostShareable","NonUniformControlFlow","NonUniformWorkgroupUniformLoad","NotIOShareableType","NotInScope","OutOfRangeWorkgroupSize","PRIMITIVE_INDEX","PUSH_CONSTANT","PipelineInputRegularFunction","PipelineOutputRegularFunction","QUERY","RAY_QUERY","READ","Result","ResultAlreadyInScope","ResultValue","SAMPLED_TEXTURE_AND_STORAGE_BUFFER_ARRAY_NON_UNIFORM_INDEXING","SAMPLER_NON_UNIFORM_INDEXING","SIZED","STORAGE_TEXTURE_16BIT_NORM_FORMATS","STRUCT_LAYOUTS","ShaderStages","StorageAddressSpaceWriteOnlyNotSupported","StructSpan","Type","Type","Type","Type","TypeError","TypeFlags","UNIFORM_BUFFER_AND_STORAGE_TEXTURE_ARRAY_NON_UNIFORM_INDEXING","UnexpectedEarlyDepthTest","UnexpectedWorkgroupSize","Uniformity","UniformityRequirements","UnsizedMember","UnsupportedCapability","UnsupportedCapability","UnsupportedSpecializedArrayLength","VERTEX","ValidationError","ValidationFlags","Validator","VaryingError","WORK_GROUP_BARRIER","WRITE","Width","Width","WidthError","WorkgroupUniformLoadExpressionMismatch","WorkgroupUniformLoadInvalidPointer","WrongArgumentCount","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","all","all","all","all","all","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","available_stages","bitand","bitand","bitand","bitand","bitand","bitand","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitor","bitor","bitor","bitor","bitor","bitor","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_literal_value","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","complement","complement","complement","complement","complement","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","contains","contains","contains","contains","contains","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","difference","difference","difference","difference","difference","difference","dominates_global_use","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dual_source_blending","empty","empty","empty","empty","empty","empty","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expression_count","extend","extend","extend","extend","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_name","from_name","from_name","from_name","from_name","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_entry_point","global_variable_count","index","index","index","index","index","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert","insert","insert","insert","insert","intersection","intersection","intersection","intersection","intersection","intersection","intersects","intersects","intersects","intersects","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_all","is_all","is_all","is_all","is_all","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","iter","iter","iter","iter","iter","iter","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","may_kill","new","non_uniform_result","not","not","not","not","not","not","ref_count","remove","remove","remove","remove","remove","remove","requirements","reset","sampling_set","set","set","set","set","set","set","source","source","source","source","source","source","source","source","source","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","toggle","toggle","toggle","toggle","toggle","toggle","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uniformity","uniformity","union","union","union","union","union","union","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","validate","validate_literal","index","index","required","required","seen","seen_expression","source","expected","given","index","alignment","alignment","alignment","expected","index","index","index","offset","offset","span","stride","location","location_mask","has_ref","image","sampler","error","function","handle","handle","index","index","name","name","name","name","pointer","source","source","space","value","required","seen","base","expected","index","index","offset","offset","size","space","span","stride","handle","handle","handle","handle","handle","name","name","name","name","name","source","source","source","source","source","source","stage","attribute","location","location","BLEND_CONSTANT","BindGroup","BlendFactorOnUnsupportedTarget","ColorAttachment","ColorState","ColorStateError","ComputePipeline","ComputePipelineDescriptor","ConservativeRasterizationNonFillPolygonMode","CreateComputePipelineError","CreateRenderPipelineError","CreateShaderModuleError","DepthStencilState","DepthStencilStateError","Device","Device","Device","FormatNotBlendable","FormatNotColor","FormatNotDepth","FormatNotRenderable","FormatNotRenderable","FormatNotStencil","FragmentState","Generation","Implicit","Implicit","ImplicitBindGroupCount","ImplicitLayoutError","IncompatibleFormat","Internal","Internal","InvalidGroupIndex","InvalidLayout","InvalidLayout","InvalidMinMaxBlendFactors","InvalidSampleCount","InvalidSampleCount","InvalidSampleCount","InvalidVertexAttributeOffset","InvalidWriteMask","MissingDownlevelFlags","MissingDownlevelFlags","MissingFeatures","MissingFeatures","MissingIds","Naga","Parsing","Pipeline","PipelineExpectsShaderToUseDualSourceBlending","PipelineFlags","ProgrammableStageDescriptor","ReflectionError","RenderPipeline","RenderPipelineDescriptor","STENCIL_REFERENCE","ShaderError","ShaderExpectsPipelineToUseDualSourceBlending","ShaderLocationClash","ShaderModule","ShaderModuleDescriptor","ShaderModuleSource","Stage","Stage","StripIndexFormatForNonStripTopology","TooManyVertexAttributes","TooManyVertexBuffers","UnalignedShader","UnalignedVertexStride","Validation","VertexBufferLayout","VertexState","VertexStep","VertexStrideTooLarge","WRITES_DEPTH","WRITES_STENCIL","Wgsl","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","array_stride","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info","as_info","as_info_mut","as_info_mut","as_info_mut","attributes","bitand","bitand_assign","bitor","bitor_assign","bits","bits","bitxor","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffers","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","components_into","contains","default","depth_stencil","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","difference","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","entry_point","eq","equivalent","equivalent","equivalent","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fragment","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits_retain","from_bits_retain","from_bits_truncate","from_iter","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","insert","intersection","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_all","is_empty","iter","iter_names","label","label","label","label","label","layout","layout","location","mode","module","multisample","multiview","not","primitive","remove","set","shader_bound_checks","source","source","source","source","source","source","stage","stage","stage","step_mode","stride","sub","sub_assign","symmetric_difference","targets","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","toggle","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","vertex","pipeline","shader","binding","error","error","factor","given","given","given","group","index","index","limit","limit","limit","location","offset","size","stage","stage","stride","strip_index_format","target","topology","bind","group","limit","AlreadyAcquired","ConfigureSurfaceError","Device","Device","Invalid","InvalidSurface","InvalidViewFormat","MissingDownlevelFlags","NotConfigured","PreviousOutputExists","StillReferenced","StuckGpu","SurfaceError","SurfaceOutput","TooLarge","UnsupportedAlphaMode","UnsupportedFormat","UnsupportedPresentMode","UnsupportedQueueFamily","UnsupportedUsage","ZeroArea","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","source","source","status","texture_id","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","available","available","available","height","max_texture_dimension_2d","requested","requested","requested","width","Registry","RegistryReport","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_into","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","element_size","eq","equivalent","equivalent","equivalent","fmt","fmt","force_replace","force_replace_with_error","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_empty","label_for_resource","num_allocated","num_error","num_kept_from_user","num_released_from_user","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","unregister_locked","upcast","upcast","Aborted","AccessError","AlreadyDestroyed","AlreadyMapped","AlreadyMapped","ArrayLayerCount","Aspects","Buffer","BufferAccessError","BufferAccessResult","BufferCopy","BufferDescriptor","BufferMapAsyncStatus","BufferMapCallback","BufferMapCallbackC","BufferMapOperation","ContextLost","CreateBufferError","CreateQuerySetError","CreateSamplerError","CreateTextureError","CreateTextureView","CreateTextureViewError","DestroyError","Destroyed","DestroyedBuffer","DestroyedTexture","Device","Device","Device","Device","Device","Dimension","Err","Error","Failed","FormatReinterpretation","HeightNotMultipleOf","Invalid","Invalid","Invalid","InvalidAlignment","InvalidAnisotropy","InvalidArrayLayerCount","InvalidAspect","InvalidCompressedDimension","InvalidCubeTextureViewSize","InvalidCubemapArrayTextureDepth","InvalidCubemapTextureDepth","InvalidDepthDimension","InvalidDimension","InvalidDimensionUsages","InvalidFilterModeWithAnisotropy","InvalidFormatUsages","InvalidLodMaxClamp","InvalidLodMinClamp","InvalidMipLevelCount","InvalidMultisampledFormat","InvalidMultisampledStorageBinding","InvalidMultisampledTextureViewDimension","InvalidRange","InvalidSampleCount","InvalidSampleCount","InvalidTexture","InvalidTextureViewDimension","InvalidUsage","InvalidUsage","InvalidUsageFlags","InvalidViewFormat","LimitExceeded","MagFilter","MapAborted","MapAlreadyPending","MapAlreadyPending","MaxBufferSize","MinFilter","MipLevelCount","MipmapFilter","MissingBufferUsage","MissingDownlevelFlags","MissingDownlevelFlags","MissingFeatures","MissingFeatures","MissingFeatures","MultisampledDepthOrArrayLayer","MultisampledNotRenderAttachment","NegativeRange","None","NotMapped","NotMultipleOfBlockHeight","NotMultipleOfBlockWidth","Ok","OutOfBoundsOverrun","OutOfBoundsUnderrun","OutOfMemory","QuerySet","QuerySetDescriptor","RenderPass","Resource","ResourceInfo","Sampler","SamplerDescriptor","SamplerFilterErrorType","StagingBuffer","Success","Surface","TYPE","Texture","TextureClearMode","TextureDescriptor","TextureDimensionError","TextureErrorDimension","TextureView","TextureViewDescriptor","TextureViewDestroyError","TextureViewNotRenderableReason","TooManyArrayLayers","TooManyMipLevels","TooManyObjects","TooManyQueries","UnalignedOffset","UnalignedRange","UnalignedRangeSize","UnalignedSize","Usage","UsageMismatch","WidthNotMultipleOf","X","Y","Z","Zero","ZeroArrayLayerCount","ZeroCount","ZeroMipLevelCount","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","address_modes","anisotropy_clamp","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_info","as_info","as_info","as_info","as_info","as_info","as_info","as_info_mut","as_info_mut","as_info_mut","as_info_mut","as_info_mut","as_info_mut","as_info_mut","border_color","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","callback","callback","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","compare","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","count","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dimension","dimension","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_c","from_rust","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","host","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_equal","is_unique","label","label","label","label","label","label","label","label","label","lod_max_clamp","lod_min_clamp","mag_filter","mapped_at_creation","min_filter","mip_level_count","mipmap_filter","range","ref_count","sample_count","size","size","source","source","source","source","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","usage","usage","user_data","view_formats","end","index","index","max","min","offset","range_size","start","maximum","requested","count","maximum","anisotropic_clamp","filter_mode","filter_type","lod_max_clamp","lod_min_clamp","maximum","requested","depth","depth","dim","requested","requested","requested","requested_aspect","texture","texture","texture_format","total","total","view","view","clear_view","clear_views","is_color","block_height","block_width","dim","format","format","format","format","given","height","height","limit","multiple","multiple","width","width","Storage","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","components_into","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","index","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","BadStorageFormat","Binding","BindingError","BindingLayoutSource","Derived","Filtering","FilteringError","Float","InconsistentlyDerivedType","Input","InputError","InputNotConsumed","Integer","Interface","InterfaceVar","InterpolationMismatch","InvalidModule","InvalidWorkgroupSize","Invisible","Missing","Missing","MissingBufferUsageError","MissingEntryPoint","MissingTextureUsageError","NumericType","Provided","SamplingMismatch","StageError","StageIo","TooManyVaryings","UnsupportedTextureStorageAccess","WrongAddressSpace","WrongBufferSize","WrongSamplerComparison","WrongTextureClass","WrongTextureViewDimension","WrongType","WrongType","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check_buffer_usage","check_stage","check_texture_format","check_texture_usage","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fragment_uses_dual_source_blending","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","new_derived","source","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","ty","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","vertex_attribute","binding","binding","binding","dim","is_array","shader","shader","current","current_total","error","error","limit","limit","location","location","sampler","texture","total","used","var","AABBs","ACCELERATION_STRUCTURE_SCRATCH","ALLOW_COMPACTION","ALLOW_UPDATE","AccelerationStructure","AccelerationStructureAABBs","AccelerationStructureBarrier","AccelerationStructureBuildFlags","AccelerationStructureBuildMode","AccelerationStructureBuildSizes","AccelerationStructureDescriptor","AccelerationStructureEntries","AccelerationStructureFormat","AccelerationStructureGeometryFlags","AccelerationStructureInstances","AccelerationStructureTriangleIndices","AccelerationStructureTriangleTransform","AccelerationStructureTriangles","AccelerationStructureUses","AcquiredSurfaceTexture","Adapter","Adapter","Alignments","Api","Attachment","AttachmentOps","BOTTOM_LEVEL_ACCELERATION_STRUCTURE_INPUT","BUILD_INPUT","BUILD_OUTPUT","BindGroup","BindGroupDescriptor","BindGroupEntry","BindGroupLayout","BindGroupLayoutDescriptor","BindGroupLayoutFlags","BottomLevel","Buffer","BufferBarrier","BufferBinding","BufferCopy","BufferDescriptor","BufferMapping","BufferTextureCopy","BufferUses","Build","BuildAccelerationStructureDescriptor","COLOR","COLOR_ATTACHMENT","COLOR_ATTACHMENT_BLEND","COLOR_TARGET","COMPLEX","COPY_DST","COPY_DST","COPY_DST","COPY_SRC","COPY_SRC","COPY_SRC","Capabilities","ColorAttachment","CommandBuffer","CommandEncoder","CommandEncoder","CommandEncoderDescriptor","Compilation","ComputePassDescriptor","ComputePassTimestampWrites","ComputePipeline","ComputePipelineDescriptor","CopyExtent","DEPTH","DEPTH_STENCIL","DEPTH_STENCIL_ATTACHMENT","DEPTH_STENCIL_READ","DEPTH_STENCIL_WRITE","DebugSource","DepthStencilAttachment","Device","Device","Device","Device","Device","DeviceError","DropGuard","EXCLUSIVE","EXCLUSIVE","EntryPoint","ExposedAdapter","FIRST_VERTEX_INSTANCE","Fence","FenceValue","FormatAspects","GetAccelerationStructureBuildSizesDescriptor","INCLUSIVE","INCLUSIVE","INDEX","INDIRECT","Instance","Instance","InstanceDescriptor","InstanceError","Instances","LOAD","LOW_MEMORY","Label","Linkage","Lost","Lost","MAP_READ","MAP_WRITE","MAX_ANISOTROPY","MAX_BIND_GROUPS","MAX_COLOR_ATTACHMENTS","MAX_CONCURRENT_SHADER_STAGES","MAX_MIP_LEVELS","MAX_VERTEX_BUFFERS","MULTISAMPLE_RESOLVE","MULTISAMPLE_X16","MULTISAMPLE_X2","MULTISAMPLE_X4","MULTISAMPLE_X8","MemoryFlags","MemoryRange","NO_DUPLICATE_ANY_HIT_INVOCATION","NUM_WORK_GROUPS","Naga","NagaShader","None","OPAQUE","ORDERED","ORDERED","OpenDevice","Other","OutOfMemory","Outdated","PARTIALLY_BOUND","PLANE_0","PLANE_1","PLANE_2","PREFER_COHERENT","PREFER_FAST_BUILD","PREFER_FAST_TRACE","PRESENT","PipelineError","PipelineLayout","PipelineLayoutDescriptor","PipelineLayoutFlags","ProgrammableStage","QUERY_RESOLVE","QUERY_SIZE","QuerySet","Queue","Queue","RESOURCE","Rect","RenderPassDescriptor","RenderPassTimestampWrites","RenderPipeline","RenderPipelineDescriptor","ResourceCreationFailed","SAMPLED","SAMPLED_LINEAR","SAMPLED_MINMAX","SHADER_INPUT","STENCIL","STORAGE","STORAGE_ATOMIC","STORAGE_READ","STORAGE_READ","STORAGE_READ_WRITE","STORAGE_READ_WRITE","STORAGE_READ_WRITE","STORE","Sampler","SamplerDescriptor","ShaderError","ShaderInput","ShaderModule","ShaderModuleDescriptor","Some","SpirV","Surface","Surface","SurfaceCapabilities","SurfaceConfiguration","SurfaceError","SurfaceTexture","TOP_LEVEL_ACCELERATION_STRUCTURE_INPUT","TRANSIENT","Texture","TextureBarrier","TextureBinding","TextureCopy","TextureCopyBase","TextureDescriptor","TextureFormatCapabilities","TextureUses","TextureView","TextureViewDescriptor","TopLevel","Triangles","UNIFORM","UNINITIALIZED","UNKNOWN","Update","VALIDATION_CANARY","VERTEX","ValidationCanary","VertexBufferLayout","acceleration_structure_size","acceleration_structures","acquire_texture","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapter","address_modes","alignments","all","all","all","all","all","all","all","all","all","all","all","anisotropy_clamp","array_layer","array_layer_count","array_stride","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","aspect","at_mip_level","attributes","auxil","begin_compute_pass","begin_debug_marker","begin_encoding","begin_query","begin_render_pass","beginning_of_pass_write_index","beginning_of_pass_write_index","bind_group_layouts","binding","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitand_assign","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bitor_assign","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bits","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","bitxor_assign","border_color","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer","buffer","buffer","buffer","buffer","buffer","buffer_copy_offset","buffer_copy_pitch","buffer_layout","buffers","build_acceleration_structures","build_scratch_size","capabilities","clamp_size_to_virtual","clamp_size_to_virtual","clear_buffer","clear_value","clear_value","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color_attachments","color_targets","compare","complement","complement","complement","complement","complement","complement","complement","complement","complement","complement","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","components_into","composite_alpha_mode","composite_alpha_modes","configure","contains","contains","contains","contains","contains","contains","contains","contains","contains","contains","contains","contains_invalid_bits","contains_invalid_bits","copy_buffer_to_buffer","copy_buffer_to_texture","copy_extent","copy_query_results","copy_texture_to_buffer","copy_texture_to_texture","count","count","count","count","create_acceleration_structure","create_bind_group","create_bind_group_layout","create_buffer","create_command_encoder","create_compute_pipeline","create_fence","create_pipeline_layout","create_query_set","create_render_pipeline","create_sampler","create_shader_module","create_surface","create_texture","create_texture_view","current_extent","debug_source","default","depth","depth_ops","depth_stencil","depth_stencil_attachment","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","destination_acceleration_structure","destroy_acceleration_structure","destroy_bind_group","destroy_bind_group_layout","destroy_buffer","destroy_command_encoder","destroy_compute_pipeline","destroy_fence","destroy_pipeline_layout","destroy_query_set","destroy_render_pipeline","destroy_sampler","destroy_shader_module","destroy_surface","destroy_texture","destroy_texture_view","device","difference","difference","difference","difference","difference","difference","difference","difference","difference","difference","difference","dimension","dimension","discard_encoding","discard_texture","dispatch","dispatch_indirect","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downlevel","draw","draw_indexed","draw_indexed_indirect","draw_indexed_indirect_count","draw_indirect","draw_indirect_count","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dst_base","dst_offset","dx12_shader_compiler","empty","empty","empty","empty","empty","empty","empty","empty","empty","empty","empty","empty","end","end_compute_pass","end_debug_marker","end_encoding","end_of_pass_write_index","end_of_pass_write_index","end_query","end_render_pass","entries","entries","entries","entries","entry_point","enumerate_adapters","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","exit","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extent","extent","features","file_name","first_vertex","flags","flags","flags","flags","flags","flags","flags","flush_mapped_ranges","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format","format","format","format","formats","fragment_stage","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_retain","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_bits_truncate","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_name","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_acceleration_structure_build_sizes","get_acceleration_structure_device_address","get_and_reset","get_fence_value","get_presentation_timestamp","get_timestamp_period","gles","gles_minor_version","h","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","height","indices","info","info","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert_debug_marker","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersection","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invalidate_mapped_ranges","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_all","is_coherent","is_cube_compatible","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_one","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","iter_names","label","label","label","label","label","label","label","label","label","label","label","label","label","label","layout","layout","layout","limits","lod_clamp","mag_filter","map","map_buffer","map_extent_to_copy_size","max_copy_size","maximum_frame_latency","maximum_frame_latency","memory_flags","memory_flags","min","min_filter","mip_level","mip_level_count","mipmap_filter","mode","module","module","multisample","multiview","multiview","name","new","not","not","not","not","not","not","not","not","not","not","not","occlusion_query_set","offset","offset","offset","offset","offset","open","ops","origin","place_acceleration_structure_barrier","present","present_mode","present_modes","primitive","ptr","push_constant_ranges","query_set","query_set","queue","queue","range","range","remove","remove","remove","remove","remove","remove","remove","remove","remove","remove","remove","reset_all","reset_queries","resolve_target","resource_index","runtime_checks","sample_count","sample_count","samplers","scratch_buffer","scratch_buffer_offset","set","set","set","set","set","set","set","set","set","set","set","set_bind_group","set_blend_constants","set_compute_pipeline","set_index_buffer","set_push_constants","set_render_pipeline","set_scissor_rect","set_stencil_reference","set_vertex_buffer","set_viewport","size","size","size","size","size","size","size","source","source","source","source","source_acceleration_structure","source_code","src_base","src_offset","stage","start","start_capture","stencil_ops","step_mode","stop_capture","stride","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","submit","suboptimal","surface_capabilities","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","symmetric_difference","target","target","texture","texture","texture_base","texture_format_capabilities","textures","timestamp_writes","timestamp_writes","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_smolstr","to_string","to_string","to_string","to_string","to_string","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","toggle","transform","transition_buffers","transition_textures","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unconfigure","union","union","union","union","union","union","union","union","union","union","union","unmap_buffer","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update_scratch_size","usage","usage","usage","usage","usage","usage","usage","usage","usage","usage","vertex_buffer","vertex_buffers","vertex_count","vertex_format","vertex_stage","vertex_stride","view","view","view_formats","view_formats","vulkan","w","wait","width","write_timestamp","x","y","MAX_I32_BINDING_SIZE","db","map_naga_stage","amd","apple","arm","broadcom","imgtec","intel","mesa","nvidia","qualcomm","VENDOR","VENDOR","VENDOR","VENDOR","VENDOR","DEVICE_KABY_LAKE_MASK","DEVICE_SKY_LAKE_MASK","VENDOR","VENDOR","VENDOR","VENDOR","Api","Context","Encoder","Resource","acquire_texture","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin_compute_pass","begin_debug_marker","begin_encoding","begin_query","begin_render_pass","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_acceleration_structures","clear_buffer","clone","clone_into","components_from","components_from","components_from","components_from","configure","copy_buffer_to_buffer","copy_buffer_to_texture","copy_query_results","copy_texture_to_buffer","copy_texture_to_texture","create_acceleration_structure","create_bind_group","create_bind_group_layout","create_buffer","create_command_encoder","create_compute_pipeline","create_fence","create_instance_from_hal","create_pipeline_layout","create_query_set","create_render_pipeline","create_sampler","create_shader_module","create_surface","create_texture","create_texture_view","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","destroy_acceleration_structure","destroy_bind_group","destroy_bind_group_layout","destroy_buffer","destroy_command_encoder","destroy_compute_pipeline","destroy_fence","destroy_pipeline_layout","destroy_query_set","destroy_render_pipeline","destroy_sampler","destroy_shader_module","destroy_surface","destroy_texture","destroy_texture_view","discard_encoding","discard_texture","dispatch","dispatch_indirect","downcast","downcast","downcast","downcast","draw","draw_indexed","draw_indexed_indirect","draw_indexed_indirect_count","draw_indirect","draw_indirect_count","drop","drop","drop","drop","end_compute_pass","end_debug_marker","end_encoding","end_query","end_render_pass","enumerate_adapters","exit","flush_mapped_ranges","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_acceleration_structure_build_sizes","get_acceleration_structure_device_address","get_fence_value","get_presentation_timestamp","get_surface","get_timestamp_period","hub","init","init","init","init","init","insert_debug_marker","instance_as_hal","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invalidate_mapped_ranges","map_buffer","open","place_acceleration_structure_barrier","present","reset_all","reset_queries","set_bind_group","set_blend_constants","set_compute_pipeline","set_index_buffer","set_push_constants","set_render_pipeline","set_scissor_rect","set_stencil_reference","set_vertex_buffer","set_viewport","start_capture","stop_capture","submit","surface_capabilities","texture_format_capabilities","to_owned","transition_buffers","transition_textures","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","unconfigure","unmap_buffer","upcast","upcast","upcast","upcast","wait","write_timestamp","Adapter","AdapterContext","AdapterContextLock","Api","BindGroup","BindGroupLayout","Buffer","CommandBuffer","CommandEncoder","ComputePipeline","DefaultRenderbuffer","Device","Fence","PipelineLayout","QuerySet","Queue","RenderPipeline","Renderbuffer","Sampler","ShaderModule","Texture","Texture","TextureFormatDesc","TextureInner","TextureView","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapter_context","array_layer_count","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin_compute_pass","begin_debug_marker","begin_encoding","begin_query","begin_render_pass","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_acceleration_structures","clear_buffer","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","context","copy_buffer_to_buffer","copy_buffer_to_texture","copy_query_results","copy_size","copy_texture_to_buffer","copy_texture_to_texture","create_acceleration_structure","create_bind_group","create_bind_group_layout","create_buffer","create_command_encoder","create_compute_pipeline","create_fence","create_instance_from_hal","create_pipeline_layout","create_query_set","create_render_pipeline","create_sampler","create_shader_module","create_texture","create_texture_view","data_type","default","default_framebuffer","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","destroy_acceleration_structure","destroy_bind_group","destroy_bind_group_layout","destroy_buffer","destroy_command_encoder","destroy_compute_pipeline","destroy_fence","destroy_pipeline_layout","destroy_query_set","destroy_render_pipeline","destroy_sampler","destroy_shader_module","destroy_texture","destroy_texture_view","discard_encoding","dispatch","dispatch_indirect","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw_indexed","draw_indexed_indirect","draw_indexed_indirect_count","draw_indirect","draw_indirect_count","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_guard","egl_instance","egl_version","end_compute_pass","end_debug_marker","end_encoding","end_query","end_render_pass","exit","external","flush_mapped_ranges","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format_desc","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_acceleration_structure_build_sizes","get_acceleration_structure_device_address","get_fence_value","get_presentation_timestamp","get_surface","get_timestamp_period","get_without_egl_lock","hub","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner","insert_debug_marker","instance_as_hal","internal","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invalidate_mapped_ranges","is_owned","lock","map_buffer","mip_level_count","new_external","open","place_acceleration_structure_barrier","present","raw_context","raw_display","reset_all","reset_queries","set_bind_group","set_blend_constants","set_compute_pipeline","set_index_buffer","set_push_constants","set_render_pipeline","set_scissor_rect","set_stencil_reference","set_vertex_buffer","set_viewport","start_capture","stop_capture","submit","surface_capabilities","texture_format_capabilities","texture_from_raw","texture_from_raw_renderbuffer","to_owned","to_owned","to_owned","to_owned","to_owned","transition_buffers","transition_textures","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unmap_buffer","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","wait","write_timestamp","raw","raw","target","AccelerationStructure","Adapter","Api","BindGroup","BindGroupLayout","Buffer","CommandBuffer","CommandEncoder","ComputePipeline","DebugUtilsCreateInfo","DebugUtilsMessengerUserData","Device","EMPTY_RESOLVE_ATTACHMENT_LISTS","FORCE_FILL_BUFFER_WITH_SIZE_GREATER_4096_ALIGNED_OFFSET_16","Fence","FencePool","Instance","InstanceShared","Intermediate","PipelineLayout","QuerySet","Queue","Raw","RenderPipeline","SEPARATE_ENTRY_POINTS","Sampler","ShaderModule","Surface","SurfaceTexture","Texture","TextureView","TimelineSemaphore","Workarounds","acquire_texture","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","all","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin_compute_pass","begin_debug_marker","begin_encoding","begin_query","begin_render_pass","bitand","bitand_assign","bitor","bitor_assign","bits","bits","bitxor","bitxor_assign","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer_from_raw","build_acceleration_structures","clear_buffer","clone","clone","clone_into","clone_into","complement","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","configure","contains","copy_buffer_to_buffer","copy_buffer_to_texture","copy_query_results","copy_texture_to_buffer","copy_texture_to_texture","create_acceleration_structure","create_bind_group","create_bind_group_layout","create_buffer","create_command_encoder","create_compute_pipeline","create_fence","create_instance_from_hal","create_pipeline_layout","create_query_set","create_render_pipeline","create_sampler","create_shader_module","create_surface","create_texture","create_texture_view","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","desired_extensions","destroy_acceleration_structure","destroy_bind_group","destroy_bind_group_layout","destroy_buffer","destroy_command_encoder","destroy_compute_pipeline","destroy_fence","destroy_pipeline_layout","destroy_query_set","destroy_render_pipeline","destroy_sampler","destroy_shader_module","destroy_surface","destroy_texture","destroy_texture_view","device_from_raw","difference","discard_encoding","discard_texture","dispatch","dispatch_indirect","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw_indexed","draw_indexed_indirect","draw_indexed_indirect_count","draw_indirect","draw_indirect_count","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","enabled_device_extensions","end_compute_pass","end_debug_marker","end_encoding","end_query","end_render_pass","entry","enumerate_adapters","eq","equivalent","equivalent","equivalent","exit","expose_adapter","extend","extensions","flush_mapped_ranges","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_bits","from_bits_retain","from_bits_retain","from_bits_truncate","from_iter","from_name","from_raw","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_acceleration_structure_build_sizes","get_acceleration_structure_device_address","get_fence_value","get_presentation_timestamp","get_surface","get_timestamp_period","hash","hub","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert_debug_marker","instance_api_version","instance_as_hal","intersection","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invalidate_mapped_ranges","is_all","is_empty","iter","iter_names","map_buffer","not","open","physical_device_capabilities","physical_device_features","place_acceleration_structure_barrier","present","queue_family_index","queue_index","raw_device","raw_handle","raw_instance","raw_physical_device","raw_physical_device","raw_queue","remove","required_device_extensions","reset_all","reset_queries","set","set_bind_group","set_blend_constants","set_compute_pipeline","set_index_buffer","set_push_constants","set_render_pipeline","set_scissor_rect","set_stencil_reference","set_vertex_buffer","set_viewport","shared_instance","shared_instance","shared_instance","start_capture","stop_capture","sub","sub_assign","submit","surface_capabilities","symmetric_difference","texture_format_capabilities","texture_from_raw","to_owned","to_owned","toggle","transition_buffers","transition_textures","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unconfigure","union","unmap_buffer","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","wait","write_timestamp","active","free","last_completed","naga_shader","runtime_checks","Android","AndroidDisplayHandle","AndroidNdk","AndroidNdkWindowHandle","AppKit","AppKit","AppKitDisplayHandle","AppKitWindowHandle","DisplayHandle","Drm","Drm","DrmDisplayHandle","DrmWindowHandle","Gbm","Gbm","GbmDisplayHandle","GbmWindowHandle","Haiku","Haiku","HaikuDisplayHandle","HaikuWindowHandle","HandleError","HasDisplayHandle","HasRawDisplayHandle","HasRawWindowHandle","HasWindowHandle","NotSupported","Orbital","Orbital","OrbitalDisplayHandle","OrbitalWindowHandle","RawDisplayHandle","RawWindowHandle","UiKit","UiKit","UiKitDisplayHandle","UiKitWindowHandle","Unavailable","Wayland","Wayland","WaylandDisplayHandle","WaylandWindowHandle","Web","Web","WebCanvas","WebCanvasWindowHandle","WebDisplayHandle","WebOffscreenCanvas","WebOffscreenCanvasWindowHandle","WebWindowHandle","Win32","Win32WindowHandle","WinRt","WinRtWindowHandle","WindowHandle","Windows","WindowsDisplayHandle","Xcb","Xcb","XcbDisplayHandle","XcbWindowHandle","Xlib","Xlib","XlibDisplayHandle","XlibWindowHandle","a_native_window","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_raw","as_raw","as_ref","as_ref","b_direct_window","b_window","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_raw","borrow_raw","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","connection","core_window","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","display","display","display_handle","display_handle","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fd","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gbm_device","gbm_surface","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hinstance","hwnd","id","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","ns_view","obj","obj","plane","raw_display_handle","raw_display_handle","raw_window_handle","raw_window_handle","screen","screen","surface","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","ui_view","ui_view_controller","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","visual_id","visual_id","window","window","window","window_handle","window_handle","BufferInitDescriptor","DeviceExt","DispatchIndirectArgs","DownloadBuffer","DrawIndexedIndirectArgs","DrawIndirectArgs","LayerMajor","MipMajor","RenderEncoder","StagingBelt","TextureDataOrder","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","align_to","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_bytes","as_bytes","as_bytes","backend_bits_from_env","base_vertex","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contents","create_buffer_init","create_texture_with_data","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw_indexed","draw_indexed_indirect","draw_indirect","drop","drop","drop","drop","drop","drop","drop","dx12_shader_compiler_from_env","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","finish","first_index","first_instance","first_instance","first_vertex","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gles_minor_version_from_env","hash","hash","index_count","init","init","init","init","init","init","init","initialize_adapter_from_env","initialize_adapter_from_env_or_default","instance_count","instance_count","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","label","make_spirv_raw","new","parse_backends_from_comma_list","power_preference_from_env","read_buffer","recall","set_bind_group","set_index_buffer","set_pipeline","set_push_constants","set_vertex_buffer","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","usage","vertex_count","write_buffer","x","y","z","Appearance","Circle","Handle","HandleShape","Rail","Rectangle","Slider","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","border_color","border_radius","border_width","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","colors","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","dragging","draw","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","handle","hovered","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","mouse_interaction","new","rail","shape","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","update","width","border_radius","radius","width","Space","Appearance","Handle","Style","StyleSheet","Svg","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","data","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_memory","from_path","from_stimulus","from_stimulus","hash","hovered","id","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Absolute","Advanced","Appearance","Basic","LineHeight","Relative","Shaping","State","Style","StyleSheet","Text","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","default","default","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","to_absolute","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","Action","Appearance","Backspace","Click","Content","Delete","DocumentEnd","DocumentStart","Down","Drag","Edit","Edit","End","Enter","Home","Insert","Left","Motion","Move","PageDown","PageUp","Paste","Right","Scroll","Select","SelectLine","SelectWord","Style","StyleSheet","TextEditor","Up","WordLeft","WordRight","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","cursor_position","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","direction","disabled","disabled_color","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","focused","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hovered","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_edit","line","line_count","lines","new","perform","placeholder_color","selection","selection_color","text","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","value_color","widen","with_text","lines","Appearance","Cursor","DEFAULT_PADDING","Icon","Id","Left","Right","Side","State","Style","StyleSheet","TextInput","Value","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","code_point","components_from","components_from","components_from","components_from","components_from","components_from","components_from","cursor","cursor","default","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","disabled","disabled_color","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","focus","focus","focus","focused","focused","font","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hovered","icon_color","init","init","init","init","init","init","init","insert","insert_many","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_focused","is_focused","layout","len","mouse_interaction","move_cursor_to","move_cursor_to","move_cursor_to","move_cursor_to_end","move_cursor_to_end","move_cursor_to_end","move_cursor_to_front","move_cursor_to_front","move_cursor_to_front","new","new","new","next_end_of_word","placeholder_color","previous_start_of_word","remove","remove_many","secure","select","select_all","select_all","select_all","selection","selection_color","side","size","spacing","state","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unfocus","unfocus","unique","until","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","value_color","Cursor","Index","Selection","State","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","end","start","Application","Box","Button","Checkbox","Color","Container","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Danger","Danger","Dark","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Destructive","Light","Menu","Palette","PaneGrid","PickList","Positive","Primary","Primary","Primary","ProgressBar","Radio","Rule","Scrollable","Secondary","Secondary","Slider","Success","Success","Svg","Text","Text","TextEditor","TextInput","Theme","Toggler","Transparent","background","danger","palette","primary","success","text","Background","Danger","EXTENDED_DARK","EXTENDED_LIGHT","Extended","Pair","Palette","Primary","Secondary","Success","background","background","base","base","base","base","base","color","danger","danger","is_dark","primary","primary","secondary","strong","strong","strong","strong","strong","success","success","text","text","weak","weak","weak","weak","weak","Appearance","Style","StyleSheet","Toggler","active","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","background","background_border","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","fmt","foreground","foreground_border","from","from_angle","from_stimulus","hovered","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Bottom","FollowCursor","Left","Position","Right","Tooltip","Top","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Appearance","Circle","Handle","HandleShape","Rectangle","State","Style","StyleSheet","VerticalSlider","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","border_color","border_width","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","dragging","draw","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","handle","hovered","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","mouse_interaction","new","rail","shape","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","update","border_radius","radius","width","Action","AlwaysOnBottom","AlwaysOnTop","At","Centered","ChangeIcon","ChangeLevel","ChangeMode","Close","CloseRequested","Closed","Critical","Default","Drag","Event","FetchId","FetchMaximized","FetchMinimized","FetchMode","FetchSize","FileDropped","FileHovered","FilesHoveredLeft","Focused","Fullscreen","GainFocus","Hidden","Icon","Icon","Id","Informational","Level","MAIN","Maximize","Minimize","Mode","Move","Moved","NextFrame","Normal","Opened","Position","RedrawRequest","RedrawRequested","RequestUserAttention","Resize","Resized","Screenshot","Screenshot","Settings","Spawn","Specific","ToggleDecorations","ToggleMaximize","Unfocused","UserAttention","Windowed","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bytes","change_icon","change_level","change_mode","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","close","cmp","cmp","compare","compare","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","crop","decorations","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drag","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","exit_on_close_request","fetch_id","fetch_maximized","fetch_minimized","fetch_mode","fetch_size","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","frames","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gain_focus","hash","icon","icon","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_raw","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","level","map","max_size","maximize","min_size","minimize","move_to","new","partial_cmp","partial_cmp","platform_specific","position","request_user_attention","resizable","resize","screenshot","screenshot","settings","size","size","spawn","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","toggle_decorations","toggle_maximize","transparent","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unique","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","visible","height","position","size","width","x","y","Error","Icon","ImageError","InvalidError","OsError","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","downcast","drop","fmt","fmt","from","from","from","from","from_angle","from_file","from_file_data","from_rgba","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","source","to_smolstr","to_string","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","CropError","OutOfBounds","Screenshot","Zero","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","bytes","components_from","deref","deref_mut","downcast","drop","fmt","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","size","to_smolstr","to_string","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","PlatformSpecific","Settings","adapt_into_using","application_id","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","decorations","default","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","exit_on_close_request","fmt","from","from_angle","from_stimulus","icon","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","level","max_size","min_size","platform_specific","position","resizable","size","to_owned","transparent","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","visible"],"q":[[0,"iced"],[1199,"iced::advanced"],[1406,"iced::advanced::image"],[1504,"iced::advanced::image::Data"],[1507,"iced::advanced::layout"],[1615,"iced::advanced::layout::flex"],[1652,"iced::advanced::mouse"],[1724,"iced::advanced::mouse::Event"],[1726,"iced::advanced::mouse::ScrollDelta"],[1730,"iced::advanced::mouse::click"],[1771,"iced::advanced::overlay"],[1868,"iced::advanced::renderer"],[2004,"iced::advanced::subscription"],[2009,"iced::advanced::svg"],[2057,"iced::advanced::text"],[2205,"iced::advanced::text::editor"],[2327,"iced::advanced::text::editor::Action"],[2328,"iced::advanced::text::highlighter"],[2420,"iced::advanced::widget"],[2583,"iced::advanced::widget::operation"],[2643,"iced::advanced::widget::operation::focusable"],[2696,"iced::advanced::widget::operation::scrollable"],[2707,"iced::advanced::widget::operation::text_input"],[2716,"iced::advanced::widget::text"],[2731,"iced::advanced::widget::tree"],[2821,"iced::alignment"],[2915,"iced::application"],[2972,"iced::border"],[3018,"iced::clipboard"],[3020,"iced::command"],[3022,"iced::event"],[3118,"iced::executor"],[3123,"iced::font"],[3369,"iced::gradient"],[3455,"iced::keyboard"],[3686,"iced::keyboard::Event"],[3693,"iced::keyboard::key"],[4048,"iced::mouse"],[4281,"iced::mouse::Event"],[4283,"iced::mouse::ScrollDelta"],[4287,"iced::multi_window"],[4306,"iced::overlay"],[4308,"iced::overlay::menu"],[4319,"iced::settings"],[4365,"iced::subscription"],[4370,"iced::system"],[4418,"iced::theme"],[5136,"iced::theme::palette"],[5440,"iced::time"],[5613,"iced::touch"],[5697,"iced::touch::Event"],[5705,"iced::widget"],[7100,"iced::widget::button"],[7197,"iced::widget::canvas"],[7763,"iced::widget::canvas::event"],[7811,"iced::widget::canvas::fill"],[7860,"iced::widget::canvas::gradient"],[7947,"iced::widget::canvas::path"],[8036,"iced::widget::canvas::path::arc"],[8084,"iced::widget::canvas::path::lyon_path"],[8972,"iced::widget::canvas::path::lyon_path::Event"],[8985,"iced::widget::canvas::path::lyon_path::IdEvent"],[8998,"iced::widget::canvas::path::lyon_path::PathEvent"],[9011,"iced::widget::canvas::path::lyon_path::builder"],[9333,"iced::widget::canvas::path::lyon_path::commands"],[9536,"iced::widget::canvas::path::lyon_path::geom"],[10317,"iced::widget::canvas::path::lyon_path::geom::arc"],[10367,"iced::widget::canvas::path::lyon_path::geom::arrayvec"],[10737,"iced::widget::canvas::path::lyon_path::geom::cubic_bezier"],[10779,"iced::widget::canvas::path::lyon_path::geom::euclid"],[12726,"iced::widget::canvas::path::lyon_path::geom::euclid::approxeq"],[12730,"iced::widget::canvas::path::lyon_path::geom::euclid::approxord"],[12732,"iced::widget::canvas::path::lyon_path::geom::euclid::default"],[12815,"iced::widget::canvas::path::lyon_path::geom::euclid::num"],[12825,"iced::widget::canvas::path::lyon_path::geom::quadratic_bezier"],[12935,"iced::widget::canvas::path::lyon_path::geom::traits"],[12955,"iced::widget::canvas::path::lyon_path::geom::utils"],[12961,"iced::widget::canvas::path::lyon_path::iterator"],[13111,"iced::widget::canvas::path::lyon_path::math"],[13141,"iced::widget::canvas::path::lyon_path::path"],[13398,"iced::widget::canvas::path::lyon_path::path_buffer"],[13538,"iced::widget::canvas::path::lyon_path::polygon"],[13698,"iced::widget::canvas::path::lyon_path::traits"],[13747,"iced::widget::canvas::stroke"],[13767,"iced::widget::checkbox"],[13856,"iced::widget::combo_box"],[13897,"iced::widget::container"],[13992,"iced::widget::image"],[14137,"iced::widget::image::viewer"],[14179,"iced::widget::keyed"],[14233,"iced::widget::keyed::column"],[14234,"iced::widget::overlay"],[14235,"iced::widget::overlay::menu"],[14356,"iced::widget::pane_grid"],[15084,"iced::widget::pane_grid::Configuration"],[15088,"iced::widget::pane_grid::DragEvent"],[15092,"iced::widget::pane_grid::Node"],[15097,"iced::widget::pane_grid::state"],[15184,"iced::widget::pane_grid::state::Action"],[15190,"iced::widget::pick_list"],[15362,"iced::widget::pick_list::Handle"],[15365,"iced::widget::progress_bar"],[15409,"iced::widget::qr_code"],[15584,"iced::widget::radio"],[15631,"iced::widget::rule"],[15718,"iced::widget::scrollable"],[16162,"iced::widget::scrollable::Direction"],[16164,"iced::widget::shader"],[16254,"iced::widget::shader::wgpu"],[23368,"iced::widget::shader::wgpu::BindingType"],[23377,"iced::widget::shader::wgpu::BufferBindingType"],[23378,"iced::widget::shader::wgpu::Dx12Compiler"],[23380,"iced::widget::shader::wgpu::Error"],[23383,"iced::widget::shader::wgpu::SurfaceTargetUnsafe"],[23385,"iced::widget::shader::wgpu::TextureFormat"],[23387,"iced::widget::shader::wgpu::TextureSampleType"],[23388,"iced::widget::shader::wgpu::core"],[23425,"iced::widget::shader::wgpu::core::any_surface"],[23463,"iced::widget::shader::wgpu::core::api"],[23466,"iced::widget::shader::wgpu::core::binding_model"],[24401,"iced::widget::shader::wgpu::core::binding_model::BindError"],[24417,"iced::widget::shader::wgpu::core::binding_model::CreateBindGroupError"],[24455,"iced::widget::shader::wgpu::core::binding_model::CreateBindGroupLayoutError"],[24459,"iced::widget::shader::wgpu::core::binding_model::CreatePipelineLayoutError"],[24469,"iced::widget::shader::wgpu::core::binding_model::PushConstantUploadError"],[24481,"iced::widget::shader::wgpu::core::command"],[26466,"iced::widget::shader::wgpu::core::command::AttachmentErrorLocation"],[26468,"iced::widget::shader::wgpu::core::command::ClearError"],[26479,"iced::widget::shader::wgpu::core::command::ColorAttachmentError"],[26481,"iced::widget::shader::wgpu::core::command::ComputePassErrorInner"],[26486,"iced::widget::shader::wgpu::core::command::DispatchError"],[26490,"iced::widget::shader::wgpu::core::command::DrawError"],[26503,"iced::widget::shader::wgpu::core::command::PassErrorScope"],[26508,"iced::widget::shader::wgpu::core::command::QueryUseError"],[26515,"iced::widget::shader::wgpu::core::command::RenderCommandError"],[26521,"iced::widget::shader::wgpu::core::command::RenderPassErrorInner"],[26550,"iced::widget::shader::wgpu::core::command::ResolveError"],[26559,"iced::widget::shader::wgpu::core::command::TransferError"],[26581,"iced::widget::shader::wgpu::core::command::bundle_ffi"],[26593,"iced::widget::shader::wgpu::core::command::compute_ffi"],[26604,"iced::widget::shader::wgpu::core::command::render_ffi"],[26630,"iced::widget::shader::wgpu::core::device"],[27264,"iced::widget::shader::wgpu::core::device::RenderPassCompatibilityError"],[27277,"iced::widget::shader::wgpu::core::device::any_device"],[27314,"iced::widget::shader::wgpu::core::device::queue"],[27639,"iced::widget::shader::wgpu::core::device::resource"],[27684,"iced::widget::shader::wgpu::core::error"],[27778,"iced::widget::shader::wgpu::core::global"],[27977,"iced::widget::shader::wgpu::core::hal_api"],[27983,"iced::widget::shader::wgpu::core::hub"],[28123,"iced::widget::shader::wgpu::core::id"],[28201,"iced::widget::shader::wgpu::core::identity"],[28283,"iced::widget::shader::wgpu::core::instance"],[28730,"iced::widget::shader::wgpu::core::naga"],[31649,"iced::widget::shader::wgpu::core::naga::AddressSpace"],[31650,"iced::widget::shader::wgpu::core::naga::AtomicFunction"],[31651,"iced::widget::shader::wgpu::core::naga::Binding"],[31655,"iced::widget::shader::wgpu::core::naga::BuiltIn"],[31656,"iced::widget::shader::wgpu::core::naga::Expression"],[31709,"iced::widget::shader::wgpu::core::naga::ImageClass"],[31714,"iced::widget::shader::wgpu::core::naga::ImageQuery"],[31715,"iced::widget::shader::wgpu::core::naga::PredeclaredType"],[31719,"iced::widget::shader::wgpu::core::naga::RayQueryFunction"],[31722,"iced::widget::shader::wgpu::core::naga::SampleLevel"],[31724,"iced::widget::shader::wgpu::core::naga::Statement"],[31750,"iced::widget::shader::wgpu::core::naga::TypeInner"],[31771,"iced::widget::shader::wgpu::core::naga::back"],[31867,"iced::widget::shader::wgpu::core::naga::back::glsl"],[32428,"iced::widget::shader::wgpu::core::naga::back::glsl::Version"],[32430,"iced::widget::shader::wgpu::core::naga::back::hlsl"],[32728,"iced::widget::shader::wgpu::core::naga::back::msl"],[33137,"iced::widget::shader::wgpu::core::naga::back::msl::sampler"],[33429,"iced::widget::shader::wgpu::core::naga::back::spv"],[34199,"iced::widget::shader::wgpu::core::naga::compact"],[34200,"iced::widget::shader::wgpu::core::naga::front"],[34283,"iced::widget::shader::wgpu::core::naga::front::wgsl"],[34367,"iced::widget::shader::wgpu::core::naga::keywords"],[34368,"iced::widget::shader::wgpu::core::naga::keywords::wgsl"],[34369,"iced::widget::shader::wgpu::core::naga::proc"],[35235,"iced::widget::shader::wgpu::core::naga::proc::ConstantEvaluatorError"],[35240,"iced::widget::shader::wgpu::core::naga::proc::ResolveError"],[35247,"iced::widget::shader::wgpu::core::naga::proc::index"],[35304,"iced::widget::shader::wgpu::core::naga::valid"],[36791,"iced::widget::shader::wgpu::core::naga::valid::CallError"],[36798,"iced::widget::shader::wgpu::core::naga::valid::ComposeError"],[36801,"iced::widget::shader::wgpu::core::naga::valid::Disalignment"],[36812,"iced::widget::shader::wgpu::core::naga::valid::EntryPointError"],[36814,"iced::widget::shader::wgpu::core::naga::valid::ExpressionError"],[36817,"iced::widget::shader::wgpu::core::naga::valid::FunctionError"],[36832,"iced::widget::shader::wgpu::core::naga::valid::GlobalVariableError"],[36834,"iced::widget::shader::wgpu::core::naga::valid::TypeError"],[36844,"iced::widget::shader::wgpu::core::naga::valid::ValidationError"],[36861,"iced::widget::shader::wgpu::core::naga::valid::VaryingError"],[36864,"iced::widget::shader::wgpu::core::pipeline"],[37775,"iced::widget::shader::wgpu::core::pipeline::ColorStateError"],[37777,"iced::widget::shader::wgpu::core::pipeline::CreateRenderPipelineError"],[37799,"iced::widget::shader::wgpu::core::pipeline::CreateShaderModuleError"],[37802,"iced::widget::shader::wgpu::core::present"],[37942,"iced::widget::shader::wgpu::core::present::ConfigureSurfaceError"],[37951,"iced::widget::shader::wgpu::core::registry"],[38038,"iced::widget::shader::wgpu::core::resource"],[39264,"iced::widget::shader::wgpu::core::resource::BufferAccessError"],[39272,"iced::widget::shader::wgpu::core::resource::CreateBufferError"],[39274,"iced::widget::shader::wgpu::core::resource::CreateQuerySetError"],[39276,"iced::widget::shader::wgpu::core::resource::CreateSamplerError"],[39281,"iced::widget::shader::wgpu::core::resource::CreateTextureError"],[39283,"iced::widget::shader::wgpu::core::resource::CreateTextureViewError"],[39297,"iced::widget::shader::wgpu::core::resource::TextureClearMode"],[39300,"iced::widget::shader::wgpu::core::resource::TextureDimensionError"],[39315,"iced::widget::shader::wgpu::core::storage"],[39351,"iced::widget::shader::wgpu::core::validation"],[39776,"iced::widget::shader::wgpu::core::validation::BindingError"],[39783,"iced::widget::shader::wgpu::core::validation::StageError"],[39796,"iced::widget::shader::wgpu::hal"],[43498,"iced::widget::shader::wgpu::hal::auxil"],[43501,"iced::widget::shader::wgpu::hal::auxil::db"],[43510,"iced::widget::shader::wgpu::hal::auxil::db::amd"],[43511,"iced::widget::shader::wgpu::hal::auxil::db::apple"],[43512,"iced::widget::shader::wgpu::hal::auxil::db::arm"],[43513,"iced::widget::shader::wgpu::hal::auxil::db::broadcom"],[43514,"iced::widget::shader::wgpu::hal::auxil::db::imgtec"],[43515,"iced::widget::shader::wgpu::hal::auxil::db::intel"],[43518,"iced::widget::shader::wgpu::hal::auxil::db::mesa"],[43519,"iced::widget::shader::wgpu::hal::auxil::db::nvidia"],[43520,"iced::widget::shader::wgpu::hal::auxil::db::qualcomm"],[43521,"iced::widget::shader::wgpu::hal::empty"],[43760,"iced::widget::shader::wgpu::hal::gles"],[44639,"iced::widget::shader::wgpu::hal::gles::TextureInner"],[44642,"iced::widget::shader::wgpu::hal::vulkan"],[45704,"iced::widget::shader::wgpu::hal::vulkan::Fence"],[45707,"iced::widget::shader::wgpu::hal::vulkan::ShaderModule"],[45709,"iced::widget::shader::wgpu::rwh"],[47165,"iced::widget::shader::wgpu::util"],[47479,"iced::widget::slider"],[47582,"iced::widget::slider::HandleShape"],[47585,"iced::widget::space"],[47586,"iced::widget::svg"],[47676,"iced::widget::text"],[47846,"iced::widget::text_editor"],[48081,"iced::widget::text_editor::Action"],[48082,"iced::widget::text_input"],[48416,"iced::widget::text_input::cursor"],[48456,"iced::widget::text_input::cursor::State"],[48458,"iced::widget::theme"],[48531,"iced::widget::theme::palette"],[48569,"iced::widget::toggler"],[48615,"iced::widget::tooltip"],[48662,"iced::widget::vertical_slider"],[48833,"iced::widget::vertical_slider::HandleShape"],[48836,"iced::window"],[49357,"iced::window::Event"],[49363,"iced::window::icon"],[49411,"iced::window::screenshot"],[49453,"iced::window::settings"],[49509,"iced_runtime::command::action"],[49510,"alloc::vec"],[49511,"palette::chromatic_adaptation"],[49512,"core::ops::arith"],[49513,"core::any"],[49514,"core::iter::traits::collect"],[49515,"core::clone"],[49516,"alloc::string"],[49517,"core::ops::function"],[49518,"core::default"],[49519,"num_traits::float"],[49520,"num_traits"],[49521,"core::option"],[49522,"iced_graphics::mesh"],[49523,"core::cmp"],[49524,"core::convert"],[49525,"core::fmt"],[49526,"core::fmt"],[49527,"core::fmt"],[49528,"palette::rgb::rgb"],[49529,"palette::alpha::alpha"],[49530,"core::hash"],[49531,"core::hash"],[49532,"alloc::sync"],[49533,"alloc::rc"],[49534,"alloc::borrow"],[49535,"core::ops::function"],[49536,"core::marker"],[49537,"core::ops::arith"],[49538,"core::cmp"],[49539,"futures_core::stream"],[49540,"core::ops::arith"],[49541,"palette::convert::try_from_into_color"],[49542,"core::any"],[49543,"core::convert"],[49544,"core::pin"],[49545,"core::ops::range"],[49546,"core::ops::function"],[49547,"futures_channel::mpsc"],[49548,"core::cmp"],[49549,"serde::de"],[49550,"time::instant"],[49551,"tokio::time::instant"],[49552,"image::animation"],[49553,"serde::ser"],[49554,"time::error::conversion_range"],[49555,"core::time"],[49556,"core::convert"],[49557,"iced_wgpu::primitive::pipeline"],[49558,"std::path"],[49559,"core::ops::range"],[49560,"num_traits::float"],[49561,"core::ops::arith"],[49562,"core::fmt"],[49563,"num_traits::ops::euclid"],[49564,"num_traits::ops::saturating"],[49565,"rayon::iter::par_bridge"],[49566,"alloc::collections::btree::map"],[49567,"std::collections::hash::map"],[49568,"qrcode::types"],[49569,"wgpu_types"],[49570,"wgpu_types"],[49571,"bitflags::iter"],[49572,"core::num::nonzero"],[49573,"wgpu_core::track"],[49574,"wgpu_core::command::draw"],[49575,"wgpu_core::command"],[49576,"core::fmt"],[49577,"naga::arena"],[49578,"naga::arena"],[49579,"core::iter::traits::double_ended"],[49580,"core::iter::traits::exact_size"],[49581,"rustc_hash"],[49582,"core::hash"],[49583,"core::marker"],[49584,"naga::valid::type"],[49585,"naga::valid::function"],[49586,"naga::valid::handles"],[49587,"naga::valid::handles"],[49588,"gpu_descriptor::allocator"],[49589,"gpu_alloc::error"],[49590,"ash::vk::enums"],[49591,"gpu_alloc::error"],[49592,"khronos_egl"],[49593,"khronos_egl"],[49594,"glow::native"],[49595,"lock_api::mutex"],[49596,"core::ffi"],[49597,"wgpu_hal::gles::egl"],[49598,"khronos_egl::egl1_0"],[49599,"core::num::nonzero"],[49600,"ash::entry"],[49601,"core::ffi::c_str"],[49602,"ash::device"],[49603,"ash::vk::definitions"],[49604,"wgpu_hal::vulkan::adapter"],[49605,"wgpu_hal::vulkan::adapter"],[49606,"core::num::nonzero"],[49607,"iced_core::window::icon"],[49608,"image::error"],[49609,"image::image"]],"d":["A list with all the defined themes.","Alignment on the axis of a container.","","The black color.","The background of some element.","A border.","Align at the center of the axis.","A color in the sRGB color space.","A solid color.","A set of asynchronous actions to be performed by some …","Scale as big as it can be without needing to crop or hide …","The strategy used to fit the contents of a widget to its …","Scale the image to cover all of the bounding box, cropping …","A Theme that uses a Custom palette.","A non-monospaced sans-serif font with normal Weight.","The built-in dark variant.","Degrees","A generic widget.","Align at the end of the axis.","Contains the error value","An error that occurred while running an application.","A user interface event.","A type that can run futures.","The futures executor could not be created.","Distort the image so the widget is 100% covered without …","Fill all the remaining space","Fill a portion of the remaining space relative to other …","Fill a fixed amount of space","A font.","A fill which transitions colors progressively along a …","Linearly interpolate between several colors.","The application graphics context could not be created.","A Size with infinite width and height.","A keyboard event","The strategy used to fill space in a specific dimension.","The built-in light variant.","A linear gradient interpolates colors along a direction at …","A monospaced font with normal Weight.","The type of messages your Sandbox will produce.","A mouse event","Don’t resize or scale the image at all.","The origin (i.e. a Point at (0, 0)).","Contains the success value","The amount of radians in half a circle.","An amount of space to pad for each side of a box","An amount of logical pixels.","A platform specific event","A 2D point.","The range of radians of a circle.","Radians","A rectangle.","The default graphics renderer for iced.","The result of running an Application.","A sandboxed Application.","Scale the image down if it’s too big for the space, but …","","A shadow.","Fill the least amount of space","An amount of space in 2 dimensions.","Align at the start of the axis.","A request to listen to external events.","A color with no opacity.","A built-in theme.","","A touch event","A Size with a width and height of 1 unit.","A 2D vector.","The white color.","","A window event","The application window could not be created.","Padding of zero","A Size with zero width and height.","The zero Vector.","Transparency, 0.0 - 1.0","Returns all of the actions of the Command.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Leverage advanced concepts like custom widgets.","Align and position widgets.","","","","","","","","Build interactive cross-platform applications.","Returns the area of the Rectangle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Blue component, 0.0 - 1.0","Creates a Command that performs the actions of all the …","Batches all the provided subscriptions and returns the …","The blur radius of the shadow.","Draw lines around containers.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Bottom padding","Returns the Point at the center of the Rectangle.","Returns the X coordinate of the Point at the center of the …","Returns the Y coordinate of the Point at the center of the …","","Access the clipboard.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The color of the border.","The color of the shadow.","Creates a Color with shorter and cleaner syntax.","Run asynchronous actions.","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the given Point is contained in the …","Creates a new custom Theme from the given Palette.","Creates a new custom Theme from the given Palette, with a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the distance to another Point.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Runs the given closure inside the Executor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Handle events of a user interface.","Choose your preferred executor to power your application.","Expands the Rectangle a given amount.","Expands this Size by the given amount.","Returns the palette::Extended of the Theme.","The Family of the Font.","","Returns the fill factor of the Length.","","","","Attempt to apply the given fit for a content size within …","Fits the Padding between the provided inner and outer Size.","Returns the “fluid” variant of the Length.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Load and use fonts.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Color from its linear RGBA components.","Creates a Subscription from a Recipe describing it.","Creates a Color from its RGB components.","Creates a Color from its RGB8 components.","Creates a Color from its RGBA components.","Creates a Color from its RGB8 components and an alpha …","","","","","","","","","","","","","","","","","","","","","","","","","","Green component, 0.0 - 1.0","Colors that transition progressively.","","","","","Height of the rectangle.","The height.","","Returns the total amount of horizontal Padding.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the intersection with the given Rectangle.","Returns whether the Rectangle intersects with the given …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Converts the Color into its linear values.","Returns the different recipes of the Subscription.","Converts the Color into its RGBA8 equivalent.","","","","","","","","","","","","","","","","","","","","","","","","Returns the inverted Color.","Inverts the Color in-place.","Returns true iff the Length is either Length::Fill or","Returns true if the current Rectangle is completely within …","Listen and react to keyboard events.","Left padding","","Applies a transformation to the result of a Command.","Transforms the Subscription output with the given function.","Returns the maximum of each component of this size and …","Returns the minimum of each component of this size and …","Listen and react to mouse events.","","","","","Adjust the opacity of the gradient by a multiplier applied …","Leverage multi-window support in your application.","Initializes the Sandbox.","Creates a new Executor.","Creates a new Color.","Create a Padding that is equal on all sides","Creates a new Point with the given coordinates.","Creates a new Rectangle with its top-left corner in the …","Creates a new Size with the given width and height.","Creates a new Vector with the given components.","Creates an empty Command.","Returns an empty Subscription that will not produce any …","The offset of the shadow.","Display interactive elements on top of other widgets.","Returns the Palette of the Theme.","","","","Creates a Command that performs the action of the given …","","","","Returns the position of the top left corner of the …","","Red component, 0.0 - 1.0","The radius of the border.","Right padding","Runs the Sandbox.","Runs the Sandbox.","Creates a Command that runs the given stream to completion.","Returns the scale factor of the Sandbox.","Returns the scale factor of the Sandbox.","","","Configure your application.","Creates a Command that performs a single Action.","Returns the Size of the Rectangle.","Snaps the Rectangle to unsigned integer coordinates.","Spawns a future in the Executor.","The Stretch of the Font.","Returns the current style variant of theme::Application.","Returns the current style variant of theme::Application.","The Style of the Font.","","","","","","","","Listen to external events in your application.","Retrieve system information.","Use the built-in theme and styles.","Returns the current Theme of the Sandbox.","Returns the current Theme of the Sandbox.","Listen and react to time.","Returns the current title of the Sandbox.","Calculates the line in which the angle intercepts the …","","","","","","","","","","","","","","","","","","","","","","","","","","Top padding","Listen and react to touch events.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the union with the given Rectangle.","","","","","","","","","","","","","","","","","","","","","","","","Handles a message and updates the state of the Sandbox.","","","Returns the total amount of vertical Padding.","Returns the widgets to display in the Sandbox.","The Weight of the Font.","Use the built-in widgets or create your own.","Creates a Command that performs a widget::Operation.","The width of the border.","Width of the rectangle.","The width.","Configure the window of your application in native …","Adds a value to the Subscription context.","","Creates a non-monospaced Font with the given Family::Name …","Creates a new default Border with the given Radius.","Creates a new Rectangle with its top-left corner at the …","","The X coordinate.","X coordinate of the top-left corner.","The X component of the Vector","The Y coordinate.","Y coordinate of the top-left corner.","The Y component of the Vector","A buffer for short-term storage and transfer within and …","The hasher used to compare layouts.","The bounds of a Node and its children, using absolute …","An interactive component that can be displayed on top of …","A component that can be used by widgets to draw themselves …","A connection to the state of a shell.","A paragraph.","A component that displays information and allows …","","","","","Returns whether the widgets of the current application …","","","","","","","","","","","","","","","","","","","","","","","","","Returns the bounds of the Layout.","The bounds of the paragraph.","Returns the state Tree of the children of the Widget.","Returns an iterator over the Layout of the children of a …","Clears all of the recorded primitives in the Renderer.","","","","","","","","","The content of the paragraph.","","","","","","","","","","Reconciliates the Widget with the provided Tree.","","","","","Draws the Overlay using the associated Renderer.","Draws the Widget using the associated Renderer.","","","","","Fills a Quad with the provided Background.","","","","","The font of the Text.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","The horizontal alignment of the Text.","Load and draw raster graphics.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Invalidates the current application layout.","Invalidates the current application widgets.","Returns true if the Shell contains no published messages","Returns whether the current layout is invalid or not.","Returns true if the cursor is over the Overlay.","Position your widgets properly.","Returns the layout Node of the Overlay.","Returns the layout::Node of the Widget.","The line height of the Text.","Merges the current Shell with another one by applying the …","Handle mouse events.","Returns the current mouse::Interaction of the Overlay.","Returns the current mouse::Interaction of the Widget.","Creates a new Layout for the given Node at the origin.","Creates a new Shell with the provided buffer of messages.","Processes a runtime Event.","Processes a runtime Event.","Applies a widget::Operation to the Overlay.","Applies an Operation to the Widget.","Display interactive elements on top of other widgets.","Returns the nested overlay of the Overlay, if there is any.","Returns the overlay of the Widget, if there is any.","Returns the position of the Layout.","Publish the given Message for an application to process it.","Reads the current content of the Clipboard as text.","Returns the request a redraw should happen, if any.","Write your own renderer.","Requests a new frame to be drawn.","Triggers the given function if the layout is invalid, …","The Shaping strategy of the Text.","Returns the Size of the Widget in lengths.","The size of the Text in logical pixels.","Returns a Size hint for laying out the Widget.","Returns the State of the Widget.","Write your own subscriptions.","Load and draw vector graphics.","Returns the Tag of the Widget.","Draw and interact with text.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The vertical alignment of the Text.","Create custom widgets and operate on them.","Draws the primitives recorded in the given closure in a …","Creates a new Layout for the given Node with the provided …","Applies a translation to the primitives recorded in the …","Writes the given text contents to the Clipboard.","","A wrapper around raw image data.","In-memory data","The data of a raster image.","Image filtering strategy.","A handle of some image data.","The image Handle to be displayed. Iced exposes its own …","Bilinear interpolation.","Nearest neighbor.","File data","A Renderer that can render raster graphics.","Decoded image pixels in RGBA format.","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the dimensions of an image for the given Handle.","","","Draws an image with the given Handle and inside the …","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Creates new Bytes around data.","","","","","","","","","","","","","","","","","","","The height of the image.","The pixels.","The width of the image.","The bounds of a Node and its children, using absolute …","A set of size constraints for layouting.","No limits","The bounds of an element and its children.","","","Aligns the Node in the given space.","Mutable reference version of Self::align.","","","","","","","","","Computes the resulting Node that fits the Limits given …","","","","","Returns the bounds of the Node.","Returns the children of the Node.","","","","","","","Computes the resulting Node that fits the Limits given …","Creates a new Node that wraps a single child with some …","","","","","","","","","","","Distribute elements using a flex-based layout.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Applies a height constraint to the current Limits.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Removes the minimum width constraint for the current Limits…","Returns the maximum Size of the Limits.","Applies a maximum height constraint to the current Limits.","Applies a maximum width constraint to the current Limits.","Returns the minimum Size of the Limits.","Applies a minimum height constraint to the current Limits.","Applies a minimum width constraint to the current Limits.","Moves the Node to the given position.","Mutable reference version of Self::move_to.","Creates new Limits with the given minimum and maximum Size.","Creates a new Node with the given Size.","Produces a Node with two children nodes one right next to …","Computes the Node that fits the Limits given some width, …","Computes a padded Node with a positioning step.","Computes the resulting Size that fits the Limits given …","Shrinks the current Limits by the given Size.","Returns the Size of the Node.","Computes the resulting Node that fits the Limits given …","","","Translates the Node by the given translation.","","","","","","","","","","","","","","","","","Applies a width constraint to the current Limits.","Creates a new Node with the given Size and children.","The main axis of a flex layout.","The horizontal axis","The vertical axis","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Computes the flex layout with the given axis and limits, …","","","","","","","","","The cursor has a defined position.","The back mouse button.","The button of a mouse.","A mouse button was pressed.","A mouse button was released.","A mouse click.","","The mouse cursor state.","The mouse cursor entered the window.","The mouse cursor left the window.","The mouse cursor was moved","A mouse event.","The forward mouse button.","","","","The interaction of a mouse cursor.","The left mouse button.","A line-based scroll movement","The middle (wheel) button.","","Some other button.","A pixel-based scroll movement","","","","The right mouse button.","A scroll movement.","","The cursor is currently unavailable (i.e. out of bounds or …","The mouse wheel was scrolled.","","","","","","","","","Track mouse clicks.","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Returns the Kind of Click.","Creates a new Click with the given position and previous …","Returns the position of the Click.","","","","","","","","","","The scroll movement.","The new position of the mouse cursor","The number of horizontal lines scrolled","The number of horizontal pixels scrolled","The number of vertical lines scrolled","The number of vertical pixels scrolled","A mouse click.","A double click","The kind of mouse click.","A single click","A triple click","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","A generic Overlay.","An Overlay container that displays multiple overlay …","An interactive component that can be displayed on top of …","","","","","","","","","","","","","","","","","","","","","","","","Draws the Overlay using the associated Renderer.","Draws the Element and its children using the given Layout.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns a Group of overlay Element children.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","Returns true if the cursor is over the Element.","","Returns true if the cursor is over the Overlay.","Returns the layout Node of the Overlay.","Computes the layout of the Element in the given bounds.","","Applies a transformation to the produced message of the …","Returns the current mouse::Interaction of the Element.","","Returns the current mouse::Interaction of the Overlay.","Creates a new Element containing the given Overlay.","Creates an empty Group.","Processes a runtime Event.","","Processes a runtime Event.","Applies a widget::Operation to the Element.","","Applies a widget::Operation to the Overlay.","Returns the nested overlay of the Element, if there is any.","Turns the Group into an overlay overlay::Element.","","Returns the nested overlay of the Overlay, if there is any.","Returns the position of the Element.","Adds an overlay::Element to the Group.","Translates the Element.","","","","","","","","","","","","","","","","","Creates a Group with the given elements.","A renderer that does nothing.","A polygon with four sides.","A component that can be used by widgets to draw themselves …","The styling attributes of a Renderer.","","","","","","","","","","","","","","","","The Border of the Quad.","","","","","","","The bounds of the Quad.","Clears all of the recorded primitives in the Renderer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Fills a Quad with the provided Background.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","Creates a new Null renderer.","The Shadow of the Quad.","The text color","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the primitives recorded in the given closure in a …","","Applies a translation to the primitives recorded in the …","","A stream of runtime events.","The events that will be produced by a Subscription with …","The description of a Subscription.","Hashes the Recipe.","Executes the Recipe and produces the stream of events of …","In-memory data","The data of a vectorial image.","A handle of Svg data.","File data","A Renderer that can render vector graphics.","","","","","","","","","","","","","Returns the default dimensions of an SVG for the given …","","Draws an SVG with the given Handle, an optional Color …","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The char representing a ▼ icon in the built-in ICON_FONT.","An absolute height in logical pixels.","Advanced text shaping and font fallback.","No shaping and no font fallback.","A bounds difference.","The char representing a ✔ icon in the ICON_FONT.","The point was within the bounds of the returned character …","The difference detected in some text.","A component that can be used by widgets to edit multi-line …","The Editor of this Renderer.","The font of this Paragraph.","The font of the Editor.","The font type used.","The output of the Highlighter.","A type capable of highlighting text.","The result of hit testing on text.","The icon font of the backend.","The highlight iterator type.","The height of a line of text in a paragraph.","No difference.","A text paragraph.","The Paragraph of this Renderer.","A factor of the size of the text.","A renderer capable of measuring and drawing Text.","The settings to configure the Highlighter.","A shape difference.","The shaping strategy of some text.","A paragraph.","","","","","","","","","","","","","","","Returns the current boundaries of the Editor.","The bounds of the paragraph.","Notifies the Highlighter that the line at the given index …","","","","","Compares the Paragraph with some desired Text and returns …","","","The content of the paragraph.","Returns the current line of the Highlighter.","Returns the current Cursor of the Editor.","Computes the cursor position of the Hit .","Returns the current cursor position of the Editor.","Returns the default Self::Font.","Returns the default size of Text.","","","","","","","","","Edit text.","","","","","","Draws the given Editor at the given position and with the …","Draws the given Paragraph at the given position and with …","Draws the given Text at the given position and with the …","","","The font of the Text.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the distance to the given grapheme index in the …","Runs a text Highlighter in the Editor.","Highlights the given line.","Highlight text.","Tests whether the provided point is within the boundaries …","Returns the horizontal alignment of the Paragraph.","The horizontal alignment of the Text.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns the text of the given line in the Editor, if it …","Returns the amount of lines in the Editor.","The line height of the Text.","Loads a Self::Font from its bytes.","Returns the minimum boundaries that can fit the contents …","Returns the minimum height that can fit the contents of …","Returns the minimum width that can fit the contents of the …","Creates a new Highlighter from its Self::Settings.","Performs an Action on the Editor.","Lays out the Paragraph with some new boundaries.","Returns the current selected text of the Editor.","The Shaping strategy of the Text.","The size of the Text in logical pixels.","","","","","","","","","","","","","","","","","","","Updates the Editor with some new attributes.","Updates the Highlighter with some new Self::Settings.","Updates the Paragraph to match the given Text, if needed.","Returns the vertical alignment of the Paragraph.","The vertical alignment of the Text.","Creates a new Paragraph laid out with the given Text.","Creates a new Editor laid out with the given text.","An interaction with an Editor.","Delete the previous character.","Cursor without a selection","Click the Editor at the given Point.","The cursor of an Editor.","Delete the next character.","A direction in some text.","Move to the end of the text.","Move to the start of the text.","Move down.","Drag the mouse on the Editor to the given Point.","An action that edits text.","Perform an Edit.","A component that can be used by widgets to edit multi-line …","Move to the end of the line.","Break the current line.","The font of the Editor.","Move to the start of the line.","Insert the given character.","Move left.","<-","A cursor movement.","Apply a Motion.","Move to the start of the next window.","Move to the start of the previous window.","Paste the given text.","Move right.","->","Scroll the Editor a certain amount of lines.","Select text with a given Motion.","Select the line at the current cursor.","Select the word at the current cursor.","Cursor selecting a range of text","Move up.","Move to the left boundary of a word.","Move to the right boundary of a word.","","","","","","","","","","","","","","","Returns the current boundaries of the Editor.","","","","","","","Returns the current Cursor of the Editor.","Returns the current cursor position of the Editor.","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Runs a text Highlighter in the Editor.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns the text of the given line in the Editor, if it …","Returns the amount of lines in the Editor.","Performs an Action on the Editor.","Returns the current selected text of the Editor.","","","","","","","","","","","","","","","","","","","Updates the Editor with some new attributes.","Creates a new Editor laid out with the given text.","The amount of lines to scroll.","The format of some text.","The output of the Highlighter.","A type capable of highlighting text.","The highlight iterator type.","A highlighter that highlights nothing.","The settings to configure the Highlighter.","","","","","","","","","","","","","","","Notifies the Highlighter that the line at the given index …","","","","","","The Color of the text.","","","Returns the current line of the Highlighter.","","","","","","","","","","","","","","The Font of the text.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Highlights the given line.","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Creates a new Highlighter from its Self::Settings.","","","","","","","","","","","","","","","","","","","","Updates the Highlighter with some new Self::Settings.","","The identifier of a generic widget.","A piece of logic that can traverse the widget tree of an …","A paragraph of text.","A persistent state widget tree.","A component that displays information and allows …","","","","","","","","","","","","","","","","","","","","","","Returns the state Tree of the children of the Widget.","The children of the root widget of the Tree.","","","","","","","","Operates on a widget that contains other widgets.","Operates on a custom widget with some state.","","","","","","","Reconciliates the Widget with the provided Tree.","Reconciliates the current tree with the provided Widget.","Reconciles the children of the tree with the provided list …","Reconciliates the children of the tree with the provided …","","","","Draws the Widget using the associated Renderer.","","","","","Creates an empty, stateless Tree with no children.","","","","","Finishes the Operation and returns its Outcome.","","","Operates on a widget that can be focused.","Sets the Font of the Text.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","Sets the height of the Text boundaries.","Sets the alignment::Horizontal of the Text.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Returns the layout::Node of the Widget.","","Sets the LineHeight of the Text.","Returns the current mouse::Interaction of the Widget.","Create a new fragment of Text with the given contents.","Creates a new Tree for the provided Widget.","Creates a custom Id.","Processes a runtime Event.","Applies an Operation to the Widget.","Query or update internal widget state.","Returns the overlay of the Widget, if there is any.","Operates on a widget that can be scrolled.","Sets the Shaping strategy of the Text.","Returns the Size of the Widget in lengths.","Sets the size of the Text.","","Returns a Size hint for laying out the Widget.","","Returns the State of the Widget.","The State of the Tree.","Sets the style of the Text.","","Returns the Tag of the Widget.","The tag of the Tree.","Write some text for your users to read.","Operates on a widget that has text input.","","","Store internal widget state in a state tree to ensure …","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","","","","Sets the alignment::Vertical of the Text.","Sets the width of the Text boundaries.","The Operation needs to be followed by another Operation.","The internal state of a widget that can be focused.","The Operation produced no result.","A piece of logic that can traverse the widget tree of an …","The result of an Operation.","The internal state of a widget that can be scrolled.","The Operation produced some result.","The internal state of a widget that has text input.","","","","","","","","","Operates on a widget that contains other widgets.","Operates on a custom widget with some state.","","","","","Finishes the Operation and returns its Outcome.","","Focuses the widget.","Operate on widgets that can be focused.","Operates on a widget that can be focused.","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","Returns whether the widget is focused or not.","Maps the output of an Operation using the given function.","Moves the cursor of the text input to an arbitrary …","Moves the cursor of the text input to the end of the input …","Moves the cursor of the text input to the front of the …","Produces an Operation that applies the given Operation to …","Scroll the widget to the given AbsoluteOffset along the …","Operate on widgets that can be scrolled.","Operates on a widget that can be scrolled.","Selects all the content of the text input.","Snaps the scroll of the widget to the given percentage …","Operate on widgets that have text input.","Operates on a widget that has text input.","","","","","","","","Unfocuses the widget.","","A summary of the focusable widgets present on a widget …","The internal state of a widget that can be focused.","","","","","","","","","","","Produces an Operation that generates a Count and chains it …","","","","","","","","","","Produces an Operation that searches for the current …","","Produces an Operation that focuses the widget with the …","Focuses the widget.","Produces an Operation that searches for the current …","Produces an Operation that searches for the current …","The index of the current focused widget, if any.","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Returns whether the widget is focused or not.","","The total amount of focusable widgets.","","","","","","","","Unfocuses the widget.","","The amount of absolute offset in each direction of a …","The amount of relative offset in each direction of a …","The internal state of a widget that can be scrolled.","Produces an Operation that scrolls the widget with the …","Scroll the widget to the given AbsoluteOffset along the …","Produces an Operation that snaps the widget with the given …","Snaps the scroll of the widget to the given percentage …","The amount of horizontal offset","The amount of horizontal offset","The amount of vertical offset","The amount of vertical offset","The internal state of a widget that has text input.","Produces an Operation that moves the cursor of the widget …","Moves the cursor of the text input to an arbitrary …","Produces an Operation that moves the cursor of the widget …","Moves the cursor of the text input to the end of the input …","Produces an Operation that moves the cursor of the widget …","Moves the cursor of the text input to the front of the …","Produces an Operation that selects all the content of the …","Selects all the content of the text input.","An absolute height in logical pixels.","Advanced text shaping and font fallback.","The apperance of some text.","No shaping and no font fallback.","The height of a line of text in a paragraph.","A factor of the size of the text.","The shaping strategy of some text.","The internal state of a Text widget.","The supported style of the StyleSheet.","The style sheet of some text.","A paragraph of text.","Produces the Appearance of some text.","The Color of the text.","Draws text using the same logic as the Text widget.","Produces the layout::Node of a Text widget.","No meaningful internal state.","Some meaningful internal state.","The internal State of a widget.","The identifier of some widget state.","A persistent state widget tree.","","","","","","","","","","","","","","","The children of the root widget of the Tree.","","","","","","","","","","","Reconciliates the current_children with the provided list …","","","Downcasts the State to T and returns a mutable reference …","Downcasts the State to T and returns a reference to it.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Creates a new State.","Creates a Tag for a state of type T.","","The State of the Tree.","Creates a Tag for a stateless widget.","The tag of the Tree.","","","","","","","","","","","","","","","","","","Alignment on the axis of a container.","Align bottom","Align at the center of the axis.","Horizontally centered","Vertically centered","Align at the end of the axis.","The horizontal Alignment of some resource.","Align left","Align right","Align at the start of the axis.","Align top","The vertical Alignment of some resource.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The appearance of an application.","An interactive cross-platform application.","The Executor that will run commands and subscriptions.","The data needed to initialize your Application.","The type of messages your Application will produce.","The supported style of the StyleSheet.","A set of rules that dictate the style of an application.","The theme of your Application.","","Returns the Appearance of the application for the provided …","","","","","The background Color of the application.","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Initializes the Application with the flags provided to run …","Runs the Application.","Returns the scale factor of the Application.","Returns the current Style of the Theme.","Returns the event Subscription for the current state of the","The default text Color of the application.","Returns the current Theme of the Application.","Returns the current title of the Application.","","","","","","","","","","Handles a message and updates the state of the Application.","Returns the widgets to display in the Application.","A border.","The border radii for the corners of a graphics primitive …","","","","","","","","","","The color of the border.","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","The radius of the border.","","","","","","","","","","The width of the border.","Read the current contents of the clipboard.","Write the given contents to the clipboard.","A set of asynchronous actions to be performed by some …","Creates a Command that produces the Messages published …","The Event was handled and processed by a widget.","A user interface event.","The Event was NOT handled by any widget.","A keyboard event","Describes an event specific to MacOS","A MacOS specific event","A mouse event","A platform specific event","A platform specific event","Triggered when the app receives an URL from the system","The status of an Event after being processed.","A touch event","A window event","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns a Subscription to all the ignored runtime events.","Creates a Subscription that produces a message for every …","Creates a Subscription that listens and filters all the …","","","","","","","","","","","","","","","","","","","A default cross-platform executor.","A type that can run futures.","Runs the given closure inside the Executor.","Creates a new Executor.","Spawns a future in the Executor.","","","","Glyphs in cursive fonts generally use a more informal …","An error while loading a font.","","","","","","A font family.","Fantasy fonts are primarily decorative or expressive fonts …","A font.","","","","The sole criterion of a monospace font is that all glyphs …","The name of a font family of choice.","","","","","Glyphs in sans-serif fonts, as the term is used in CSS, …","","","","Serif fonts represent the formal text style for a script.","The width of some text.","The style of some text.","","","","The weight of some text.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Family of the Font.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Load a font from its bytes.","The Stretch of the Font.","The Style of the Font.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Weight of the Font.","A point along the gradient vector where the specified color…","A fill which transitions colors progressively along a …","A linear gradient.","A linear gradient interpolates colors along a direction at …","","","Adds a new ColorStop, defined by an offset and a color, to …","Adds multiple ColorStops to the gradient.","How the Gradient is angled within its bounds.","","","","","","","","","","","","","","","","","The color of the gradient at the specified offset.","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Creates a new Linear gradient with the given angle in …","Offset along the gradient vector.","ColorStops along the linear gradient path.","","","","","","","","","","","","","","","","","","","The “alt” key.","The “command” key.","The “control” key.","A key string that corresponds to the character typed by …","A keyboard event.","A key on the keyboard.","A keyboard key was pressed.","A keyboard key was released.","The “windows” key on Windows, “command” key on …","The left side of the keyboard.","The location of a key on the keyboard.","The current state of the keyboard modifiers.","The keyboard modifiers have changed.","A key with an established name.","The numpad of the keyboard.","The right side of the keyboard.","The “shift” key.","The standard group of keys on the keyboard.","An unidentified key.","","","","","Returns the set containing all flags.","Returns true if the ALT key is pressed in the Modifiers.","","","","","","","","","","","","","","","","","Convert Key::Character(SmolStr) to Key::Character(&str) so …","Returns the intersection between the two sets of flags.","Disables all flags disabled in the set.","Returns the union of the two sets of flags.","Adds the set of flags.","Returns the raw value of the flags currently stored.","Returns the left flags, but with all the right flags …","Toggles the set of flags.","","","","","","","","","","","","","","","","","","","Returns true if a “command key” is pressed in the …","","","Returns the complement of this set of flags.","","","","","Returns true if all of the flags in other are contained …","Returns true if the CTRL key is pressed in the Modifiers.","","","","","","","","","","Returns the difference between the flags in self and other.","","","","","","","","","Returns an empty set of flags.","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Convert from underlying bit representation, unless that …","Convert from underlying bit representation, dropping any …","Convert from underlying bit representation, preserving all …","","","","","","","","","","","","Inserts the specified flags in-place.","Returns the intersection between the flags in self and …","Returns true if there are flags common to both self and …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if all flags are currently set.","Returns true if no flags are currently stored.","Identify keyboard keys.","Returns true if the LOGO key is pressed in the Modifiers.","Returns the complement of this set of flags.","Listens to keyboard key presses and calls the given …","Listens to keyboard key releases and calls the given …","","","Removes the specified flags in-place.","Inserts or removes the specified flags depending on the …","Returns true if the SHIFT key is pressed in the Modifiers.","Returns the set difference of the two sets of flags.","Disables all flags enabled in the set.","Returns the symmetric difference between the flags in self …","","","","","Toggles the specified flags in-place.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the union of between the flags in self and other.","","","","","The key pressed.","The key released.","The location of the key.","The location of the key.","The state of the modifier keys.","The state of the modifier keys.","The text produced by the key press, if any.","Switch the input mode on an external AVR (audio/video …","Toggle the power on an external AVR (audio/video …","The Accept (Commit, OK) key. Accept current option or …","Redo or repeat an action.","Initate the multi-candidate mode.","","The Alt (Alternative) key.","The Alternate Graphics (AltGr or AltGraph) key.","The Application switch key, which provides a list of …","Navigate or traverse downward. (KEYCODE_DPAD_DOWN)","Navigate or traverse leftward. (KEYCODE_DPAD_LEFT)","Navigate or traverse rightward. (KEYCODE_DPAD_RIGHT)","Navigate or traverse upward. (KEYCODE_DPAD_UP)","The Attention (Attn) key.","Adjust audio balance leftward. (VK_AUDIO_BALANCE_LEFT)","Adjust audio balance rightward. (VK_AUDIO_BALANCE_RIGHT)","Decrease audio bass boost or cycle down through bass boost …","Toggle bass boost on/off. (APPCOMMAND_BASS_BOOST)","Increase audio bass boost or cycle up through bass boost …","Adjust audio fader towards front. (VK_FADER_FRONT)","Adjust audio fader towards rear. (VK_FADER_REAR)","Advance surround audio mode to next available mode. (…","Decrease treble. (APPCOMMAND_TREBLE_DOWN)","Increase treble. (APPCOMMAND_TREBLE_UP)","Decrease audio volume. (APPCOMMAND_VOLUME_DOWN, …","Toggle between muted state and prior volume level. (…","Increase audio volume. (APPCOMMAND_VOLUME_UP, …","Used to remove the character to the left of the cursor. …","The Brightness Down key. Typically controls the display …","The Brightness Up key. Typically controls the display …","Navigate to previous content or page in current history. (…","Open the list of browser favorites. (…","Navigate to next content or page in current history. (…","Go to the user’s preferred home page. (…","Refresh the current page or content. (…","Call up the user’s preferred search page. (…","Stop loading the current page or content. (…","The Call key. (KEYCODE_CALL)","The Camera key. (KEYCODE_CAMERA)","The Camera focus key. (KEYCODE_FOCUS)","","The Caps Lock (Capital) key.","Select next (numerically or logically) lower channel. (…","Select next (numerically or logically) higher channel. (…","A key string that corresponds to the character typed by …","Remove the currently selected input.","Close the current document or message (Note: This …","Toggle the display of Closed Captions. (VK_CC, …","Initiate the Code Input mode to allow characters to be …","General purpose color-coded media function key, as index 0 …","General purpose color-coded media function key, as index 1 …","General purpose color-coded media function key, as index 2 …","General purpose color-coded media function key, as index 3 …","General purpose color-coded media function key, as index 4 …","General purpose color-coded media function key, as index 5 …","The Compose key, also known as “Multi_key” on the X …","Show the application’s context menu. This key is …","The Control or Ctrl key.","Convert the current input method sequence.","Copy the current selection. (APPCOMMAND_COPY)","The Cursor Select key.","Cut the current selection. (APPCOMMAND_CUT)","Select Digital Video Rrecorder. (KEYCODE_DVR)","Used to delete the character to the right of the cursor. …","Adjust brightness of device, by toggling between or …","Swap video sources. (VK_DISPLAY_SWAP)","The Eisu key. This key may close the IME, but its purpose …","Toggle removable media to eject (open) and insert (close) …","The End key, used with keyboard entry to go to the end of …","The End Call key. (KEYCODE_ENDCALL)","The Enter or key. Used to activate current selection …","The Erase to End of Field key. This key deletes all …","The Esc key. This key was originally used to initiate an …","The Extend Selection (Exsel) key.","","Exit the current application. (VK_EXIT)","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key. Usually found at the top of …","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","Clear program or content stored as favorite 0. (…","Clear program or content stored as favorite 1. (…","Clear program or content stored as favorite 2. (…","Clear program or content stored as favorite 3. (…","Select (recall) program or content stored as favorite 0. (…","Select (recall) program or content stored as favorite 1. (…","Select (recall) program or content stored as favorite 2. (…","Select (recall) program or content stored as favorite 3. (…","Store current program or content as favorite 0. (…","Store current program or content as favorite 1. (…","Store current program or content as favorite 2. (…","Store current program or content as favorite 3. (…","The Final Mode Final key used on some Asian keyboards, to …","Open the Find dialog. (APPCOMMAND_FIND)","The Function switch Fn key. Activating this key …","The Function-Lock (FnLock or F-Lock) key. Activating this …","The Back key. (KEYCODE_BACK)","The Home key, which goes to the phone’s main screen. (…","Switch to the first character group. (ISO/IEC 9995)","Switch to the last character group. (ISO/IEC 9995)","Switch to the next character group. (ISO/IEC 9995)","Switch to the previous character group. (ISO/IEC 9995)","Toggle display of program or content guide. (VK_GUIDE, …","If guide is active and displayed, then display next …","If guide is active and displayed, then display previous …","Toggle between Hangul and English modes.","","The (Half-Width) Characters key.","The Headset Hook key. (KEYCODE_HEADSETHOOK)","Open a help dialog or toggle display of help information. (…","The Hibernate key. This key saves the current state of the …","The Hiragana (Japanese Kana characters) key.","The Hiragana/Katakana toggle key. (…","The Home key, used with keyboard entry, to go to start of …","","Toggle display of information about currently selected …","Toggle between text modes for insertion or overtyping. (…","Toggle instant replay. (VK_INSTANT_REPLAY)","","The Kana Mode (Kana Lock) key. This key is used to enter …","The Kanji (Japanese name for ideographic characters of …","The Katakana (Japanese Kana characters) key.","A key on the keyboard.","The 11 key found on media numpads that have buttons from 1 …","The 12 key found on media numpads that have buttons from 1 …","","The first generic “LaunchApplication” key. This is …","The second generic “LaunchApplication” key. This is …","The “Calendar” key. (KEYCODE_CALENDAR)","The “Contacts” key. (KEYCODE_CONTACTS)","The “Mail” key. (APPCOMMAND_LAUNCH_MAIL)","The “Media Player” key. (APPCOMMAND_LAUNCH_MEDIA_SELECT…","","","","","","","","Launch linked content, if available and appropriate. (…","List the current program. (VK_LIST)","Toggle display listing of currently available live content …","Lock or unlock current content or program. (VK_LOCK)","","Open an editor to forward the current message. (…","Open an editor to reply to the current message. (…","Send the current message. (APPCOMMAND_SEND_MAIL)","Toggle between manner mode state: silent, vibrate, ring, …","Show a list of media applications: audio/video players and …","Audio track key. (KEYCODE_MEDIA_AUDIO_TRACK)","Close the current media, for example to close a CD or DVD …","Initiate or continue forward playback at faster than …","Select previously selected channel or media. (VK_LAST, …","Pause the currently playing media. (APPCOMMAND_MEDIA_PAUSE…","Initiate or continue media playback at normal speed, if …","Toggle media between play and pause states. (…","Initiate or resume recording of currently selected media. (…","Initiate or continue reverse playback at faster than …","Skip backward to next content or program. (…","Skip forward to next content or program. (VK_SKIP, …","Step backward to next content or program. (…","Step forward to next content or program. (…","Stop media playing, pausing, forwarding, rewinding, or …","Media top menu. (KEYCODE_MEDIA_TOP_MENU)","Seek to next media or program track. (…","Seek to previous media or program track. (…","","Toggle the microphone on/off. (APPCOMMAND_MIC_ON_OFF_TOGGLE…","Decrease microphone volume. (…","Mute the microphone. (APPCOMMAND_MICROPHONE_VOLUME_MUTE, …","Increase microphone volume. (…","Toggle between or cycle through input modes of IMEs.","A named key.","A key with an established name.","Navigate in. (KEYCODE_NAVIGATE_IN)","Navigate to next key. (KEYCODE_NAVIGATE_NEXT)","Navigate out. (KEYCODE_NAVIGATE_OUT)","Navigate to previous key. (KEYCODE_NAVIGATE_PREVIOUS)","Open a new document or message. (APPCOMMAND_NEW)","","Cycle to next favorite channel (in favorites list). (…","Cycle to next user profile (if there are multiple user …","Accept current input method sequence without conversion in …","The Notification key. (KEYCODE_NOTIFICATION)","The NumLock or Number Lock key. Used to toggle numpad mode …","Access on-demand content or programs. (VK_ON_DEMAND)","Open an existing document or message. (APPCOMMAND_OPEN)","Scroll down or display next page of content.","Scroll up or display previous page of content.","Pairing key to pair devices. (KEYCODE_PAIRING)","The Paste key. (APPCOMMAND_PASTE)","Pause the current state or application (as appropriate).","Move picture-in-picture window down. (VK_PINP_DOWN)","Move picture-in-picture window. (VK_PINP_MOVE)","Toggle display of picture-in-picture window. (…","Move picture-in-picture window up. (VK_PINP_UP)","Play or resume the current state or application (as …","Decrease media playback speed. (VK_PLAY_SPEED_DOWN)","Reset playback to normal speed. (VK_PLAY_SPEED_RESET)","Increase media playback speed. (VK_PLAY_SPEED_UP)","Toggle power state. (KEYCODE_POWER) Note: Note: Some …","The PowerOff key. Sometime called PowerDown.","","Print the current document or message. (APPCOMMAND_PRINT)","Initiate print-screen function.","","The properties (Props) key.","Toggle random media or content shuffle mode. (…","Not a physical key, but this key code is sent when the …","Toggle or cycle between media recording speeds. (…","Redo the last action. (APPCOMMAND_REDO)","Toggle RF (radio frequency) input bypass mode (pass RF …","The Roman characters function key.","Switch the input mode on an external STB (set top box). (…","Toggle the power on an external STB (set top box). (…","Save the current document or message. (APPCOMMAND_SAVE)","Toggle scan channels mode. (VK_SCAN_CHANNELS_TOGGLE)","Advance display screen mode to next available mode. (…","Toggle between scrolling and cursor movement modes.","","Toggle display of device settings screen. (VK_SETTINGS, …","Used to enable shift modifier function for interpreting …","","General purpose virtual function key, as index 1.","General purpose virtual function key, as index 2.","General purpose virtual function key, as index 3.","General purpose virtual function key, as index 4.","Used in text to insert a space between words. Usually …","Show correction list when a word is incorrectly …","Toggle between dictation mode and command/control mode. (…","Spellcheck the current document or selection. (…","Toggle split screen mode. (VK_SPLIT_SCREEN_TOGGLE)","The Standby key. This key turns off the display and places …","Toggle display of subtitles, if available. (VK_SUBTITLE)","Used to enable “super” modifier function for …","The Symbol modifier key (used on some virtual keyboards).","","Switch to viewing TV. (KEYCODE_TV)","TV 3D Mode. (KEYCODE_3D_MODE)","Toggle between antenna and cable input. (…","Audio description. (KEYCODE_TV_AUDIO_DESCRIPTION)","Audio description mixing volume down. (…","Audio description mixing volume up. (…","Contents menu. (KEYCODE_TV_CONTENTS_MENU)","Contents menu. (KEYCODE_TV_DATA_SERVICE)","Switch the input mode on an external TV. (KEYCODE_TV_INPUT)","Switch to component input #1. (KEYCODE_TV_INPUT_COMPONENT_1…","Switch to component input #2. (KEYCODE_TV_INPUT_COMPONENT_2…","Switch to composite input #1. (KEYCODE_TV_INPUT_COMPOSITE_1…","Switch to composite input #2. (KEYCODE_TV_INPUT_COMPOSITE_2…","Switch to HDMI input #1. (KEYCODE_TV_INPUT_HDMI_1)","Switch to HDMI input #2. (KEYCODE_TV_INPUT_HDMI_2)","Switch to HDMI input #3. (KEYCODE_TV_INPUT_HDMI_3)","Switch to HDMI input #4. (KEYCODE_TV_INPUT_HDMI_4)","Switch to VGA input #1. (KEYCODE_TV_INPUT_VGA_1)","Media context menu. (KEYCODE_TV_MEDIA_CONTEXT_MENU)","Toggle network. (KEYCODE_TV_NETWORK)","Number entry. (KEYCODE_TV_NUMBER_ENTRY)","Toggle the power on an external TV. (KEYCODE_TV_POWER)","Radio. (KEYCODE_TV_RADIO_SERVICE)","Satellite. (KEYCODE_TV_SATELLITE)","Broadcast Satellite. (KEYCODE_TV_SATELLITE_BS)","Communication Satellite. (KEYCODE_TV_SATELLITE_CS)","Toggle between available satellites. (…","Analog Terrestrial. (KEYCODE_TV_TERRESTRIAL_ANALOG)","Digital Terrestrial. (KEYCODE_TV_TERRESTRIAL_DIGITAL)","Timer programming. (KEYCODE_TV_TIMER_PROGRAMMING)","The Horizontal Tabulation Tab key.","Toggle display of teletext, if available (VK_TELETEXT, …","Undo the last action. (APPCOMMAND_UNDO)","An unidentified key.","Advance video mode to next available mode. (…","","The WakeUp key. (KEYCODE_WAKEUP)","Cause device to identify itself in some manner, e.g., …","The Zenkaku (Full-Width) Characters key.","The Zenkaku/Hankaku (full-width/half-width) toggle key. (…","The ZoomIn key. (KEYCODE_ZOOM_IN)","The ZoomOut key. (KEYCODE_ZOOM_OUT)","Toggle between full-screen and scaled content, or alter …","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","The cursor has a defined position.","The back mouse button.","The button of a mouse.","A mouse button was pressed.","A mouse button was released.","","The mouse cursor state.","The mouse cursor entered the window.","The mouse cursor left the window.","The mouse cursor was moved","A mouse event.","The forward mouse button.","","","","The interaction of a mouse cursor.","The left mouse button.","A line-based scroll movement","The middle (wheel) button.","","Some other button.","A pixel-based scroll movement","","","","The right mouse button.","A scroll movement.","","The cursor is currently unavailable (i.e. out of bounds or …","The mouse wheel was scrolled.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the Cursor is over the given bounds.","","Returns the absolute position of the Cursor, if available.","Returns the relative position of the Cursor from the given …","Returns the relative position of the Cursor inside the …","Returns the absolute position of the Cursor, if available …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The scroll movement.","The new position of the mouse cursor","The number of horizontal lines scrolled","The number of horizontal pixels scrolled","The number of vertical lines scrolled","The number of vertical pixels scrolled","An interactive cross-platform multi-window application.","The Executor that will run commands and subscriptions.","The data needed to initialize your Application.","The type of messages your Application will produce.","The theme of your Application.","Initializes the Application with the flags provided to run …","Runs the multi-window Application.","Runs the multi-window Application.","Returns the scale factor of the window of the Application.","Returns the scale factor of the window of the Application.","Returns the current Style of the Theme.","Returns the current Style of the Theme.","Returns the event Subscription for the current state of the","Returns the event Subscription for the current state of the","Returns the current Theme of the window of the Application.","Returns the current Theme of the window of the Application.","Returns the current title of the window of the Application.","Handles a message and updates the state of the Application.","Returns the widgets to display in the window of the …","A generic overlay.","Build and show dropdown menus.","The appearance of a menu.","A list of selectable options.","The local state of a Menu.","The supported style of the StyleSheet.","The style sheet of a menu.","Produces the Appearance of a menu.","The Background of the menu.","The Border of the menu.","The background Color of a selected option in the menu.","The text Color of a selected option in the menu.","The text Color of the menu.","The settings of an application.","","If set to true, the renderer will try to perform …","","","","","","","","","","","The default Font to be used.","The text size that will be used by default.","","","","","The data needed to initialize the Application.","","The fonts to load on boot.","Returns the argument unchanged.","","","The identifier of the application.","","Calls U::from(self).","","","","","","","","","","","","","","","","","The window settings.","Initialize Application settings using the given data.","A request to listen to external events.","Creates a Subscription that publishes the events sent from …","Returns a Subscription that will call the given function …","Returns a Subscription that will create and asynchronously …","Returns a Subscription that will create and asynchronously …","Contains informations about the system (e.g. system name, …","","","","","","","","","","","Detailed processor model information","The number of physical cores on the processor","","","","","Query for available system information.","","Returns the argument unchanged.","","","Model information for the active graphics adapter","Underlying graphics backend for rendering","","Calls U::from(self).","","","","","","","","Total RAM size, KB","Memory used by this process, KB","Operating system kernel version","The operating system name","Short operating system version number","Long operating system version","","","","","","","","","","The style of an application.","A simple box.","The style of a button.","The style of a checkbox.","Colored text.","The style of a container.","A Theme with a customized Palette.","A Theme that uses a Custom palette.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","The built-in dark variant of a Palette.","The danger style.","The danger style.","The built-in dark variant.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","No filtering to the rendered SVG.","The default style.","The default style.","The default style.","The default style.","The destructive style.","The built-in light variant of a Palette.","The built-in light variant.","The style of a menu.","A color palette.","The style of a pane grid.","The style of a pick list.","The positive style.","The primary style.","The primary style.","The primary style.","The style of a progress bar.","The style of a radio button.","The style of a rule.","The style of a scrollable.","The secondary style.","The secondary style.","The style of a slider.","The success style.","The success style.","Svg","The style of text.","The text style.","The style of a text input.","The style of a text input.","A built-in theme.","The style of a toggler.","No style.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a custom Button style variant.","Creates a custom Scrollable theme.","Creates a custom Svg style.","The danger Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Custom theme from the given Palette.","Define the colors of a theme.","The primary Color of the Palette.","The success Color of the Palette.","The text Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Custom theme from the given Palette with a …","A set of background colors.","A set of danger colors.","The built-in dark variant of an Extended palette.","The built-in light variant of an Extended palette.","An extended set of colors generated from a Palette.","A pair of background and text colors.","A color palette.","A set of primary colors.","A set of secondary colors.","A set of success colors.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background Color of the Palette.","The set of background colors.","The base background color.","The base primary color.","The base secondary color.","The base success color.","The base danger color.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background color.","","","","","","","","The danger Color of the Palette.","The set of danger colors.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Generates an Extended palette from a simple Palette.","Generates a set of Primary colors from the base, …","Generates a set of Secondary colors from the base and text …","Generates a set of Success colors from the base, …","Generates a set of Danger colors from the base, …","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether the palette is dark or not.","Creates a new Pair from a background Color and some text …","Generates a set of Background colors from the base and …","The primary Color of the Palette.","The set of primary colors.","The set of secondary colors.","A stronger version of the base background color.","A stronger version of the base primary color.","A stronger version of the base secondary color.","A stronger version of the base success color.","A stronger version of the base danger color.","The success Color of the Palette.","The set of success colors.","The text Color of the Palette.","The text color.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A weaker version of the base background color.","A weaker version of the base primary color.","A weaker version of the base secondary color.","A weaker version of the base success color.","A weaker version of the base danger color.","A Duration type to represent a span of time, typically …","A measurement of a monotonically nondecreasing clock. …","The maximum duration.","The duration of one microsecond.","The duration of one millisecond.","The duration of one nanosecond.","The duration of one second.","A duration of zero time.","Computes the absolute difference between self and other.","","","","Panics","","","","","","Panics","","","","","","","","","Returns the total number of whole microseconds contained …","Returns the total number of whole milliseconds contained …","Returns the total number of nanoseconds contained by this …","Returns the number of whole seconds contained by this …","Returns the number of seconds contained by this Duration …","Returns the number of seconds contained by this Duration …","","","","","Returns Some(t) where t is the time self + duration if t …","Checked Duration addition. Computes self + other, …","Checked Duration division. Computes self / other, …","Returns the amount of time elapsed from another instant to …","Checked Duration multiplication. Computes self * other, …","Returns Some(t) where t is the time self - duration if t …","Checked Duration subtraction. Computes self - other, …","","","","","","","","","","","","","","","","","","","","Divide Duration by Duration and return f32.","Divide Duration by Duration and return f64.","Divide Duration by f32.","Divide Duration by f64.","","","","","Returns the amount of time elapsed from another instant to …","Returns the amount of time elapsed since this instant.","","","","","","","","","","","Returns a Subscription that produces messages at a set …","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of whole …","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of …","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns true if this Duration spans no time.","","","Multiplies Duration by f32.","Multiplies Duration by f64.","Creates a new Duration from the specified number of whole …","Returns an instant corresponding to “now”.","","","","","Saturating Duration addition. Computes self + other, …","Returns the amount of time elapsed from another instant to …","Saturating Duration multiplication. Computes self * other, …","Saturating Duration subtraction. Computes self - other, …","","","","Returns the amount of time elapsed from another instant to …","","","Panics","","","Panics","","Returns the fractional part of this Duration, in whole …","Returns the fractional part of this Duration, in whole …","Returns the fractional part of this Duration, in …","","","","","","","","","","The checked version of from_secs_f32.","The checked version of from_secs_f64.","","","","","","","","","","","","","A touch interaction.","A unique identifier representing a finger on a touch …","A touch interaction was ended.","A touch interaction was canceled.","An on-going touch interaction was moved.","A touch interaction was started.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A generic widget that produces a message when pressed.","A widget capable of drawing 2D graphics.","A box that can be checked.","A container that distributes its contents vertically.","A widget for searching and selecting a single value from a …","A reusable, custom widget that uses The Elm Architecture.","An element decorating some content.","A Theme that uses a Custom palette.","The default height of a ProgressBar.","The default height of a Slider.","The default padding of a PickList.","The default size of a Radio button.","The default size of a Toggler.","The default spacing of a Radio button.","The default width of a VerticalSlider.","The built-in dark variant.","The type of event this Component handles internally.","A frame that displays an image while keeping aspect ratio.","A widget that only rebuilds its contents when necessary.","The built-in light variant.","Emit messages on mouse events.","A collection of panes distributed using either vertical or …","A widget for selecting a single value from a list of …","A bar that displays progress.","A type of matrix barcode consisting of squares arranged in …","A circular button representing a choice.","The default graphics renderer for iced.","A widget that is aware of its dimensions.","A container that distributes its contents horizontally.","Display a horizontal or vertical rule for dividing content.","A widget that can vertically display an infinite amount of …","A widget which can render custom shaders with Iced’s wgpu…","An horizontal bar and a handle that selects a single value …","An amount of empty space.","The internal state of this Component.","A vector graphics image.","A paragraph.","A multi-line text input.","A field that can be filled with text.","A built-in theme.","A widget that applies any Theme to its contents.","","A toggler widget.","An element to display a widget over another.","An vertical bar and a handle that selects a single value …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the horizontal alignment of the contents of the Column…","Sets the vertical alignment of the contents of the Row .","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Allow your users to perform actions by pressing a button.","Creates a new Button with the provided content.","Draw 2D graphics for your users.","Creates a new Canvas.","Sets the size of the squares of the grid cell of the QRCode…","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the Container.","Show toggle controls using checkboxes.","Creates a new Checkbox.","","","","","","","","","","","","Sets both the dark and light Colors of the QRCode.","Creates a new Column with the given children.","Creates a Column with the given children.","Display a dropdown list of searchable and selectable …","Creates a new ComboBox.","Turns an implementor of Component into an Element that can …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Decorate content and apply alignment.","Creates a new Container with the provided content.","Sets the ContentFit of the Svg.","Sets the ContentFit of the Image.","","","Sets the optional default value for the Slider.","Sets the optional default value for the VerticalSlider.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the Direction of the Scrollable .","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the TextInput with the given Renderer, overriding its","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the FilterMethod of the Image.","","","","","Focuses the next focusable widget.","Focuses the previous focusable widget.","Sets the Renderer::Font of the text of the Checkbox.","Sets the Renderer::Font of the ComboBox.","Sets the font of the PickList.","Sets the text font of the Radio button.","Sets the Font of the TextEditor.","Sets the Font of the TextInput.","Sets the Renderer::Font of the text of the Toggler","Sets the font of the Tooltip.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new Svg that will display the contents of the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the gap between the content and its Tooltip.","Sets the Handle of the PickList.","Sets the height of the Column.","Sets the height of the Row.","Sets the height of the Button.","Sets the height of the Container.","Sets the height of the PaneGrid.","Sets the height of the ProgressBar.","Sets the height of the Scrollable.","Sets the height of the Slider.","Sets the height of the VerticalSlider.","Set the height of the custom Shader.","Sets the height of the Svg.","Sets the height of the Image boundaries.","Sets the height of the Canvas.","Highlights the TextEditor with the given Highlighter and a …","Creates a horizontal Rule with the given height.","Creates a horizontal Rule with the given height.","Creates a new horizontal Space with the given Length.","Sets the Icon of the Checkbox.","Sets the text_input::Icon of the ComboBox.","Sets the Icon of the TextInput.","Sets the Id of the Container.","Sets the Id of the Scrollable.","Sets the Id of the TextInput.","Display images in your user interface.","Creates a new Image.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Use widgets that can provide hints to ensure continuity.","Creates a new keyed::Column with the given children.","Creates a Column with the given children.","","","","","","","","","","","","","","","","","","Lays out the TextInput, overriding its Value if provided.","","","","","","","","","","","","Creates a new Lazy widget with the given data Dependency …","Sets the LineHeight of the ComboBox.","Sets the text::LineHeight of the TextInput.","Sets the maximum height of the Container.","Sets the maximum width of the Column.","Sets the maximum width of the Container.","A container intercepting mouse events.","","","","","","","","","","","","","","","","","","","","","","","Creates an empty Column.","Creates a MouseArea with the given content.","Creates an empty Row.","Creates an empty Themer that applies the given Theme to …","Creates a new Button with the given content.","Creates a new Checkbox.","Creates a new ComboBox with the given list of options, a …","Creates an empty Container.","Creates a PaneGrid with the given State and view function.","Creates a new PickList with the given list of options, the …","Creates a new ProgressBar.","Creates a new Radio button.","Creates a new Scrollable.","Creates a new Slider.","Creates new TextEditor with the given Content.","Creates a new TextInput.","Creates a new Toggler.","Creates a new Tooltip.","Creates a new VerticalSlider.","Creates a new Responsive widget with a closure that …","Creates a new Lazy widget with the given data Dependency …","Create a new custom Shader.","Creates a new Svg from the given Handle.","Creates an amount of empty Space with the given width and …","Creates a new Image with the given path.","Creates a new Canvas.","Creates a new QRCode with the provided State.","Sets the message that should be produced when some action …","Sets the message that will be produced when a Pane of the …","Sets the message that will be produced when the outside …","Enables the drag and drop interactions of the PaneGrid, …","","","","","","","","","","","","","","","","","","","","","","","Sets the message that should be produced when some text is …","Sets the message that should be produced when some text is …","The message to emit on a middle button press.","The message to emit on a middle button release.","Sets the message that will be produced when an option of …","Sets the message that should be produced when some text is …","The message to emit on a left button press.","Sets the message that will be produced when the Button is …","Sets the message that will be produced when the Button is …","The message to emit on a left button release.","Sets the release message of the Slider. This is called …","Sets the release message of the VerticalSlider. This is …","Enables the resize interactions of the PaneGrid, which will","The message to emit on a right button press.","The message to emit on a right button release.","Sets a function to call when the Scrollable is scrolled.","Sets the message that should be produced when the TextInput…","","","","","","","","","","Update the Component state based on the provided Operation","","","Display interactive elements on top of other widgets.","","","","","","","","","","","","","","Sets the Padding of the Column.","Sets the Padding of the Row.","Sets the Padding of the Button.","Sets the Padding of the ComboBox.","Sets the Padding of the Container.","Sets the Padding of the PickList.","Sets the Padding of the TextEditor.","Sets the Padding of the TextInput.","Sets the padding of the Tooltip.","Let your users split regions of your application and …","Converts the TextInput into a secure password input.","Display a dropdown list of selectable values.","Creates a new PickList.","Sets the placeholder of the PickList.","Provide progress feedback to your users.","Creates a new ProgressBar.","Adds an element to the Column.","Adds an Element to the Row.","Encode and display information in a QR code.","Create choices using radio buttons.","Creates a new Radio.","Creates a new Responsive widget with a closure that …","Creates a new Row with the given children.","Creates a Row with the given children.","Display a horizontal or vertical rule for dividing content.","Navigate an endless amount of content with a scrollbar.","Creates a new Scrollable with the provided content.","A custom shader widget for wgpu applications.","Creates a new Shader.","Sets the optional “shift” step for the Slider.","Sets the optional “shift” step for the VerticalSlider.","","","","","","Sets the size of the Checkbox.","","Sets the text sixe of the ComboBox.","","","","","","","Sets the size of the Radio button.","","","","","Sets the text size of the TextInput.","","Sets the size of the Toggler.","","Sets the size of the text of the Tooltip.","","","","","","","","","","","","Display an interactive selector of a single value from a …","Creates a new Slider.","Sets whether the Tooltip is snapped within the viewport.","Distribute content vertically.","Sets the vertical spacing between elements.","Sets the horizontal spacing between elements.","Sets the spacing between the Checkbox and the text.","Sets the spacing between the panes of the PaneGrid.","Sets the spacing between the Radio button and the text.","Sets the spacing between the Toggler and the text.","","","","","","","","","","","","","","","","","","","","","Sets the step size of the Slider.","Sets the step size of the VerticalSlider.","Sets the style variant of this Button.","Sets the style of the Checkbox.","Sets the style of the ComboBox.","Sets the style of the Container.","Sets the style of the PaneGrid.","Sets the style of the PickList.","Sets the style of the ProgressBar.","Sets the style of the Radio button.","Sets the style of the Rule.","Sets the style of the Scrollable .","Sets the style of the Slider.","Sets the style of the TextEditor.","Sets the style of the TextInput.","Sets the style of the Toggler.","Sets the style of the Tooltip.","Sets the style of the VerticalSlider.","Sets the style variant of this Svg.","Display vector graphics in your application.","Creates a new Svg widget from the given Handle.","","","","","","","","","","","","","","","","","","","","","Draw and interact with text.","Creates a new Text widget with the provided content.","Sets the horizontal alignment of the text of the Toggler","Display a multi-line text input for text editing.","Creates a new TextEditor.","Display fields that can be filled with text.","Creates a new TextInput.","Sets the style of the TextInput of the ComboBox.","Sets the text text::LineHeight of the Checkbox.","Sets the text text::LineHeight of the PickList.","Sets the text text::LineHeight of the Radio button.","Sets the text text::LineHeight of the Toggler.","Sets the text::Shaping strategy of the Checkbox.","Sets the text::Shaping strategy of the PickList.","Sets the text::Shaping strategy of the Radio button.","Sets the text::Shaping strategy of the Toggler.","Sets the text::Shaping strategy of the Tooltip.","Sets the text size of the Checkbox.","Sets the text size of the PickList.","Sets the text size of the Radio button.","Sets the text size o the Toggler.","Use the built-in theme and styles.","A widget that applies any Theme to its contents.","Show toggle controls using togglers.","Creates a new Toggler.","Display a widget over another.","Creates a new Tooltip with the provided content, tooltip …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the Component state …","Creates a vertical Rule with the given width.","Creates a vertical Rule with the given width.","Display an interactive selector of a single value from a …","Creates a new VerticalSlider.","Creates a new vertical Space with the given Length.","Produces the widgets of the Component, which may trigger …","Sets the width of the Column.","Sets the width of the Row.","Sets the width of the Button.","Sets the width of the Checkbox.","Sets the width of the ComboBox.","Sets the width of the Container.","Sets the width of the PaneGrid.","Sets the width of the PickList.","Sets the width of the ProgressBar.","Sets the width of the Radio button.","Sets the width of the Scrollable.","Sets the width of the Slider.","Sets the width of the TextInput.","Sets the width of the Toggler.","Sets the width of the VerticalSlider.","Set the width of the custom Shader.","Sets the width of the Svg.","Sets the width of the Image boundaries.","Sets the width of the Canvas.","Creates a Column with the given elements.","Creates a Row with the given elements.","Creates an amount of vertical Space.","Creates an amount of horizontal Space.","The appearance of a button.","A generic widget that produces a message when pressed.","The local state of a Button.","The supported style of the StyleSheet.","A set of rules that dictate the style of a button.","Produces the active Appearance of a button.","","","","","","","","","","","The Background of the button.","The Border of the buton.","","","","","","","","","","","","","","","","","Produces the disabled Appearance of a button.","","","Draws a Button.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Produces the hovered Appearance of a button.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Computes the layout of a Button.","Returns the mouse::Interaction of a Button.","Creates a new State.","Produces the pressed Appearance of a button.","The Shadow of the butoon.","The amount of offset to apply to the shadow of the button.","The text Color of the button.","","","","","","","","","","","","","","","","","","","Processes the given Event and updates the State of a Button","A bevelled corner.","The stroke for each sub-path does not extend beyond its …","A simple cache that stores generated Geometry to avoid …","A widget capable of drawing 2D graphics.","A Canvas event.","The style used to fill geometry.","","","The kind of geometry this renderer can draw.","A fill which linearly interpolates colors along a …","A Gradient color.","A keyboard event.","The shape used at the end of open subpaths when they are …","The dash pattern used when stroking the line.","The shape used at the corners of paths or basic shapes …","A linear gradient interpolates colors along a direction …","A sharp corner.","A mouse event.","An immutable set of points that may or may not be …","The state and logic of a Canvas.","A renderer capable of drawing some Self::Geometry.","At the end of each sub-path, the shape representing the …","A round corner.","A solid Color.","At the end of each sub-path, the shape representing the …","The internal state mutated by the Program.","The style of a stroke.","The coloring style of some drawing.","A bunch of text that can be drawn to a canvas","","","A touch event.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the coordinate of the center of the Frame.","Creates a new Path representing a circle given its center …","Clears the Cache, forcing a redraw the next time it is …","","","","","","","","","","","","","","","","","","","","","The color of the text","","","","","","","","","","","","","","The contents of the text","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the given layers of Self::Geometry.","Draws the state of the Program, producing a bunch of …","Draws Geometry using the provided closure and stores it in …","Computes the Paths of the Text and draws them using the …","","","","","","","","","","","","","","","","","Handle events of a canvas.","Fill Geometry with a certain style.","Draws the given Path on the Frame by filling it with the …","Draws an axis-aligned rectangle given its top-left corner …","Draws the characters of the given Text on the Frame, …","","","","","","","","","","","","The font of the text","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","A gradient that can be used as a fill for some geometry.","Returns the height of the Frame.","The horizontal alignment of the text","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new Path representing a line segment given its …","The shape to be used at the end of open subpaths when they …","The dash pattern used when stroking the line.","The line height of the text.","The shape to be used at the corners of paths or basic …","Returns the current mouse interaction of the Program.","","Creates a new empty Cache.","Creates a new Path with the provided closure.","The offset of LineDash::segments to start the pattern.","Packs the Gradient for use in shader code.","Build different kinds of 2D shapes.","The position of the text relative to the alignment …","Returns the internal lyon_path::Path.","Creates a new Path representing a rectangle given its …","Applies a rotation in radians to the current transform of …","The fill rule defines how to determine what is inside and …","Applies a uniform scaling to the current transform of the …","Applies a non-uniform scaling to the current transform of …","The alternating lengths of lines and gaps which describe …","The shaping strategy of the text.","Returns the dimensions of the Frame.","The size of the text","Create lines from a Path and assigns them various …","Draws the stroke of the given Path on the Frame with the …","The color or gradient of the fill.","The color or gradient of the stroke.","","","","","","","","","","","Returns the current Path with the given transform applied …","Applies a translation to the current transform of the Frame…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Updates the State of the Program.","The vertical alignment of the text","Returns the width of the Frame.","The distance between the two edges of the stroke.","Executes the given drawing operations within a Rectangle …","Sets the color of the Stroke.","Sets the LineCap of the Stroke.","Sets the LineJoin of the Stroke.","Stores the current transform of the Frame and executes the …","Sets the width of the Stroke.","The Event was handled and processed by a widget.","A Canvas event.","The Event was NOT handled by any widget.","A keyboard event.","A mouse event.","The status of an Event after being processed.","A touch event.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Merges two Status into one.","","","","","","","","","","","The style used to fill geometry.","A Gradient color.","","The fill rule defines how to determine what is inside and …","A solid Color.","The coloring style of some drawing.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","The fill rule defines how to determine what is inside and …","The color or gradient of the fill.","","","","","","","","","","A fill which linearly interpolates colors along a …","A linear gradient.","A linear gradient interpolates colors along a direction …","Packed Gradient data for use in shader code.","","","Adds a new ColorStop, defined by an offset and a color, to …","Adds multiple ColorStops to the gradient.","","","","","","","","","","","","","","","","","","","","","","","","","","","The absolute ending position of the gradient.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Creates a new Linear builder.","Creates a new Packed gradient for use in shader code.","Packs the Gradient for use in shader code.","The absolute starting position of the gradient.","ColorStops along the linear gradient direction.","","","","","","","","","","","","","","","","","","","A segment of a differentiable curve.","A Path builder.","An immutable set of points that may or may not be …","","","Build and draw curves.","Adds an Arc to the Path from start_angle to end_angle in a …","Adds a circular arc to the Path with the given control …","","","","","","","","","Adds a cubic Bézier curve to the Path given its two …","","","","","Builds the Path of this Builder.","The center of the arc.","Adds a circle to the Path given its center coordinate and …","","","Closes the current sub-path in the Path with a straight …","","","","","","","","","","","","Adds an ellipse to the Path using a clockwise direction.","The end of the segment’s angle, clockwise rotation from …","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Connects the last point in the Path to the given Point …","Moves the starting point of a new sub-path to the given …","Creates a new Builder.","Adds a quadratic Bézier curve to the Path given its …","The radius of the arc.","Adds a rectangle to the Path given its top-left corner …","The start of the segment’s angle, clockwise rotation …","","","","","","","","","","","","","","","","","","A segment of a differentiable curve.","An elliptical Arc.","","","","","","","","The center of the arc.","The center of the arc.","","","","","","","","The end of the segment’s angle, clockwise rotation from …","The end of the segment’s angle, clockwise rotation from …","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","The radii of the arc’s ellipse. The horizontal and …","The radius of the arc.","The clockwise rotation of the arc’s ellipse.","The start of the segment’s angle, clockwise rotation …","The start of the segment’s angle, clockwise rotation …","","","","","","","","","","Flag parameters for arcs as described by the SVG …","An alias for usize.","A view over a contiguous storage of custom attributes.","Interface for objects storing custom attributes associated …","An alias for a slice of f32 values.","","","","A beveled corner is to be used to join path segments. The …","The stroke for each sub-path does not extend beyond its …","ID of a control point in a path.","","","","","","","ID of an endpoint point in a path.","","Represents an event or edge of path.","Refers to an event in a path.","The fill rule defines how to determine what is inside and …","","","","A path event representing endpoints and control points as …","A view over a sequence of endpoint IDs forming a polygon.","","","","Line cap as defined by the SVG specification.","Line join as defined by the SVG specification.","A sharp corner is to be used to join path segments.","Same as a miter join, but if the miter limit is exceeded, …","An empty attribute slice.","","","","A simple path data structure.","An object that stores multiple paths contiguously.","A view on a PathBuffer.","The commands of a path encoded in a single array using IDs …","A view over PathCommands.","A path event representing endpoints and control points as …","A view on a Path.","A view over a sequence of endpoints forming a polygon.","Interface for types types (typically endpoints and control …","Interface for objects storing endpoints and control points …","","","","","","At each end of each sub-path, the shape representing the …","A round corner is to be used to join path segments.","The positive or negative side of a vector or segment.","At the end of each sub-path, the shape representing the …","The two possible orientations for the edges of a shape to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a view on the path commands.","Returns a view on this Path.","","Returns a slice over an endpoint’s custom attributes.","Returns a slice over an endpoint’s custom attributes.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Path building utilities.","Creates a PathCommandsBuilder to create path commands.","Creates a Builder to build a path.","","Creates a BuilderWithAttributes to build a path with …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A generic representation for paths that allow more control …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns an iterator over the path, with endpoints and …","Returns the first endpoint and its custom attributes if …","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the endpoint’s custom attributes as a slice of …","","","","","","","","","","","","","","","","","","","Iterates over the endpoint and control point ids of the …","Iterates over the endpoint and control point ids of the …","Returns an iterator of IdEvent.","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the path buffer is empty.","Returns whether the path buffer is empty.","","","","","Returns an iterator over the path commands.","Returns an iterator over the path commands.","Iterates over the entire Path, ignoring custom attributes.","Iterates over the path.","","","Returns an iterator of Event<&T>.","","Iterates over the entire Path with custom attributes.","Iterates over the entire Path with custom attributes.","Tools to iterate over paths.","Of the four candidate arc sweeps, two will represent an …","Returns the last endpoint and its custom attributes if any.","","Returns the number of paths in the path buffer.","Returns the number of paths in the path buffer.","f32 version of the lyon_geom types used everywhere. Most …","","Creates an Empty Path.","","Returns the next event id within the path.","Returns the next event id within the path.","Returns the next event id within the sub-path.","Returns the next event id within the path.","Returns the number of float attributes per endpoint.","","","","","","","The default path data structure.","A container to store multiple paths contiguously.","Returns an iterator of PathEvent.","Returns a view on a path made of these commands with …","","","Specific path types for polygons.","","","Returns a reversed version of this path in the form of an …","Returns a reversed version of this path in the form of an …","Creates an WithSvg to build a path with a rich set of …","If sweep is true, then the arc will be drawn in a “…","","","","","","","","","","","","","","","","","","","","","","","","lyon_path traits reexported here for convenience.","","Applies a transform to all endpoints and control points of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The radius of each corner of a rounded rectangle.","Builds a path.","A Builder that approximates curves with successions of …","A convenience wrapper for PathBuilder without custom …","The base path building interface.","The type of object that is created by this builder.","A path building interface that tries to stay close to SVG…","Builds a path with a transformation applied.","Implements an SVG-like building interface on top of a …","","","","","","Adds a sub-path containing a circle.","Adds a sub-path containing a circle.","Adds a sub-path containing an ellipse.","Adds a sub-path containing an ellipse.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single point.","Adds a sub-path containing a single point.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","","Adds an elliptical arc.","","","","","","","","","","","","","","","","","","","","","","Starts a new sub-path at a given position.","","","Starts a new sub-path at a given position.","","","","","","","","","","","","","","Builds a path object, consuming the builder.","","","","","","","Builds a path object, consuming the builder.","","","","","Ends the current sub-path by connecting it back to its …","Closes the current sub path.","","","Closes the current sub path.","","","","","","Adds a cubic bézier curve to the current sub-path.","Adds a cubic bézier segment to the current sub-path.","","","","","Adds a cubic bézier curve to the current sub-path.","","","","","","","","","","","","","","","","","","","","","","","","","Ends the current sub path.","","","Ends the current sub path.","","","","","","Returns a builder that approximates all curves with …","","Returns a builder that approximates all curves with …","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","Adds an horizontal line segment.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Adds a line segment to the current sub-path.","Adds a line segment to the current sub-path.","","","","","Adds a line segment to the current sub-path.","","Start a new sub-path at the given position.","","","","","","","","","","","","","Applies the provided path event.","Applies the provided path event.","Adds a quadratic bézier curve to the current sub-path.","Adds a quadratic bézier segment to the current sub-path.","","","","","Adds a quadratic bézier curve to the current sub-path.","","Equivalent to arc_to in relative coordinates.","","Equivalent to cubic_bezier_to in relative coordinates.","","Adds an horizontal line segment in relative coordinates.","","Equivalent to line_to in relative coordinates.","","Equivalent to move_to in relative coordinates.","","Equivalent to quadratic_bezier_to in relative coordinates.","","Adds a vertical line segment in relative coordinates.","","Hints at the builder that a certain number of endpoints …","Hints at the builder that a certain number of endpoints …","","","","","Hints at the builder that a certain number of endpoints …","","","","","Equivalent to cubic_bezier_to with implicit first control …","","Equivalent to quadratic_bezier_to with implicit control …","","Equivalent to smooth_cubic_bezier_to in relative …","","Equivalent to smooth_quadratic_bezier_to in relative …","","","","","","","","Returns a builder that applies the given transformation to …","","Returns a builder that applies the given transformation to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Adds a vertical line segment.","","","Returns a builder that support SVG commands.","Returns a builder that support SVG commands.","","A view on a PathCommands buffer and two slices for …","An iterator of Event<&Endpoint, &ControlPoint>.","An iterator of Event<&Endpoint, &ControlPoint>.","The commands of a path encoded in a single array using IDs …","Builds path commands.","A view over PathCommands.","An iterator of PathEvent.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Consumes the builder and returns path commands.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over the events of the path using …","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over the events of the path using IDs.","","Creates a builder without allocating memory.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a pre-allocated builder.","An angle in radians","An elliptic arc curve segment.","Flag parameters for arcs as described by the SVG …","","A 2d curve segment defined by four points: the beginning …","","","","","","","An infinite line defined by a point and a vector.","A line defined by the equation …","A linear segment.","","","","","","A 2d curve segment defined by three points: the beginning …","Alias for euclid::default::Rotation2D","","","","","","Common APIs to segment types.","","An elliptic arc curve segment using the SVG’s end-point …","","","","Alias for euclid::default::Transform2D","Alias for euclid::default::Translation2D","A 2D triangle defined by three points a, b and c.","","","","","","","","","","","","","","","","","","","Return the curve after the split point.","","Return the curve after the split point.","","Return the curve after the split point.","","Return the segment after the split point.","Return the curve after the split point.","","Angle in radians","Returns the shortest signed angle between two angles.","","","Compute the length of the segment using a flattened …","","","","Compute the length of the segment using a flattened …","","","Elliptic arc related maths and tools.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the curve before the split point.","Return the curve before the split point.","","","Return the curve before the split point.","","Return the segment before the split point.","Return the curve before the split point.","","","","","","","","","","","","","","","","","","","","Returns a conservative rectangle that contains the curve.","Returns a conservative rectangle that contains the curve.","Return the smallest rectangle containing this segment.","Returns the smallest rectangle the curve is contained in","Returns the smallest rectangle that contains this triangle.","","Returns the smallest range of x that contains this curve.","Returns the smallest range of x that contains this curve.","Returns a conservative range of x that contains this …","","Returns the smallest range of y that contains this curve.","Returns the smallest range of y that contains this curve.","Returns a conservative range of y that contains this …","Returns a triangle containing this curve segment.","","","","Cast from one numeric representation to another.","","","Create simple circle.","Clip this segment against a rectangle.","Horizontally clip this segment against a range of the x …","Vertically clip this segment against a range of the y axis.","","","","","","","","","","","","","","","","","","","Computes the closest point on this segment to p.","Analytic solution to finding the closest point on the …","","","","","","","","","","","","","","","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","","","","","","","","","","","","","","","","","","","","","Sample the derivative at t (expecting t between 0 and 1).","","","Sample the curve’s derivative at t (expecting t between …","","","Sample the curve’s derivative at t (expecting t between …","Computes the distance between this segment and a point.","","","Returns the shortest distance between this segment and a …","","","","","","","","","","","","","","","","","","","","","","","","","Sample x derivative at t (expecting t between 0 and 1).","Sample the x coordinate of the curve’s derivative at t …","","","Sample the x coordinate of the curve’s derivative at t …","","Sample y derivative at t (expecting t between 0 and 1).","","Sample the y coordinate of the curve’s derivative at t …","","Sample the y coordinate of the curve’s derivative at t …","","","Epsilon constants are usually not a good way to deal with …","","","","","","","","","","","","","","","","Returns a conservative rectangle that contains the curve.","Returns a conservative rectangle the curve is contained in.","Returns a conservative rectangle that contains the curve.","","Returns a conservative range of x that contains this curve.","Returns a conservative range of x that contains this curve.","","Returns a conservative range of y that contains this curve.","Returns a conservative range of y that contains this curve.","Computes a “fat line” of this segment.","Computes a “fat line” of this segment.","","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Find the interval of the beginning of the curve that can …","Swap the direction of the segment.","","Swap the direction of the segment.","Swap the beginning and the end of the segment.","","","Returns an inverted version of this segment where the …","Swap the beginning and the end of the segment.","","","","","","","","","","","Approximate the arc with a sequence of cubic bézier …","Approximates the arc with a sequence of cubic bézier …","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","","Approximates the curve with sequence of line segments.","","","Compute a flattened approximation of the curve, invoking a …","Invokes a callback at each inflection point if any.","","Return local x extrema or None if this curve is monotonic.","","Return local y extrema or None if this curve is monotonic.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Approximate the arc with a sequence of quadratic bézier …","Approximates the arc with a sequence of quadratic bézier …","Approximates the cubic bézier curve with sequence of …","Approximate the arc with a sequence of quadratic bézier …","Approximates the arc with a sequence of quadratic bézier …","Approximates the cubic bézier curve with sequence of …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","","","","Start of the curve.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","Convert from the SVG arc notation.","","Sample the curve’s angle at t (expecting t between 0 and …","","The extent of the element in the U units along the y axis …","","","","","","","","","","","","","","Computes the intersection (if any) between this segment …","","Test for triangle-triangle intersection.","","","Test for triangle-segment intersection.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the curve can be approximated with a …","Returns true if the angle is a finite number.","","Returns true if the curve can be approximated with a …","Returns true if the curve can be approximated with a …","Returns whether this segment is fully monotonic.","Returns whether this segment is fully monotonic.","Returns true if the curve can be safely approximated with …","Per SVG spec, this arc should be rendered as a line_to …","","Returns whether this segment is monotonic on the x axis.","Returns whether this segment is monotonic on the x axis.","Returns whether this segment is monotonic on the y axis.","Returns whether this segment is monotonic on the y axis.","Of the four candidate arc sweeps, two will represent an …","Computes the length of this segment.","Computes the length of this segment.","Linear interpolation between two angles, using the …","","","Computes the intersection points (if any) between this …","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","Computes the intersections (if any) between this segment a …","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","Computes the intersections (if any) between this segment …","Return the x inflection point or None if this curve is …","Return the y inflection point or None if this curve is …","","","","","","","","Computes third mid-point of this segment.","","","","","","","Computes the number of quadratic bézier segments required …","","","","","","","Shorthand for Point::new(x, y).","","Returns this angle in the [0..2*PI[ range.","","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment a …","","","","","Sample the curve at t (expecting t between 0 and 1).","","Sample the curve at t (expecting t between 0 and 1).","Sample the curve at t (expecting t between 0 and 1).","","","Sample the segment at t (expecting t between 0 and 1).","","Sample the curve at t (expecting t between 0 and 1).","Sample the curve’s tangent at t (expecting t between 0 …","Changes the segment’s length, moving destination point.","Returns this angle in the ]-PI..PI] range.","","","Returns (sin(self), cos(self)).","Shorthand for Size::new(x, y).","Return the parameter values corresponding to a given x …","","Return the parameter values corresponding to a given y …","","","","","","Split this curve into two sub-curves.","","Split this curve into two sub-curves.","","Split this curve into two sub-curves.","","Split this curve into two sub-segments.","Split this curve into two sub-curves.","","","Return the curve inside a given range of t.","Return the sub-curve inside a given range of t.","","","Return the sub-curve inside a given range of t.","Return the sub-segment inside a given range of t.","","Return the sub-curve inside a given range of t.","","Computes the squared distance between this segment and a …","Returned the squared distance to a point.","Returns the shortest squared distance between this segment …","Computes the squared length of this segment.","","","","","","If sweep is true, then the arc will be drawn in a “…","","","End of the curve.","","","","","","","","","","","","","Converts this arc from endpoints to center notation.","Elevate this curve to a third order bézier.","","","","","","Cast angle to f32.","","","","","Cast angle f64.","Returns the line containing this segment.","","","","","","","","","","Approximate the curve with a single quadratic bézier …","Evaluates an upper bound on the maximum distance between …","Convert to the SVG arc notation.","Returns the vector between this segment’s from and to …","","[Not implemented] Applies the transform to this triangle …","Applies the transform to this curve and returns the …","Applies the transform to this segment and returns the …","Applies the transform to this curve and returns the …","","Fallible cast from one numeric representation to another.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Shorthand for Vector::new(x, y).","","","","The extent of the element in the U units along the x axis …","Sample x at t (expecting t between 0 and 1).","","","Sample the x coordinate of the curve at t (expecting t …","","","Sample the x coordinate of the segment at t (expecting t …","","Sample the x coordinate of the curve at t (expecting t …","","","The x (traditionally, horizontal) coordinate.","Find the advancement of the x-most position in the curve.","Find the advancement of the x-most position in the curve.","Find the x-least position in the curve.","Find the advancement of the x-least position in the curve.","","","Sample y at t (expecting t between 0 and 1).","","","","Sample the y coordinate of the curve at t (expecting t …","","Sample the y coordinate of the segment at t (expecting t …","Sample the y coordinate of the curve at t (expecting t …","","","","The y (traditionally, vertical) coordinate.","Find the advancement of the y-most position in the curve.","Find the advancement of the y-most position in the curve.","Find the advancement of the y-least position in the curve.","Find the advancement of the y-least position in the curve.","","An elliptic arc curve segment.","Flag parameters for arcs as described by the SVG …","Flattening iterator for arcs.","An elliptic arc curve segment using the SVG’s end-point …","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","Of the four candidate arc sweeps, two will represent an …","","","","","If sweep is true, then the arc will be drawn in a “…","","","","","","","","","","","","","A string with a fixed capacity.","A vector with a fixed capacity.","Error value indicating insufficient capacity","A draining iterator for ArrayVec.","By-value iterator for ArrayVec.","","","","","","","","","","","","","","","","","","","","","","","","","","","Return a raw mutable pointer to the vector’s buffer.","Return a mutable slice containing all elements of the …","Return a mutable string slice of the whole ArrayString.","Return a raw pointer to the vector’s buffer.","","","Return a slice containing all elements of the vector.","Return a string slice of the whole ArrayString.","","","","","","","","","","","","","","","Return the capacity of the ArrayVec.","Return the capacity of the ArrayString.","Remove all elements in the vector.","Make the string empty.","","","","","","","","","","","","","","","","","","","","","","Return an empty array","Return an empty ArrayString","","","","","","","","","","","","","","","","","","","","Create a draining iterator that removes the specified …","","","","","","","","","Extract the overflowing element","","","","","","","","","","","","","","","Extend the ArrayVec with an iterator.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a new ArrayString from a str.","Returns the argument unchanged.","","","","","","Create a new ArrayString from a byte string literal.","Create an ArrayVec from an iterator.","","","","","","","","","","","","","","","","","","","","Insert element at position index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the inner fixed size array, if it is full to its …","Return the inner fixed size array.","","","","","","","","","","","Returns whether the ArrayVec is empty.","Returns whether the string is empty.","Return true if the ArrayVec is completely filled to its …","Return if the ArrayString is completely filled.","","","","Return the number of elements in the ArrayVec.","Return the length of the string.","","","","","","Create a new empty ArrayVec.","Create a new empty ArrayString.","Create a new CapacityError from element.","Create a new empty ArrayVec (const fn).","Create a new empty ArrayString (const fn).","","","","","","","","","Remove the last element in the vector and return it.","Removes the last character from the string and returns it.","Remove the element at index and shift down the following …","Push element to the end of the vector.","Adds the given char to the end of the string.","Adds the given string slice to the end of the string.","Push element to the end of the vector without checking the …","Returns the capacity left in the ArrayVec.","Returns the capacity left in the ArrayString.","Remove the element at index and shift down the following …","Removes a char from this ArrayString at a byte position …","Retains only the elements specified by the predicate.","Set the vector’s length without dropping or moving out …","Set the strings’s length.","Convert into a CapacityError that does not carry an …","","","","Remove the element at index and swap the last element into …","Remove the element at index and swap the last element into …","Returns the ArrayVec, replacing the original with a new …","","","","","","","","","Shortens the vector, keeping the first len elements and …","Shortens this ArrayString to the specified length.","","","","","","Copy all elements from the slice and append to the ArrayVec…","","","","","","","","","Insert element at position index.","","","","","","","","","","","Push element to the end of the vector.","Adds the given char to the end of the string.","Adds the given string slice to the end of the string.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new ArrayString value fully filled with ASCII …","A 2d curve segment defined by four points: the beginning …","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","An angle in radians","A 2d vector of booleans, useful for component-wise logic …","A 3d vector of booleans, useful for component-wise logic …","A 2d axis aligned rectangle represented by its minimum and …","An axis aligned 3D box represented by its minimum and …","Homogeneous vector in 3D space.","A one-dimensional distance, with value represented by T …","A 2d Point tagged with a unit.","A 3d Point tagged with a unit.","A 2d Rectangle optionally tagged with a unit.","A rigid transformation. All lengths are preserved under …","A transform that can represent rotations in 2d, …","A transform that can represent rotations in 3d, …","A scaling factor between two different units of …","A group of 2D side offsets, which correspond to …","A 2d size tagged with a unit.","A 3d size tagged with a unit.","A 2d transform represented by a column-major 3 by 3 …","A 3d transform stored as a column-major 4 by 4 matrix.","A 2d transformation from a space to another that can only …","A 3d transformation from a space to another that can only …","Trait for basic trigonometry functions, so they can be …","The default unit.","A 2d Vector tagged with a unit.","A 3d Vector tagged with a unit.","Computes the absolute value of each component.","Computes the absolute value of each component.","Computes the vector with absolute values of each component.","Computes the vector with absolute values of each component.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if all components are true and false …","Returns true if all components are true and false …","Returns new vector with by-component AND operation applied.","Returns new vector with by-component AND operation applied.","Angle in radians","Returns the signed angle between this vector and the x …","Returns the signed angle between this vector and another …","Returns the positive angle between this vector and another …","Returns true if any component are true and false otherwise.","Returns true if any component are true and false otherwise.","","","","","","","","","Returns true is this transform is approximately equal to …","Returns true is this transform is approximately equal to …","","","","","Returns true is this transform is approximately equal to …","Returns true is this transform is approximately equal to …","Returns true is this transform is approximately equal to …","","","","","Utilities for testing approximate ordering - especially …","","","Returns result of multiplication of both components","Creates a rotation around a given axis.","Creates a rotation around the x axis.","Creates a rotation around the y axis.","Creates a rotation around the z axis.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Shorthand for …","Shorthand for BoolVector2D { x, y }.","Shorthand for BoolVector3D { x, y, z }.","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast the unit","Cast the unit","Cast the unit","Cast the unit, preserving the numeric value.","Cast the unit, preserving the numeric value.","Cast the unit","Cast the unit, preserving the numeric value.","Cast the unit, preserving the numeric value.","Cast the unit","Cast the unit","Cast the unit.","Cast the unit.","","See Point2D::ceil()","Rounds each component to the smallest integer equal or …","Rounds each component to the smallest integer equal or …","See Point3D::ceil()","Rounds each component to the smallest integer equal or …","See Size2D::ceil().","Rounds each component to the smallest integer equal or …","See Size3D::ceil().","Rounds each component to the smallest integer equal or …","See Vector2D::ceil()","See Vector3D::ceil()","Rounds each component to the smallest integer equal or …","","","","Returns the point each component of which clamped by …","Returns the point each component of which clamped by …","Returns the point each component of which clamped by …","Returns the size each component of which clamped by …","Returns the size each component of which clamped by …","Returns the vector each component of which is clamped by …","Returns the vector each component of which is clamped by …","Return this vector with minimum and maximum lengths …","Return this vector with minimum and maximum lengths …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the component-wise division of the two vectors.","Returns the component-wise division of the two vectors.","Returns the component-wise multiplication of the two …","Returns the component-wise multiplication of the two …","","","","","","","","","","","","","","","","","","","","","","","","Returns true if this box contains the point. Points are …","Returns true if this box3d contains the point. Points are …","Returns true if this rectangle contains the point. Points …","","","Returns true if this box contains the interior of the …","Returns true if this box3d contains the interior of the …","Returns true if this rectangle contains the interior of …","","Returns the norm of the cross product [self.x, self.y, 0] …","Cross product.","Decompose this into a translation and an rotation to be …","A set of aliases for all types, tagged with the default …","","","","","","","","","","","Returns the identity transform.","Returns the identity transform.","","","","","","","","The extent of the element in the U units along the z axis.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes and returns the determinant of this transform.","Compute the determinant of the transform.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calculates Euclidean division, the matching method for …","Calculates Euclidean division, the matching method for …","Dot product.","Dot product.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a rotation from Euler angles.","Create a 3d point from this one, using the specified z …","Create a 3d vector from this one, using the specified z …","","Rounds each component to the biggest integer equal or …","See Point2D::floor()","See Point3D::floor()","Rounds each component to the biggest integer equal or …","Rounds each component to the biggest integer equal or …","See Size2D::floor().","See Size3D::floor().","Rounds each component to the biggest integer equal or …","See Vector2D::floor()","Rounds each component to the biggest integer equal or …","See Vector3D::floor()","Rounds each component to the biggest integer equal or …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","Constructor taking angle and length","Create a transform providing its components via an array …","Create a transform providing its components via an array …","Equivalent to from_array with elements packed two at a time","Equivalent to from_array with elements packed four at a …","Constructor setting the same value to all sides, taking a …","Constructor taking properly Lengths instead of scalar …","Constructor taking properly Lengths instead of scalar …","Constructor taking a typed Length for each side.","Constructor taking scalar strongly typed lengths.","Constructor taking scalar strongly typed lengths.","Constructor taking properly Lengths instead of scalar …","Constructor taking properly Lengths instead of scalar …","Constructor.","Returns the smallest box containing all of the provided …","Returns the smallest box containing all of the provided …","Returns the smallest rectangle defined by the …","","Convenience function to create a scale transform from a …","Creates a Box2D of the given size, at offset zero.","Creates a Box3D of the given size, at offset zero.","Creates a rect of the given size, at offset zero.","","","","","","","","","","","","","","","","","","","","","","","","","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unit-less value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Construct side offsets from min and a max vector offsets.","Construct side offsets from min and a max vector offsets.","Unpack the underlying value from the wrapper.","Returns the underlying scalar scale factor.","Returns self.angle as a strongly typed Angle<T>.","Returns vector with results of “greater then” …","Returns vector with results of “greater than” …","Returns vector with results of “greater than” …","Returns vector with results of “greater than” …","","","","","","","","","","","","","","","","","","","","","","","","","","","The extent of the element in the U units along the y axis …","The extent of the element in the U units along the y axis.","","Component multiplied by the imaginary number i.","Creates the identity rotation.","Creates the identity rotation.","Creates an identity scale (1.0).","Create an identity matrix:","Creates an identity matrix:","Creates no-op translation (both x and y is zero()).","Creates no-op translation (x, y and z is zero()).","Construct an identity transform","Inflates the box by the specified sizes on each side …","Inflates the box by the specified sizes on each side …","","","","","","","","","","","","","","","","","","","","","","","","","Calculate the size and position of an inner box.","Calculate the size and position of an inner rectangle.","Computes the intersection of two boxes, returning None if …","","","Computes the intersection of two boxes without check …","","Returns true if the two boxes intersect.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Calls U::from(self).","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Calls U::from(self).","","","Calls U::from(self).","","Calls U::from(self).","Calls U::from(self).","","","Calls U::from(self).","","Calls U::from(self).","","","Calls U::from(self).","","","Calls U::from(self).","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the inverse of this rotation.","Returns the inverse of this rotation.","The inverse Scale (1.0 / self).","Returns the inverse transform if possible.","Returns the inverse transform if possible.","Return the inverse transformation.","Return the inverse transformation.","Inverts the transformation","Returns true if this transform can be represented with a …","Check whether shapes on the XY plane with Z pointing …","Returns true if the size is zero, negative or NaN.","Returns true if the size is zero, negative or NaN.","","Returns true if any component of size is zero, negative, …","Returns true if any component of size is zero, negative or …","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if this scale has no effect.","Check if translation does nothing (both x and y is zero()).","Check if translation does nothing (x, y and z is zero()).","Returns whether it is possible to compute the inverse …","Returns whether it is possible to compute the inverse …","Returns true if the box has a negative area.","Returns true if the box has a negative volume.","Returns true if norm of this quaternion is (approximately) …","Returns true if both components is positive and false any …","Returns true if all components is positive and false any …","Returns true if all side offsets are zero.","Component multiplied by the imaginary number j.","Component multiplied by the imaginary number k.","","Returns the vector length.","Returns the vector length.","Linearly interpolate between this box and another box.","Linearly interpolate between this box3d and another box3d.","Linearly interpolate between this length and another …","Linearly interpolate between this point and another point.","Linearly interpolate between this point and another point.","Linearly interpolate between this rectangle and another …","Basic Linear interpolation between this rotation and …","Linearly interpolate each component between this size and …","Linearly interpolate between this size and another size.","Linearly interpolate each component between this vector …","Linearly interpolate each component between this vector …","Returns vector with results of “lower then” operation …","Returns vector with results of “lower than” operation …","Returns vector with results of “lower than” operation …","Returns vector with results of “lower than” operation …","","","","","","","","","","","","","","","","","","","","","","","Returns maximum between this length and another length.","","","","","Returns the size each component of which are maximum of …","Returns the size each component of which are maximum of …","Returns the vector each component of which are maximum of …","Returns the vector each component of which are maximum of …","","","","","Returns minimum between this length and another length.","","","","","Returns the size each component of which are minimum of …","Returns the size each component of which are minimum of …","Returns the vector each component of which are minimum of …","Returns the vector each component of which are minimum of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multiplies all of the transform’s component by a scalar …","","","","","","","","","Constructor.","Constructor.","Constructor taking scalar values directly.","Associate a value with a unit of measure.","Constructor taking scalar values directly.","Constructor taking scalar values directly.","Constructor.","Creates a rotation from an angle in radians.","","Constructor taking a scalar for each side.","Constructor taking scalar values.","Constructor taking scalar values.","Create a transform specifying its components in using the …","Create a transform specifying all of it’s component as a …","","","Constructor taking scalar values directly.","Constructor taking scalar values directly.","Construct a new rigid transformation, where the rotation …","Create a transform representing a 2d transformation from …","Constructor setting the same value to all sides, taking a …","Construct a new rigid transformation, where the translation…","Returns true if all components are false and false …","Returns true if all components are false and false …","Computes the norm of this quaternion.","Returns a unit quaternion from this one.","Returns the vector with length of one unit.","Returns the vector with length of one unit","Returns new vector with results of negation operation on …","Returns new vector with results of negation operation on …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","A one-dimensional length, tagged with its units.","","Constructor, setting all components to one.","Constructor, setting all components to one.","Returns new vector with by-component OR operation applied.","Returns new vector with by-component OR operation applied.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","","Create an orthogonal projection transform.","Calculate the b and position of an outer box.","Calculate the size and position of an outer rectangle.","Returns a box that encompasses the result of transforming …","Returns a 2d box that encompasses the result of …","Returns a 3d box that encompasses the result of …","Returns a rectangle that encompasses the result of …","Returns a rectangle that encompasses the result of …","","","","Create a simple perspective transform, projecting to the …","Shorthand for Point2D::new(x, y).","Shorthand for Point3D::new(x, y).","","Applies a rotation before self’s transformation and …","Returns a transform with a rotation applied before self’…","Applies a scale before self’s transformation and returns …","Returns a transform with a scale applied before self’s …","Applies a translation before self’s transformation and …","Returns a transform with a translation applied before self…","Returns this vector projected onto another one.","Returns this vector projected onto another one.","Returns a projection of this transform in 2d space.","Creates a rotation around from a quaternion representation.","The real part.","Creates a rotation from an angle in radians.","","","Shorthand for …","Returns a reflection vector using an incident ray and a …","Returns a reflection vector using an incident ray and a …","Calculates the least nonnegative remainder of …","Calculates the least nonnegative remainder of …","","Return the normalized vector even if the length is larger …","Return the normalized vector even if the length is larger …","Returns a rotation transform.","Create a 3d rotation transform from an angle / axis. The …","","Return a box with edges rounded to integer coordinates, …","Return a box3d with edges rounded to integer coordinates, …","Rounds each component to the nearest integer value.","See Point2D::round()","Rounds each component to the nearest integer value.","See Point3D::round()","Return a rectangle with edges rounded to integer …","Rounds each component to the nearest integer value.","See Size2D::round().","Rounds each component to the nearest integer value.","See Size3D::round().","See Vector2D::round()","Rounds each component to the nearest integer value.","See Vector3D::round()","Rounds each component to the nearest integer value.","Return a box with faces/edges rounded to integer …","Return a box3d with faces/edges rounded to integer …","Return a rectangle with edges rounded to integer …","Return a box with faces/edges rounded to integer …","Return a box3d with faces/edges rounded to integer …","Return a rectangle with edges rounded to integer …","","","","","","Create a 2d scale transform:","Create a 3d scale transform:","Returns point, each component of which or from a, or from b…","Returns point, each component of which or from a, or from b…","Returns size, each component of which or from a, or from b …","Returns size, each component of which or from a, or from b …","Returns vector, each component of which or from a, or from …","Returns vector, each component of which or from a, or from …","Change the size of the box by adjusting the max endpoint …","","","","","Shorthand for Size2D::new(w, h).","Shorthand for Size3D::new(w, h, d).","Create a 2d skew transform.","Spherical linear interpolation between this rotation and …","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Constructor setting all components to the same value.","","","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Returns the vector’s length squared.","Returns the vector’s length squared.","Computes the squared norm of this quaternion.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a rotation representing the other rotation …","Returns a rotation representing this rotation followed by …","Returns the multiplication of the two matrices such that …","Returns the multiplication of the two matrices such that …","Returns the multiplication of the two transforms such that …","Applies a rotation after self’s transformation and …","Returns a transform with a rotation applied after self’s …","Applies a scale after self’s transformation and returns …","Returns a transform with a scale applied after self’s …","Applies a translation after self’s transformation and …","Returns a transform with a translation applied after self…","Convert into a 2d point.","Create a 2D transform picking the relevant terms from this …","Convert into a 2d vector.","Convert into a 3d point with z-coordinate equals to zero.","Creates a 3d rotation (around the z axis) from this 2d …","Create a 3D transform from the current transform","Convert into a 3d vector with z coordinate equals to …","Cast into an array with x and y.","Cast into an array with x, y and z.","Return this size as an array of two elements (width, then …","Return this size as an array of three elements (width, …","Returns an array containing this transform’s terms.","Returns an array containing this transform’s terms.","Cast into an array with x and y.","Cast into an array with x, y and z.","Cast into an array with x and y.","Cast into an array with x, y and z.","","Cast into an array with x, y, z and 0.","Returns an array containing this transform’s terms …","Returns an array containing this transform’s terms …","Equivalent to to_array with elements packed two at a time …","Equivalent to to_array with elements packed four at a time …","Equivalent to to_array_transposed with elements packed …","","Cast into an f32 box.","Cast into an f32 box3d.","Cast into an f32 point.","Cast into an f32 point.","Cast into an f32 rectangle.","Cast into an f32 size.","Cast into an f32 size.","Cast into an f32 vector.","Cast into an f32 vector.","Cast into an f64 box.","Cast into an f64 box3d.","Cast into an f64 point.","Cast into an f64 point.","Cast into an f64 rectangle.","Cast into an f64 size.","Cast into an f64 size.","Cast into an f64 vector.","Cast into an f64 vector.","Cast into an i32 box, truncating decimals if any.","Cast into an i32 box3d, truncating decimals if any.","Cast into an i32 point, truncating decimals if any.","Cast into an i32 point, truncating decimals if any.","Cast into an i32 rectangle, truncating decimals if any.","Cast into an i32 size, truncating decimals if any.","Cast into an i32 size, truncating decimals if any.","Cast into an i32 vector, truncating decimals if any.","Cast into an i32 vector, truncating decimals if any.","Cast into an i64 box, truncating decimals if any.","Cast into an i64 box3d, truncating decimals if any.","Cast into an i64 point, truncating decimals if any.","Cast into an i64 point, truncating decimals if any.","Cast into an i64 rectangle, truncating decimals if any.","Cast into an i64 size, truncating decimals if any.","Cast into an i64 size, truncating decimals if any.","Cast into an i64 vector, truncating decimals if any.","Cast into an i64 vector, truncating decimals if any.","","","","","","","","","","","","","","","","","","","","","","","","","","","Cast this vector into a point.","Cast this vector into a point.","Convert into Cartesian 2D point.","Convert into Cartesian 3D point.","","Cast this vector into a size.","Returns the matrix representation of this rotation.","Returns the matrix representation of this rotation.","Returns the matrix representation of this translation.","Returns the matrix representation of this translation.","Creates translation by this vector in vector units.","Creates translation by this vector in vector units","","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","Return this size as a tuple of two elements (width, then …","Return this size as an array of three elements (width, …","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","","Cast into a tuple with x, y, z and 0.","Cast into an u32 box, truncating decimals if any.","Cast into an u32 box3d, truncating decimals if any.","Cast into an u32 point, truncating decimals if any.","Cast into an u32 point, truncating decimals if any.","Cast into an u32 rectangle, truncating decimals if any.","Cast into an u32 size, truncating decimals if any.","Cast into an u32 size, truncating decimals if any.","Cast into an u32 vector, truncating decimals if any.","Cast into an u32 vector, truncating decimals if any.","Cast into an u64 rectangle, truncating decimals if any.","Cast into an u64 size, truncating decimals if any.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Cast into an usize box, truncating decimals if any.","Cast into an usize box3d, truncating decimals if any.","Cast into an usize point, truncating decimals if any.","Cast into an usize point, truncating decimals if any.","Cast into an usize rectangle, truncating decimals if any.","Cast into an uint size, truncating decimals if any.","Cast into an uint size, truncating decimals if any.","Cast into an usize vector, truncating decimals if any.","Cast into an usize vector, truncating decimals if any.","Cast this point into a vector.","Cast this point into a vector.","Return this size as a vector with width and height.","Return this size as a vector with width, height and depth.","Cast into a 2D vector.","Cast into a 3D vector.","","Translate a 2D box and cast its unit.","Returns the given box transformed by this scale.","Translate a 2D box and cast its unit.","Returns the given box transformed by this scale.","Translate a 3D box and cast its unit.","","Returns the given 2d point transformed by this rotation.","","Returns the given point transformed by this scale.","Returns the given point transformed by this transform.","","","Translate a point and cast its unit.","Returns the given 2d point transformed by this rotation …","Returns the given 2d point transformed by this transform, …","Translate a point and cast its unit.","Returns the homogeneous vector corresponding to the …","Returns the given 3d point transformed by this rotation.","Returns the given point transformed by this scale.","Returns the given 3d point transformed by this transform, …","Translate a point and cast its unit.","Returns the homogeneous vector corresponding to the …","Returns the given rect transformed by this scale.","Translate a rectangle and cast its unit.","Translate a rectangle and cast its unit.","Returns the given size transformed by this scale.","No-op, just cast the unit.","No-op, just cast the unit.","","Returns the given 2d vector transformed by this rotation.","Returns the given vector transformed by this scale.","","","Returns the given vector transformed by this matrix.","","Returns the given 2d vector transformed by this rotation …","Returns the given 2d vector transformed by this matrix.","Returns the given 3d vector transformed by this rotation.","Returns the given 3d vector transformed by this matrix.","Returns the same box, translated by a vector.","Returns the same box3d, translated by a vector.","Returns the same rectangle, translated by a vector.","Create a 2d translation transform:","Create a 3d translation transform:","","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the vector with length of one unit.","Returns the vector with length of one unit.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the union of two boxes.","Computes the union of two boxes.","","Creates a rotation around from a quaternion representation …","","","","","","","","","","","","","","","","","","","","","","","","Convenience constructor.","Convenience constructor.","Returns the vector part (i, j, k) of this quaternion.","","","Returns result of multiplication of all components","","","","","The extent of the element in the U units along the x axis …","The extent of the element in the U units along the x axis.","Returns the same transform with a different destination …","Returns the same transform with a different destination …","Return this vector scaled to fit the provided length.","Return this vector capped to a maximum length.","Return this vector capped to a maximum length.","Return this vector with a minimum length applied.","Return this vector with a minimum length applied.","Returns the same transform with a different source unit.","Returns the same transform with a different source unit.","","","","","","The x (traditionally, horizontal) coordinate.","The x (traditionally, horizontal) coordinate.","","","","","","Returns a 2d point using this point’s x and y coordinates","Returns a 2d vector using this vector’s x and y …","Returns a 2d vector using this vector’s x and y …","","Returns a 2d point using this point’s x and z coordinates","Returns a 2d vector using this vector’s x and z …","Returns a 2d vector using this vector’s x and z …","","","","","","","The y (traditionally, vertical) coordinate.","The y (traditionally, vertical) coordinate.","","","","","","Swap x and y.","Swap x and y.","Returns a 2d point using this point’s x and z coordinates","Returns a 2d vector using this vector’s x and z …","Returns a 2d vector using this vector’s y and z …","","","","","The z (traditionally, depth) coordinate.","","","Constructor, setting all sides to zero.","Constructor, setting all sides to zero.","","","The same as origin().","","The same as origin().","Constructor, setting all sides to zero.","Constructor, setting all sides to zero.","","The same as Zero::zero() but available without importing …","","The same as Zero::zero() but available without importing …","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Trait for testing approximate equality","Default epsilon value","Returns true is this object is approximately equal to the …","Returns true is this object is approximately equal to the …","","","","","","","","","","","","","","","","","","","","","","","Angle in radians","","The extent of the element in the U units along the z axis.","The extent of the element in the U units along the y axis …","The extent of the element in the U units along the y axis.","Component multiplied by the imaginary number i.","Component multiplied by the imaginary number j.","Component multiplied by the imaginary number k.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The real part.","","","","","","","The extent of the element in the U units along the x axis …","The extent of the element in the U units along the x axis.","","","The x (traditionally, horizontal) coordinate.","The x (traditionally, horizontal) coordinate.","","","","","","The y (traditionally, vertical) coordinate.","The y (traditionally, vertical) coordinate.","","","","","The z (traditionally, depth) coordinate.","","","Defines the smallest integer equal or greater than the …","Defines the biggest integer equal or lower than the …","","Defines the nearest integer value to the original value.","","Rounds to the smallest integer equal or greater than the …","Rounds to the biggest integer equal or lower than the …","","Rounds to the nearest integer value.","","A flattening iterator for quadratic bézier segments.","A flattening iterator for quadratic bézier segments.","","A 2d curve segment defined by three points: the beginning …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Common APIs to segment types.","","Return the curve after the split point.","Compute the length of the segment using a flattened …","Return the curve before the split point.","Sample the derivative at t (expecting t between 0 and 1).","Sample x derivative at t (expecting t between 0 and 1).","Sample y derivative at t (expecting t between 0 and 1).","Swap the direction of the segment.","Approximates the curve with sequence of line segments.","Start of the curve.","Sample the curve at t (expecting t between 0 and 1).","Split this curve into two sub-curves.","Return the curve inside a given range of t.","End of the curve.","","","Sample x at t (expecting t between 0 and 1).","Sample y at t (expecting t between 0 and 1).","","Angle between vectors v1 and v2 (oriented clockwise …","","","","","An iterator that consumes Event iterator and yields …","An iterator that consumes an iterator of Points and …","","An extension trait for PathEvent iterators.","Applies a 2D transform to a path iterator and yields the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator that turns curves into line segments.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create the iterator.","Creates a new transformed path iterator from a path …","","","","","","","","Returns an iterator applying a 2D transform to all of its …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An angle in radians (f32).","Alias for euclid::default::Box2D<f32>","Alias for euclid::default::Point2D<f32>.","Alias for euclid::default::Rotation2D<f32>","Alias for euclid::default::Scale<f32>","Alias for euclid::default::Size2D<f32>.","Alias for euclid::default::Transform2D<f32>","Alias for euclid::default::Translation2D<f32>","Alias for euclid::default::Point2D<f32>.","Angle in radians","The extent of the element in the U units along the y axis …","","","","","","","","","Shorthand for Point::new(x, y).","","Shorthand for Size::new(x, y).","Shorthand for Vector::new(x, y).","The extent of the element in the U units along the x axis …","","The x (traditionally, horizontal) coordinate.","","","The y (traditionally, vertical) coordinate.","","","The default builder for Path.","A builder for Path with custom attributes.","An iterator of endpoint and control point ids for Path and …","An iterator for Path and PathSlice.","An iterator for Path and PathSlice.","A simple path data structure.","A view on a Path.","An iterator of over a Path traversing the path in reverse.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Iterate on a flattened approximation of the path with …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Builds a Path from This iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A Builder that appends a path to an existing PathBuffer.","A Builder that appends a path to an existing PathBuffer, …","Iterator over the paths in a PathBufferSlice.","An object that stores multiple paths contiguously.","A view on a PathBuffer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A view over a sequence of endpoint IDs forming a polygon.","An iterator of Event<EndpointId, ()>.","An iterator of PathEvent.","A view over a sequence of endpoints forming a polygon.","An iterator of IdEvent for Polygon.","An iterator of Event<&Endpoint, ()>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Builds a path.","The base path building interface.","An extension trait for PathEvent iterators.","The type of object that is created by this builder.","A path building interface that tries to stay close to SVG…","Adds a sub-path containing a circle.","Adds a sub-path containing an ellipse.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single point.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds an elliptical arc.","Starts a new sub-path at a given position.","Builds a path object, consuming the builder.","Ends the current sub-path by connecting it back to its …","Closes the current sub path.","Adds a cubic bézier curve to the current sub-path.","Adds a cubic bézier segment to the current sub-path.","Ends the current sub path.","","Returns a builder that approximates all curves with …","Returns an iterator that turns curves into line segments.","Adds an horizontal line segment.","Adds a line segment to the current sub-path.","Adds a line segment to the current sub-path.","Start a new sub-path at the given position.","","Applies the provided path event.","Adds a quadratic bézier curve to the current sub-path.","Adds a quadratic bézier segment to the current sub-path.","Equivalent to arc_to in relative coordinates.","Equivalent to cubic_bezier_to in relative coordinates.","Adds an horizontal line segment in relative coordinates.","Equivalent to line_to in relative coordinates.","Equivalent to move_to in relative coordinates.","Equivalent to quadratic_bezier_to in relative coordinates.","Adds a vertical line segment in relative coordinates.","Hints at the builder that a certain number of endpoints …","Hints at the builder that a certain number of endpoints …","Equivalent to cubic_bezier_to with implicit first control …","Equivalent to quadratic_bezier_to with implicit control …","Equivalent to smooth_cubic_bezier_to in relative …","Equivalent to smooth_quadratic_bezier_to in relative …","Returns a builder that applies the given transformation to …","Returns an iterator applying a 2D transform to all of its …","Adds a vertical line segment.","Returns a builder that support SVG commands.","A bevelled corner.","The stroke for each sub-path does not extend beyond its …","A Gradient color.","The shape used at the end of open subpaths when they are …","The dash pattern used when stroking the line.","The shape used at the corners of paths or basic shapes …","A sharp corner.","At the end of each sub-path, the shape representing the …","A round corner.","A solid Color.","At the end of each sub-path, the shape representing the …","The style of a stroke.","The coloring style of some drawing.","The shape to be used at the end of open subpaths when they …","The dash pattern used when stroking the line.","The shape to be used at the corners of paths or basic …","The offset of LineDash::segments to start the pattern.","The alternating lengths of lines and gaps which describe …","The color or gradient of the stroke.","The distance between the two edges of the stroke.","The appearance of a checkbox.","A box that can be checked.","The icon in a Checkbox.","The supported style of the StyleSheet.","A set of rules that dictate the style of a checkbox.","Produces the active Appearance of a checkbox.","","","","","","","","","","","The Background of the checkbox.","The Border of hte checkbox.","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","","","","","","","Font that will be used to display the code_point,","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Produces the hovered Appearance of a checkbox.","The icon Color of the checkbox.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The line height of the icon.","The shaping strategy of the icon.","Font size of the content.","The text Color of the checkbox.","","","","","","","","","","","","","","","","","","","A widget for searching and selecting a single value from a …","The local state of a ComboBox.","","","","","","","","Build matchers from given list of options.","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","Creates a new State for a ComboBox with the given list of …","Search list of options for a given query.","","","","","","","","","","Creates a new State for a ComboBox with the given list of …","The appearance of a container.","An element decorating some content.","The identifier of a Container.","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","","Produces the Appearance of a container.","","","","","","","","","The Background of the container.","The Border of the container.","","","","","","","","","","","","","","","","","","Draws the background of a Container given its Appearance …","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Computes the layout of a Container.","Creates a custom Id.","The Shadow of the container.","The text Color of the container.","","","","","","","","","","","","","","","","","Creates a unique Id.","","","Produces a Command that queries the visible screen bounds …","Derives a new Appearance with the given Background.","Derives a new Appearance with a border of the given Color …","Image filtering strategy.","A handle of some image data.","A frame that displays an image while keeping aspect ratio.","Bilinear interpolation.","Nearest neighbor.","A frame that displays an image with the ability to zoom …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a reference to the image Data.","","","","","","","","","","","Draws an Image","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Creates an image Handle containing the image data directly.","Creates an image Handle pointing to the image of the given …","Creates an image Handle containing the image pixels …","","","","","","Sets the height of the Viewer.","Returns the unique identifier of the Handle.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Computes the layout of an Image.","","Sets the max scale applied to the image of the Viewer.","Sets the min scale applied to the image of the Viewer.","","Creates a new Viewer with the given State.","","Sets the padding of the Viewer.","Sets the percentage the image of the Viewer will be scaled …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Zoom and pan on an image.","Creates a new Viewer with the given image Handle.","Sets the width of the Viewer.","The local state of a Viewer.","A frame that displays an image with the ability to zoom …","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the bounds of the underlying image, given the …","","Calls U::from(self).","","","","","","","","Returns if the cursor is currently grabbed by the Viewer.","Creates a new State.","","","","","","","","","","A container that distributes its contents vertically.","","Sets the horizontal alignment of the contents of the Column…","","","","","","","","Distribute content vertically.","","","","","","","","","Returns the argument unchanged.","","","Sets the height of the Column.","","Calls U::from(self).","","","","","","","","Sets the maximum width of the Column.","","Creates an empty Column.","","","","Sets the Padding of the Column.","Adds an element to the Column.","","Sets the vertical spacing between elements.","","","","","","","","","","","Sets the width of the Column.","Creates a Column with the given elements.","A container that distributes its contents vertically.","Build and show dropdown menus.","The appearance of a menu.","A list of selectable options.","The local state of a Menu.","The supported style of the StyleSheet.","The style sheet of a menu.","","","","Produces the Appearance of a menu.","","","","","","","","","","","","","The Background of the menu.","The Border of the menu.","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the font of the Menu.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Creates a new Menu with the given State, a list of …","Creates a new State for a Menu.","Turns the Menu into an overlay Element at the given target …","Sets the Padding of the Menu.","The background Color of a selected option in the menu.","The text Color of a selected option in the menu.","Sets the style of the Menu.","The text Color of the menu.","Sets the text text::LineHeight of the Menu.","Sets the text::Shaping strategy of the Menu.","Sets the text size of the Menu.","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Menu.","All panes are visible","The appearance of the hovered region of a pane grid.","A fixed reference line for the measurement of coordinates.","Bottom edge.","A Pane was picked and then dropped outside of other Pane …","Center region.","The arrangement of a PaneGrid.","The content of a Pane.","The visible contents of the PaneGrid","A four cardinal direction.","↓","An event produced during a drag and drop interaction of a …","A pane that can be dragged.","A Pane was dropped on top of another Pane.","The edges of an area.","An Edge of the full PaneGrid.","Edge region.","The horizontal axis: —","←","Left edge.","A line.","A maximized pane is visible","A layout node of a PaneGrid.","A rectangular region in a PaneGrid used to display widgets.","A Pane.","The region of this Node is taken by a Pane.","A single Pane of the PaneGrid.","A collection of panes distributed using either vertical or …","A Pane was picked for dragging.","The region of a Pane.","An event produced during a resize interaction of a PaneGrid…","→","Right edge.","A divider that splits a region in a PaneGrid into two …","A split of the available space.","The region of this Node is split into two.","The state of a PaneGrid.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","The Target area a pane can be dropped on.","The title bar of a Pane.","Top edge.","↑","The vertical axis: |","","","","","","","","","","","","","","","","","","Returns the adjacent Pane of another Pane in the given …","Sets whether or not the controls attached to this TitleBar …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the pane region.","The Border of the pane region.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Draggable with the given Layout can be …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Closes the given Pane and returns its internal state and …","","","The Color of the Line.","","","","","","","","","","","","","","","","","","","","Sets the controls of the TitleBar.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws a PaneGrid.","Draws the Content with the provided Renderer and Layout.","Draws the TitleBar with the provided Renderer and Layout.","","","","","","","","","","","Drops the given Pane into the provided Target.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the internal state of the given Pane, if it exists.","Returns the internal state of the given Pane with …","","","","","The Appearance to draw when a pane is hovered.","The Line to draw when a split is hovered.","","","","","","","","","","","","","","","","","","The internal state of the PaneGrid.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if the amount of panes in the State is 0.","Returns whether the mouse cursor is over the pick area of …","Returns an iterator over all the panes of the State, …","Returns an iterator over the values of the Contents","Returns a mutable iterator over all the panes of the State,","Calculates the Layout of a PaneGrid.","Returns the layout of the State.","Returns the layout Node of the Contents","Returns the total amount of panes in the State.","Maximize the given Pane. Only this pane will be rendered …","Returns the maximized Pane of the PaneGrid.","Returns the current mouse::Interaction of a PaneGrid.","Move Pane to an Edge of the PaneGrid.","Creates a new Content with the provided body.","Creates a new TitleBar with the given content.","Creates a new State, initializing the first pane with the …","Sets the Padding of the TitleBar.","Returns the rectangular region for each Pane in the Node …","The panes of the PaneGrid.","","","The Line to draw when a split is picked.","The new ratio of the Split.","Resizes two panes by setting the position of the provided …","Restore the currently maximized Pane to it’s normal …","Splits the provided Rectangle on the current Axis with the …","Splits the given Pane into two in the given Axis and …","The Split that is being dragged for resizing.","Calculates the bounds of the split line in a Rectangle …","Returns the axis, rectangular region, and ratio for each …","Split a target Pane with a given Pane on a given Region.","Returns an iterator over each Split in this Node.","The state of a PaneGrid.","Sets the style of the Content.","Sets the style of the TitleBar.","Swaps the position of the provided panes in the State.","Sets the TitleBar of this Content.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the state of a PaneGrid …","The width of the Line.","Creates a new State with the given Configuration.","The left/top Configuration of the split.","The direction of the split.","The right/bottom Configuration of the split.","The ratio of the split in [0.0, 1.0].","The picked Pane.","The picked Pane.","The picked Pane.","The Target where the picked Pane was dropped on.","The left/top Node of the split.","The direction of the split.","The right/bottom Node of the split.","The Split of this Node.","The ratio of the split in [0.0, 1.0].","The current action of a PaneGrid.","A Pane in the PaneGrid is being clicked.","A Pane in the PaneGrid is being dragged.","The PaneGrid is idle.","The internal state of a PaneGrid.","A Split in the PaneGrid is being dragged.","The state of a PaneGrid.","","","","","","","","","","","","","","","Returns the current Pane that is being clicked, if any.","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Initializes the Internal state of a PaneGrid from a …","","","","","The internal state of the PaneGrid.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The layout Node of the Internal state","The panes of the PaneGrid.","Returns the current Pane that is being dragged, if any.","Returns the current Split that is being dragged, if any.","","","","","","","","","","","","","","","","","","","The Axis of the Split.","The starting Point of the click interaction.","The starting Point of the drag interaction.","The Pane being clicked.","The Pane being dragged.","The Split being dragged.","The appearance of a pick list.","Displays an arrow icon (▼).","A custom dynamic handle.","The handle to the right side of the PickList.","The icon of a Handle.","No handle will be shown.","A widget for selecting a single value from a list of …","The state of a PickList.","A custom static handle.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","Produces the active Appearance of a pick list.","","","","","","","","","","","","","","","","","","","","","The Background of the pick list.","The Border of the pick list.","","","","","","","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","","","","","","","","","","","","Draws a PickList.","","","","","","","","","","","Font that will be used to display the code_point,","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","The handle Color of the pick list.","Produces the hovered Appearance of a pick list.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the layout of a PickList.","Line height of the content.","Returns the current mouse::Interaction of a PickList.","Returns the current overlay of a PickList.","The placeholder Color of the pick list.","The shaping strategy of the icon.","Font size of the content.","The text Color of the pick list.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a PickList …","The Icon used when PickList is closed.","The Icon used when PickList is open.","Font size of the content.","The appearance of a progress bar.","A bar that displays progress.","The supported style of the StyleSheet.","A set of rules that dictate the style of a progress bar.","","Produces the Appearance of the progress bar.","","","","","The Background of the progress bar.","The Background of the bar of the progress bar.","The border radius of the progress bar.","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The data is too long to encode in a QR code for the chosen …","An error that occurred when building a State for a QRCode.","The error correction level.","High error correction. 30% of the data can be restored.","A character that does not belong to the character set was …","The chosen ECI designator is invalid. A valid designator …","The chosen Version and ErrorCorrection combination is …","Low error correction. 7% of the data can be restored.","Medium error correction. 15% of the data can be restored.","A micro QR code version. It should be between 1 and 4.","A normal QR code version. It should be between 1 and 40.","A type of matrix barcode consisting of squares arranged in …","Quartile error correction. 25% of the data can be restored.","The state of a QRCode.","One or more characters in the provided data are not …","The size of a QRCode.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new State with the provided data.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new State with the provided ErrorCorrection.","Creates a new State with the provided Version and …","The appearance of a radio button.","A circular button representing a choice.","The supported style of the StyleSheet.","A set of rules that dictate the style of a radio button.","Produces the active Appearance of a radio button.","","","","","","The Background of the radio button.","The border Color of the radio button.","The border width of the radio button.","","","","","","","","The Color of the dot of the radio button.","","","","Returns the argument unchanged.","","","Produces the hovered Appearance of a radio button.","","Calls U::from(self).","","","","","","","","The text Color of the radio button.","","","","","","","","","","The appearance of a rule.","Different offset on each end of the rule, length units. …","The fill mode of a rule.","Fill the whole length of the container.","Uniform offset from each end, length units.","Fill a percent of the length of the container. The rule …","Display a horizontal or vertical rule for dividing content.","The supported style of the StyleSheet.","A set of rules that dictate the style of a rule.","","","Produces the style of a rule.","","","","","","","","","","","","","","","","","The color of the rule.","","","","","","","","","","","Return the starting offset and length of the rule.","The FillMode of the rule.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","The radius of the line corners.","","","","","","","","","","","","","","","","","","","The width (thickness) of the rule line.","The amount of absolute offset in each direction of a …","Alignment of the scrollable’s content relative to it’s …","Both vertical and horizontal scrolling","The direction of Scrollable.","A relative offset that points to the bottom-right of a …","Content is aligned to the end of the Viewport","Horizontal scrolling","The identifier of a Scrollable.","Properties of a scrollbar within a Scrollable.","The amount of relative offset in each direction of a …","A relative offset that points to the top-left of a …","A widget that can vertically display an infinite amount of …","The appearance of a scrollable.","The appearance of the scroller of a scrollable.","Content is aligned to the start of the Viewport.","The local state of a Scrollable.","The supported style of the StyleSheet.","A set of rules that dictate the style of a scrollable.","Vertical scrolling","The current Viewport of the Scrollable.","Returns the AbsoluteOffset of the current Viewport.","Returns the AbsoluteOffset of the current Viewport, but …","Produces the style of an active scrollbar.","Produces the style of an active horizontal scrollbar.","","","","","","","","","","","Sets the alignment of the Scrollable .","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of a scrollable.","The Border of a scrollable.","The Border of the scroller.","","","","","","","","","","","","","","","","","","","","","Returns the bounds of the current Viewport.","","","","","","","","","","","","","","","","","","","","","The Color of the scroller.","","","","","","","","","","","Returns the content bounds of the current Viewport.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Produces the style of a scrollbar that is being dragged.","Produces the style of a horizontal scrollbar that is being …","Draws a Scrollable.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","Returns the Properties of the horizontal scrollbar, if any.","Produces the style of a scrollbar when the scrollable is …","Produces the style of a horizontal scrollbar when the …","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the layout of a Scrollable.","Sets the scrollbar margin of the Scrollable .","Computes the current mouse::Interaction of a Scrollable.","Creates new Properties for use in a Scrollable.","Creates a custom Id.","Creates a new State with the scrollbar(s) at the beginning.","Returns the RelativeOffset of the current Viewport.","Apply a scrolling offset to the current State, given the …","Produces a Command that scrolls the Scrollable with the …","","Scroll to the provided AbsoluteOffset.","Scrolls the Scrollable to a relative amount along the x …","Scrolls the Scrollable to a relative amount along the y …","The appearance of the Scroller of a scrollable.","Sets the scroller width of the Scrollable .","Returns whether any scroller is currently grabbed or not.","Produces a Command that snaps the Scrollable with the …","","Snaps the scroll position to a RelativeOffset.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","Unsnaps the current scroll position, if snapped, given the …","","","","","","","","","","","Processes an Event and updates the State of a Scrollable …","Returns the Properties of the vertical scrollbar, if any.","Sets the scrollbar width of the Scrollable .","The amount of horizontal offset","The amount of horizontal offset","The amount of vertical offset","The amount of vertical offset","The properties of the horizontal scrollbar.","The properties of the vertical scrollbar.","A Shader event.","A keyboard event.","A mouse event.","A set of methods which allows a Primitive to be rendered.","The type of primitive this Program can draw.","The state and logic of a Shader widget.","A window requested a redraw.","A widget which can render custom shaders with Iced’s wgpu…","The internal state of the Program.","Stores custom, user-provided pipelines.","A touch event.","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the Primitive.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns a reference to pipeline with type T if it exists …","Returns a mutable reference to pipeline T if it exists in …","Returns true if Storage contains a pipeline with type T.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Returns the current mouse interaction of the Program.","Processes the Primitive, allowing for GPU buffer …","Renders the Primitive.","Inserts the pipeline T in to Storage.","","","","","","","","","","","","","","","","","","Update the internal State of the Program. This can be used …","Allows the use of AddressMode::ClampToBorder with a border …","Allows the use of AddressMode::ClampToBorder with a border …","Enable writes to all channels.","Whether wgpu should expose adapters that run on top of …","Enable alpha channel writes","Blend mode that does standard alpha blending with …","Supports samplers with anisotropic filtering. Note this isn…","A ray-tracing acceleration structure binding.","Handle to a physical graphics and/or compute device.","Information about an adapter.","Src + Dst","How edges should be handled in texture addressing.","Depth, Stencil, and Color.","Function always passes","block compressed texture. 16 bytes per block.","ASTC block dimensions","ASTC RGBA channel","Chooses either Opaque or Inherit automatically,depending …","Chooses Immediate -> Mailbox -> Fifo (on web) based on …","Chooses FifoRelaxed -> Fifo based on availability.","No explicit minor version is requested, the driver …","10x10 block compressed texture. 16 bytes per block (1.28 …","10x5 block compressed texture. 16 bytes per block (2.56 …","10x6 block compressed texture. 16 bytes per block (2.13 …","10x8 block compressed texture. 16 bytes per block (1.6 …","12x10 block compressed texture. 16 bytes per block (1.07 …","12x12 block compressed texture. 16 bytes per block (0.89 …","4x4 block compressed texture. 16 bytes per block (8 …","5x4 block compressed texture. 16 bytes per block (6.4 …","5x5 block compressed texture. 16 bytes per block (5.12 …","6x5 block compressed texture. 16 bytes per block (4.27 …","6x6 block compressed texture. 16 bytes per block (3.56 …","8x5 block compressed texture. 16 bytes per block (3.2 …","8x6 block compressed texture. 16 bytes per block (2.67 …","8x8 block compressed texture. 16 bytes per block (2 …","Supports non-zero base_vertex parameter to direct indexed …","Allows the [wgpu::TextureUsages::STORAGE_BINDING] usage on …","","If not present, the texture can’t be blended into the …","Enable blue channel writes","","Supported when targeting the web through webassembly with …","Supports buffer bindings with sizes that aren’t a …","Allows the user to create arrays of buffers in shaders:","Back face","Backends supported by wgpu.","Represents the backends that wgpu will use.","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","Blue, green, red, and alpha channels. 8 bit integer per …","Blue, green, red, and alpha channels. 8 bit integer per …","Handle to a binding group.","Describes a group of bindings and the resources to be …","An element of a BindGroupDescriptor, consisting of a …","Handle to a binding group layout.","Describes a BindGroupLayout.","Describes a single binding inside a bind group.","Resource that can be bound to a pipeline.","Specific type of a binding.","Describes a blend component of a BlendState.","Alpha blend factor.","Alpha blend operation.","Describe the blend state of a render pipeline, within …","WebGPU in the browser","Handle to a GPU-accessible buffer.","Binding is backed by a buffer.","A buffer binding.","Integral type used for buffer offsets.","Binding is backed by an array of buffers.","Error occurred when trying to async map a buffer.","Describes the segment of a buffer to bind.","Specific type of a buffer binding.","Describes a Buffer.","Integral type used for buffer slice sizes.","Slice into a Buffer.","Different ways that you can use a buffer.","Read only view into a mapped buffer.","Write only view into mapped buffer.","Enables clear to zero for textures.","Amount of times the clipper is invoked. This is also the …","Amount of primitives that are not culled by the clipper. …","Enable red, green, and blue channel writes","Supports comparison samplers.","Binding is visible from the compute shader of a compute …","The device supports compiling and using compute shaders.","Amount of times a compute shader is invoked. This will be …","Allows the user to set a …","Buffer to buffer copy as well as buffer clear offsets and …","Buffer-Texture copies must have bytes_per_row aligned to …","Allow a buffer to be the destination buffer for a […","Allows a texture to be the destination in a […","Allow a buffer to be the source buffer for a […","Allows a texture to be the source in a […","Supports textures that are cube arrays.","Triangles with vertices in counter clockwise order are …","Clamp the value to the border of the texture Requires …","Clamp the value to the edge of the texture","Loads the specified value for this attachment into the …","RGBA double precision color.","Describes the color state of a render pipeline.","Color write mask. Disabled color channels will not be …","Handle to a command buffer on the GPU.","Describes a CommandBuffer.","Encodes a series of GPU operations.","Describes a CommandEncoder.","Comparison function used for depth and stencil operations.","Use as a comparison sampler instead of a normal sampler. …","Specifies how the alpha channel of the textures should be …","In-progress recording of a compute pass.","Describes the attachments of a compute pass.","Describes the timestamp writes of a compute pass.","Handle to a compute pipeline.","Describes a compute pipeline.","Constant","Cpu / Software Rendering.","Instance::create_surface() or a related function failed.","A cubemap texture. texture_cube in WGSL and textureCube in …","A cubemap array texture. texture_cube_array in WGSL and …","Triangles with vertices in clockwise order are considered …","A one dimensional texture. texture_1d in WGSL and texture1D…","1D texture","A two dimensional texture. texture_2d in WGSL and texture2D…","2D texture","A two dimensional array texture. texture_2d_array in WGSL …","A three dimensional texture. texture_3d in WGSL and …","3D texture","Generate debug information in shaders and objects.","Allows for explicit creation of textures of format …","Supports depth bias clamping","By default, polygon depth is clipped to 0-1 range …","Supports copies between depth textures and buffers.","Don’t pass labels to wgpu-hal.","Allows two outputs from a shader to be used for blending. …","Supported on Windows 10","Decrements stencil value by one, clamping on underflow.","Decrements stencil value by one, wrapping on underflow.","Sampling does the depth reference comparison.","Special depth format with 16 bit integer depth.","Special depth format with at least 24 bit integer depth.","Special depth/stencil format with at least 24 bit integer …","Special depth format with 32 bit floating point depth.","Special depth/stencil format with 32 bit floating point …","Describes the biasing setting for the depth target.","Depth.","Describes the depth/stencil state in a render pipeline.","After Device::destroy","Open connection to a graphics and/or compute device.","Describes a Device.","Reason for “lose the device”.","Supported physical device types.","Discards the resulting value of the render pass for this …","Discrete GPU with separate CPU/GPU memory.","Display-P3 color space","Lists various ways the underlying platform does not …","Binary flags listing features that may or may not be …","D.component","D.alpha","Direct3D-12 (Windows)","Selects which DX12 shader compiler to use.","The Dxc compiler is new, fast and maintained.","Integral type used for dynamic bind group offsets.","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","Dummy backend, used for testing.","Function passes if new value is equal to existing value. …","Error type","Filter for error scopes.","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 8 bytes per block (4 …","4x4 block compressed texture. 16 bytes per block (8 …","4x4 block compressed texture. 16 bytes per block (8 …","Extent of a texture related operation.","If not present, the texture can’t be sampled with a …","Allows textures with formats “r32float”, “rg32float…","Binding is visible from the fragment shader of a render …","Amount of times the fragment shader is ran. Accounts for …","Supports storage buffers in fragment shaders.","Supports binding storage buffers and textures to fragment …","Supports full 32-bit range indices (2^32-1 as opposed to …","Face of a vertex.","Features that are not guaranteed to be supported.","Presentation frames are kept in a First-In-First-Out queue …","Presentation frames are kept in a First-In-First-Out queue …","Polygons are filled","Texel mixing mode when sampling between texels.","The sampling result is produced based on more than a …","Sampling returns floats.","Two half-precision floats (no Rust equiv). vec2<f32> in …","Four half-precision floats (no Rust equiv). vec4<f32> in …","One single-precision float (f32). f32 in shaders.","Two single-precision floats (f32). vec2<f32> in shaders.","Three single-precision floats (f32). vec3<f32> in shaders.","Four single-precision floats (f32). vec4<f32> in shaders.","One double-precision float (f64). f32 in shaders. Requires …","Two double-precision floats (f64). vec2<f32> in shaders. …","Three double-precision floats (f64). vec3<f32> in shaders. …","Four double-precision floats (f64). vec4<f32> in shaders. …","Describes the fragment processing in a render pipeline.","Front face","Vertex winding order which classifies the “front” face …","The Fxc compiler (default) is old, slow and unmaintained.","Supported on Linux/Android, the web through webassembly …","Enable green channel writes","","OpenGL ES-3 (Linux, Android)","Selects which OpenGL ES 3 minor version to request.","No issues.","Function passes if new value is greater than existing value","Function passes if new value is greater than or equal to …","floating-point RGBA, linear-color float can be outside of …","Adapter that has the highest performance. This is often a …","Ignore the stencil state for the face.","Supports different blend operations per color attachment.","Allow a buffer to be the index buffer in a draw operation.","Allow a buffer to be the indirect buffer in an indirect …","Supports indirect drawing and dispatching.","Allows non-zero value for the first_instance member in …","A timestamp that is invalid due to the platform not having …","Opaque globally-unique identifier","View of a buffer which can be used to copy to/from a …","View of a buffer which can be used to copy to/from a …","View of a texture which can be used to copy to/from a …","View of a texture which can be used to copy to/from a …","View of a texture which can be used to copy to a texture, …","View of a texture which can be used to copy to a texture, …","Layout of a texture in a buffer’s memory.","Subresource range within an image","Presentation frames are not queued at all. The moment a …","Increments stencil value by one, clamping on overflow.","Increments stencil value by one, wrapping on overflow.","Format of indices used with pipeline.","The alpha channel, if it exists, of the textures is …","Context for all other wgpu objects. Instance of wgpu.","Vertex data is advanced every instance.","Options for creating an instance.","Instance debugging flags.","Integrated GPU with shared CPU/GPU memory.","Bitwise inverts stencil value.","Keep stencil value unchanged.","Object debugging label.","Function passes if new value less than existing value","Function passes if new value is less than or equal to …","Represents the sets of limits an adapter/device supports.","Polygons are drawn as line segments","Vertex data is a list of lines. Each pair of vertices …","Vertex data is a strip of lines. Each set of two adjacent …","Linear Interpolation","Loads the existing value for this attachment into the …","Operation to perform to the output attachment at the start …","The swap chain has been lost and needs to be recreated.","The surface under the swap chain is lost.","Adapter that uses the least possible power. This is often …","Webgpu only allows the MAP_READ and MAP_WRITE buffer usage …","Size to align mappings.","Allow a buffer to be mapped for reading using […","Allow a buffer to be mapped for writing using […","Supported on macOS/iOS","Supports sample-rate shading.","Allows a texture of this format to back a view passed as …","Allows TextureDescriptor::sample_count to be 16.","Allows TextureDescriptor::sample_count to be 2.","Allows TextureDescriptor::sample_count to be 4.","Allows TextureDescriptor::sample_count to be 8.","Enables multiview render passes and builtin(view_index) in …","Allows the user to call RenderPass::multi_draw_indirect …","Allows the user to call …","Presentation frames are kept in a single-frame queue. …","Passed to Device::poll to control how and if it should …","Passed to Device::poll to control how and if it should …","Result of a maintain operation.","Type of buffer mapping.","max(Src, Dst)","Metal API (Apple platforms)","min(Src, Dst)","Repeat the texture, mirroring it every repeat","Describes the multi-sampling state of a render pipeline.","If this is true, calls to CommandEncoder::resolve_query_set…","Binding is not visible from any shader stage.","Supports textures with mipmaps which have a non power of …","YUV 4:2:0 chroma subsampled format.","Nearest neighbor sampling.","Function never passes","The sampling result is produced based on a single color …","Power usage is not considered when choosing an adapter.","No value.","Function passes if new value is not equal to existing …","Blend state of (1 * src) + ((1 - src_alpha) * dst)","Query returns a single 64-bit number, serving as an …","More information coming soon …","1.0","1.0 - Constant","1.0 - D.component","1.0 - D.alpha","1.0 - S.component","1.0 - S1.component","1.0 - S1.alpha","1.0 - S.alpha","The alpha channel, if it exists, of the textures is …","[0, 0, 0, 1]","[1, 1, 1, 1]","Pair of load and store operations for an attachment aspect.","Origin of a copy from a 2D image.","Origin of a copy to/from a texture.","Other or Unknown.","Catch only out-of-memory errors.","There is no more memory left to allocate a new frame.","Out of memory error","The underlying surface has changed, and therefore the swap …","The surface under the swap chain has changed.","Allows the user to create bind groups containing arrays …","Enables use of Pipeline Statistics Queries. These queries …","Allows the user to set PolygonMode::Line in …","Allows the user to set PolygonMode::Point in …","Blend mode that does standard alpha blending with …","All the apis that wgpu offers first tier of support for.","Allows the use of push constants: small, fast bits of …","Alignment all push constants need","Handle to a pipeline layout.","Describes a PipelineLayout.","Query returns up to 5 64-bit numbers based on the given …","Flags for which pipeline data should be recorded.","Plane 0.","Plane 1.","Plane 2.","Polygons are drawn as points","Vertex data is a list of points. Each vertex is a new …","Check the device for a single time without blocking.","Check the device for a single time without blocking.","Type of drawing mode for polygons","The alpha channel, if it exists, of the textures is …","Power Preference when choosing a physical adapter.","The alpha channel, if it exists, of the textures is …","Color spaces supported on the web.","Behavior of the presentation engine based on frame rate.","Nanosecond timestamp used by the presentation engine.","Describes the state of primitive assembly and …","Primitive type the input mesh is composed of.","A range of push constant memory to pass to a shader stage.","Allow a buffer to be the destination buffer for a […","An offset into the query resolve buffer has to be aligned …","Maximum queries in a query set","Size of a single piece of query data.","Handle to a query set.","Describes a QuerySet.","Type of query contained in a QuerySet.","Handle to a command queue on a device.","A write-only view into a staging buffer.","Red channel only. 16 bit float per channel. Float in …","Red channel only. 16 bit integer per channel. Signed in …","Red channel only. 16 bit integer per channel. [0, 65535] …","Red channel only. 16 bit integer per channel. Unsigned in …","Red channel only. 16 bit integer per channel. [0, 65535] …","Red channel only. 32 bit float per channel. Float in …","Red channel only. 32 bit integer per channel. Signed in …","Red channel only. 32 bit integer per channel. Unsigned in …","Red channel only. 8 bit integer per channel. Signed in …","Red channel only. 8 bit integer per channel. [-127, 127] …","Red channel only. 8 bit integer per channel. Unsigned in …","Red channel only. 8 bit integer per channel. [0, 255] …","Allows for the creation of ray-tracing queries within …","Allows for the creation of ray-tracing acceleration …","Supports reading from a depth/stencil texture while using …","Enable red channel writes","","Allows a texture to be an output attachment of a render …","Default blending state that replaces destination with the …","Blend mode that does no color blending, just overwrites …","Allows for usage of textures of format …","Raw window & display handle.","Map only for reading","The texture can only be read in the shader and it must be …","The texture can be both read and written in the shader and …","Pre-prepared reusable bundle of GPU operations.","Describes the depth/stencil attachment for render bundles.","Describes a RenderBundle.","Encodes a series of GPU operations into a reusable “…","Describes a RenderBundleEncoder.","In-progress recording of a render pass: a list of render …","Describes a color attachment to a RenderPass.","Describes a depth/stencil attachment to a RenderPass.","Describes the attachments of a render pass.","Describes the timestamp writes of a render pass.","Handle to a rendering (graphics) pipeline.","Describes a render (graphics) pipeline.","Repeat the texture in a tiling fashion","Replace stencil value with value provided in most recent …","Additional information required when requesting an adapter.","Options for requesting adapter.","Requesting a device from an Adapter failed.","Dst - Src","Red, green, and blue channels. 11 bit float with no sign …","Red and green channels. 16 bit float per channel. Float in …","Red and green channels. 16 bit integer per channel. Signed …","Red and green channels. 16 bit integer per channel. [0, …","Red and green channels. 16 bit integer per channel. …","Red and green channels. 16 bit integer per channel. [0, …","Red and green channels. 32 bit float per channel. Float in …","Red and green channels. 32 bit integer per channel. Signed …","Red and green channels. 32 bit integer per channel. …","Red and green channels. 8 bit integer per channel. Signed …","Red and green channels. 8 bit integer per channel. [-127, …","Red and green channels. 8 bit integer per channel. …","Red and green channels. 8 bit integer per channel. [0, 255]…","Red, green, blue, and alpha channels. 10 bit integer for …","Red, green, blue, and alpha channels. 10 bit integer for …","Packed unsigned float with 9 bits mantisa for each RGB …","Red, green, blue, and alpha channels. 16 bit float per …","Red, green, blue, and alpha channels. 16 bit integer per …","Red, green, blue, and alpha. 16 bit integer per channel. […","Red, green, blue, and alpha channels. 16 bit integer per …","Red, green, blue, and alpha channels. 16 bit integer per …","Red, green, blue, and alpha channels. 32 bit float per …","Red, green, blue, and alpha channels. 32 bit integer per …","Red, green, blue, and alpha channels. 32 bit integer per …","Red, green, blue, and alpha channels. 8 bit integer per …","Red, green, blue, and alpha channels. 8 bit integer per …","Red, green, blue, and alpha channels. 8 bit integer per …","Red, green, blue, and alpha channels. 8 bit integer per …","Red, green, blue, and alpha channels. 8 bit integer per …","Allows shaders to index sampled texture and storage buffer …","All the apis that wgpu offers second tier of support for. …","Allows shaders to use the early_depth_test attribute.","Allows shaders to acquire the FP16 ability","Enables 64-bit floating point types in SPIR-V shaders.","Allows shaders to use i16. Not currently supported in naga…","Enables builtin(primitive_index) in fragment shaders.","Allows vertex shaders to have outputs which are not …","Enables creating shader modules from SPIR-V binary data …","Allow a buffer to be a BufferBindingType::Storage inside a …","Allows a texture to be a BindingType::StorageTexture in a …","When used as a STORAGE texture, then a texture with this …","Allows the user to create uniform arrays of storage …","Supports specifying which view formats are allowed when …","Handle to a sampler.","Binding is a sampler.","A sampler that can be used to sample a texture.","Binding is backed by an array of samplers.","Specific type of a sampler binding.","Color variation to use when sampler addressing mode is …","Describes a Sampler.","Integral type used for binding locations in shaders.","Collections of shader features a device supports if they …","Handle to a compiled shader module.","Descriptor for use with Device::create_shader_module.","Descriptor for a shader module given by SPIR-V binary, for …","Source of a shader module.","Describes the shader stages that a binding will be visible …","Sampling returns signed integers.","Two signed shorts (i16). vec2<i32> in shaders.","Four signed shorts (i16). vec4<i32> in shaders.","One signed int (i32). i32 in shaders.","Two signed ints (i32). vec2<i32> in shaders.","Three signed ints (i32). vec3<i32> in shaders.","Four signed ints (i32). vec4<i32> in shaders.","Two signed bytes (i8). vec2<i32> in shaders.","Four signed bytes (i8). vec4<i32> in shaders.","Extremely limited shaders, including a total instruction …","Missing minor features and storage images.","WebGPU supports shader module 5.","Two signed shorts (i16). [-32767, 32767] converted to …","Four signed shorts (i16). [-32767, 32767] converted to …","Two signed bytes (i8). [-127, 127] converted to float [-1, …","Four signed bytes (i8). [-127, 127] converted to float […","Some value of type T.","S.component","S1.component","S1.alpha","S.alpha","min(S.alpha, 1.0 - D.alpha)","sRGB color space","Stencil format with 8 bit integer stencil.","Describes stencil state in a render pipeline.","Stencil.","Operation to perform on the stencil value.","State of the stencil operation (fixed-pipeline stage).","A storage buffer.","A storage texture.","Specific type of a sample in a texture binding.","Stores the resulting value of the render pass for this …","Operation to perform to the output attachment at the end …","Identifier for a particular call to Queue::submit. Can be …","There are no active submissions in flight as of the …","The swap chain is operational, but it does no longer …","Src - Dst","Handle to a presentable surface.","Defines the capabilities of a given surface and adapter.","Describes a Surface.","Result of an unsuccessful call to …","Status of the received surface image.","The window/canvas/surface/swap-chain/etc. a surface is …","The window/canvas/surface/swap-chain/etc. a surface is …","Surface texture that can be rendered to. Result of a …","Enables device specific texture format features.","Allows a texture to be a BindingType::Texture in a bind …","Allows the user to create uniform arrays of textures in …","Enables ASTC family of compressed textures. ASTC textures …","Enables ASTC HDR family of compressed textures.","Enables BCn family of compressed textures. All BCn …","Enables ETC family of compressed textures. All ETC …","Enables normalized 16-bit texture formats.","Allows for creation of textures of format …","Enables use of Timestamp Queries. These queries tell the …","Allows for timestamp queries inside render passes.","","Handle to a texture on the GPU.","A texture binding.","Kind of data the texture holds.","Describes a Texture.","Dimensionality of a texture.","Underlying texture data format.","Feature flags for a texture format.","Features supported by a given texture format","Specific type of a sample in a texture binding.","Different ways that you can use a texture.","Handle to a texture view.","Binding is backed by a texture.","Binding is backed by an array of textures.","Describes a TextureView.","Dimensions of a particular texture view.","A timeout was encountered while trying to acquire the next …","Unable to get the next frame, timed out.","Query returns a 64-bit number indicating the GPU-timestamp …","[0, 0, 0, 0]","Vertex data is a list of triangles. Each set of 3 vertices …","Vertex data is a triangle strip. Each set of three …","Allow a buffer to be a BufferBindingType::Uniform inside a …","Allows shaders to index uniform buffer and storage texture …","With this feature not present, there are the following …","Supports buffers to combine BufferUsages::INDEX with …","Sampling returns unsigned integers.","Indices are 16 bit unsigned integers.","Two unsigned shorts (u16). vec2<u32> in shaders.","Four unsigned shorts (u16). vec4<u32> in shaders.","Indices are 32 bit unsigned integers.","One unsigned int (u32). u32 in shaders.","Two unsigned ints (u32). vec2<u32> in shaders.","Three unsigned ints (u32). vec3<u32> in shaders.","Four unsigned ints (u32). vec4<u32> in shaders.","Two unsigned bytes (u8). vec2<u32> in shaders.","Four unsigned bytes (u8). vec4<u32> in shaders.","Type for the callback of uncaptured error handler","A buffer for uniform values.","Triggered by driver","8 bit integer RGBA, [0, 255] converted to/from …","Two unsigned shorts (u16). [0, 65535] converted to float […","Four unsigned shorts (u16). [0, 65535] converted to float […","Two unsigned bytes (u8). [0, 255] converted to float [0, 1]…","Four unsigned bytes (u8). [0, 255] converted to float [0, 1…","8 bit integer RGBA, Srgb-color [0, 255] converted to/from …","Enable validation, if possible.","Binding is visible from the vertex shader of a render …","Allow a buffer to be the vertex buffer in a draw operation.","If this is true, use of @builtin(vertex_index) and …","Enables using 64-bit types for vertex attributes.","Binding is visible from the vertex and fragment shaders of …","Amount of times the vertex shader is ran. Accounts for the …","Supports storage buffers in vertex shaders.","Vertex buffer strides have to be aligned to this number.","Enables bindings of writable storage buffers and textures …","Supports specifying which view format values are allowed …","Supported on Windows, Linux/Android, and macOS/iOS via …","Catch only validation errors.","Validation error, signifying a bug in code or data","Request an ES 3.0 context.","Request an ES 3.1 context.","Request an ES 3.2 context.","Vertex data is advanced every vertex.","Vertex inputs (attributes) to shaders.","Describes how the vertex buffer is interpreted.","Vertex Format for a VertexAttribute (input).","Describes the vertex processing in a render pipeline.","Whether a vertex buffer is indexed by vertex or by …","Virtual / Hosted.","Vulkan API","Supports all the texture usages described in WebGPU. If …","","Same as WaitForSubmissionIndex but waits for the most …","Same as WaitForSubmissionIndex but waits for the most …","On wgpu-core based backends, block until the given …","On wgpu-core based backends, block until the given …","","","","WGSL module as a string slice.","Window handle producer.","Super trait for window handles as used in SurfaceTarget.","Map only for writing","The texture can only be written in the shader and it:","Zero origin.","Zero origin.","0.0","Set stencil value to zero.","On the Metal backend, this is equivalent to …","Alpha component of the color","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Adds an Srgb suffix to the given texture format, if the …","How to deal with out of bounds accesses in the u (i.e. x) …","How to deal with out of bounds accesses in the v (i.e. y) …","How to deal with out of bounds accesses in the w (i.e. z) …","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Mask of all features that are only available when …","Mask of all features which are part of the upstream WebGPU …","Valid bits for TextureDescriptor::Usage provided for …","Alpha equation.","Specifies how the alpha channel of the textures should be …","List of supported alpha modes to use with the given …","When enabled, produces another sample mask per pixel based …","Must be at least 1. If this is not 1, all filter modes …","Returns true if any backend feature is enabled for the …","Layer count. If Some(count), base_array_layer + count must …","Layer count. If Some(count), base_array_layer + count must …","The stride, in bytes, between elements of this buffer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the binding view of the entire buffer.","Return the binding view of the entire buffer.","Returns the inner hal Surface using a callback. The hal …","Return a reference to a specific backend instance, if …","Apply a callback to this Adapter’s underlying backend …","Apply a callback to this Device’s underlying backend …","Returns the inner hal Texture using a callback. The hal …","Make an ImageCopyTexture representing the whole texture.","","","","The copy aspect.","The copy aspect.","Aspect of the texture. Color textures must be …","The copy aspect.","The copy aspect.","Aspect of the texture. Color textures must be …","Returns the aspect-specific format of the original format","The list of attributes which comprise a single vertex.","Blue component of the color","Back face mode.","Backend used for device","Which Backends to enable.","Base array layer.","Base array layer.","Base mip level.","Base mip level.","Begins recording of a compute pass.","Start a occlusion query on this render pass. It can be …","Start a pipeline statistics query on this render pass. It …","Start a pipeline statistics query on this render pass. It …","Begins recording of a render pass.","The index of the query set at which a start timestamp of …","The index of the query set at which a start timestamp of …","Depth bias state.","Bind groups that this pipeline uses. The first entry will …","Slot for which binding provides resource. Corresponds to …","Binding index. Must match shader index and be unique …","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","Get the underlying bits value.","","Get the underlying bits value.","Get the underlying bits value.","","","Get the underlying bits value.","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The blending that is used for this pipeline.","The number of bytes one texel block occupies during an …","Returns the dimension of a block of texels.","The number of bytes one texel block occupies during an …","Border color to use when address_mode is …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The buffer to be copied to/from.","The buffer to bind.","The buffer to be copied to/from.","The format of any vertex buffers used with this pipeline.","Bytes per “row” in an image.","Compares every limits within self is within the limits …","Compares every limits within self is within the limits …","Depth bias clamp value (absolute).","Clears buffer to zero.","Clears texture to zero.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Color equation.","The color attachments of the render pass.","The formats of the color attachments that this render …","The color space of this texture.","The color space of this texture.","","","","","If this is enabled, this is a comparison sampler using the …","Comparison function that determines if the fail_op or …","Surface that is required to be presentable with the …","Surface that is required to be presentable with the …","Get the texture dimension required of this texture view …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","All flags that indicate if the backend is WebGPU compliant","Returns the number of components this format has.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the number of components this format has taking …","Initializes Surface for presentation.","If set to true, the primitives are rendered with …","Constant depth biasing factor, in basic units of the depth …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","Copy data from one buffer to another.","Copy data from a buffer to a texture.","Copy data from a texture to a buffer.","Copy data from one texture to another.","Total count of queries the set contains. Must not be zero. …","The number of samples calculated per pixel (for MSAA). For …","If this value is Some, indicates this entry is an array. …","Converts a wgpu-hal ExposedAdapter to a wgpu Adapter.","Creates a new BindGroup.","Creates a BindGroupLayout.","Creates a Buffer.","Creates a Buffer from a wgpu-hal Buffer.","","Creates an empty CommandEncoder.","Creates a ComputePipeline.","Create a wgpu Device and Queue from a wgpu-hal OpenDevice","Creates a PipelineLayout.","Creates a new QuerySet.","Creates an empty RenderBundleEncoder.","Creates a RenderPipeline.","Creates a new Sampler.","Creates a shader module from either SPIR-V or WGSL source …","Creates a shader module from SPIR-V binary directly.","Creates a shader module from either SPIR-V or WGSL source …","Creates a new surface targeting a given …","Creates a new surface targeting a given …","Creates a new Texture.","Creates a Texture from a wgpu-hal Texture.","","Creates a view of this texture.","The face culling mode.","Enable debugging and validation flags.","","","","","","","","","","","","","","Creates a new instance of wgpu with default options.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Comparison function used to compare depth values in the …","Operation that is performed when depth test fails but …","What operations will be performed on the depth part of the …","Returns the depth or layer count of this Texture.","The depth of the extent or the number of array layers","If the depth aspect of the depth stencil attachment is …","The effect of draw calls on the depth and stencil aspects …","Information about the depth attachment that this render …","The depth and stencil attachment of the render pass, if …","If disabled, depth will not be written to.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Desired maximum number of frames that the presentation …","Destroy this device.","Destroy the associated native resources as soon as …","Destroy the associated native resources as soon as …","Backend-specific device ID of the adapter","Type of device","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Returns the dimension of this Texture.","Dimensions of the texture.","The dimension of the texture view. For 1D textures, this …","Dispatches compute work operations.","Dispatches compute work operations, based on the contents …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","These default limits are guaranteed to be compatible with …","These default limits are guaranteed to be compatible with …","","Draws primitives from the active vertex buffer(s).","Draws primitives from the active vertex buffer(s).","","Draws indexed primitives using the active index buffer and …","","Draws indexed primitives using the active index buffer and …","","Draws indexed primitives using the active index buffer and …","","Draws indexed primitives using the active index buffer and …","","","Draws primitives from the active vertex buffer(s) based on …","","Draws primitives from the active vertex buffer(s) based on …","Driver name","Driver info","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multiplier for the destination, which is stored in the …","Which DX12 shader compiler to use.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","End the occlusion query on this render pass. It can be …","The index of the query set at which an end timestamp of …","The index of the query set at which an end timestamp of …","End the pipeline statistics query on this render pass. It …","End the pipeline statistics query on this render pass. It …","The resources to bind to this bind group.","Array of entries in this BindGroupLayout","The name of the entry point in the compiled shader. There …","The name of the entry point in the compiled shader. There …","The name of the entry point in the compiled shader. There …","Retrieves all available Adapters that match the given …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Execute a render bundle, which is a set of pre-recorded …","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Operation that is preformed when stencil test fails.","The features which can be used to create devices on this …","The features which can be used on this device.","Finishes recording and returns a CommandBuffer that can be …","Finishes recording and returns a RenderBundle that can be …","Combined boolean flags.","Additional property flags for the format.","Flags to tune the behavior of the instance.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Indicates that only a fallback adapter can be returned. …","Indicates that only a fallback adapter can be returned. …","Returns the format of this Texture.","The texture format of the swap chain. The only formats …","Format of the texture.","The TextureFormat of the image that this pipeline will …","Format of the texture view. Either must be the same as the …","Format of the depth/stencil buffer, must be special depth …","Format of the input","Format of the attachment.","List of supported formats to use with the given adapter. …","The compiled fragment stage, its entry point, and the …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","","Convert from a bits value exactly.","Convert from a bits value exactly.","","","Convert from a bits value exactly.","Convert from a bits value exactly.","","","Convert from a bits value exactly.","Convert from a bits value exactly.","","Convert from a bits value exactly.","","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Infer good defaults from the build type","Create an new instance of wgpu from a wgpu-core instance.","Create an new instance of wgpu from a wgpu-hal instance.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Returns the texture aspect for a given plane.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a SurfaceTargetUnsafe::RawHandle from a window.","Front face mode.","The face to consider the front for the purpose of culling …","Green component of the color","Generates memory report.","Get an object representing the bind group layout at a …","Get an object representing the bind group layout at a …","Returns the capabilities of the surface when used with the …","Returns the next texture to be presented by the swapchain …","Return a default SurfaceConfiguration from width and …","Get info about the adapter itself.","Get info about the adapter itself.","Synchronously and immediately map a buffer for reading. If …","Synchronously and immediately map a buffer for writing. If …","Generates a timestamp using the clock used by the …","Returns the features supported for a given texture format …","Gets the amount of nanoseconds each tick of a timestamp …","Which OpenGL ES 3 minor version to request.","Returns a globally-unique identifier for this Surface.","Returns a globally-unique identifier for this Adapter.","Returns a globally-unique identifier for this Device.","Returns a globally-unique identifier for this Buffer.","Returns a globally-unique identifier for this Texture.","Returns a globally-unique identifier for this TextureView.","Returns a globally-unique identifier for this Sampler.","Returns a globally-unique identifier for this …","Returns a globally-unique identifier for this BindGroup.","Returns a globally-unique identifier for this ShaderModule.","Returns a globally-unique identifier for this …","Returns a globally-unique identifier for this …","Returns a globally-unique identifier for this …","Returns a globally-unique identifier for this RenderBundle.","Returns a globally-unique identifier for this QuerySet.","Returns a globally-unique identifier for this Queue.","Returns the format features guaranteed by the WebGPU spec.","Returns true if the format has a color aspect","Returns true if the format has a depth aspect","Returns true for buffer bindings with dynamic offset …","Returns true if the format has a stencil aspect","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the height of this Texture.","Height of the swap chain. Must be the same size as the …","Height of the extent","Macro to load raw SPIR-V data statically, for use with …","Macro to load a WGSL module statically.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Inserts debug marker.","Inserts debug marker.","Inserts debug marker.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Returns true if the format is a combined depth-stencil …","Returns true for compressed formats.","Returns true if the depth testing is enabled.","Returns true if the state doesn’t mutate the depth …","Returns true if self is a depth or stencil component of …","Returns true if the format is a depth and/or stencil format","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Returns true if the stencil test is enabled.","Returns true if the depth biasing is enabled.","Returns if the given range represents a full resource, …","Returns true if this timestamp is the invalid timestamp.","Returns true if the format is a multi-planar format","Returns true if the result is Self::SubmissionQueueEmpty`.","Returns true if the state doesn’t mutate the target …","Returns true if the state doesn’t mutate either depth or …","Returns true if the face state doesn’t mutate the target …","Returns true for srgb formats.","Returns true if the state doesn’t mutate the stencil.","Returns true for strip topologies.","Returns whether this adapter may present to the passed …","This maintain represents a wait of some kind.","Returns true if the underlying platform offers complete …","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Debug label for the device.","Debug label of a buffer. This will show up in graphics …","Debug label for the command encoder. This will show up in …","Debug label of the render bundle encoder. This will show …","Debug label of the texture. This will show up in graphics …","Debug label for the query set.","Debug label of the shader module. This will show up in …","Debug label of the shader module. This will show up in …","Debug label of the texture view. This will show up in …","Debug label of the pipeline layout. This will show up in …","Debug label of the sampler. This will show up in graphics …","Debug label of the bind group. This will show up in …","Debug label of the render pass. This will show up in …","Debug label of the pipeline. This will show up in graphics …","Debug label of the compute pass. This will show up in …","Debug label of the pipeline. This will show up in graphics …","Debug label of the bind group layout. This will show up in …","Debug label of the render bundle encoder. This will show …","Debug label of this command buffer.","Returns the layer range of a subresource range describes …","The layout of the texture data in this buffer.","The BindGroupLayout that corresponds to this bind group.","The layout of bind groups for this pipeline.","The layout of bind groups for this pipeline.","The layout of the texture data in this buffer.","The best limits which can be used to create devices on …","The limits which can be used on this device.","Additional limits","How data should be read through this attachment.","Maximum level of detail (i.e. mip level) to use","Minimum level of detail (i.e. mip level) to use","How to filter the texture when it needs to be magnified …","Map the buffer. Buffer is ready to map once the callback …","Map on the wait index type.","Takes a closure and maps the label of the command buffer …","Allows a buffer to be mapped immediately after they are …","Bitmask that restricts the samples of a pixel modified by …","Amount of bind groups that can be attached to a pipeline …","Maximum binding index allowed in create_bind_group_layout. …","A limit above which buffer allocations are guaranteed to …","Maximum value of the product of the workgroup_size …","The maximum value of the workgroup_size X dimension for a …","The maximum value of the workgroup_size Y dimension for a …","The maximum value of the workgroup_size Z dimension for a …","Maximum number of bytes used for workgroup memory in a …","The maximum value for each dimension of a …","Amount of storage buffer bindings that can be dynamic in a …","Amount of uniform buffer bindings that can be dynamic in a …","Maximum allowed number of components (scalars) of input or …","Calculates the maximum possible count of mipmaps.","Maximum number of live non-sampler bindings.","Amount of storage available for push constants in bytes. …","Amount of sampled textures visible in a single shader …","Amount of samplers visible in a single shader stage. …","Maximum size in bytes of a binding to a storage buffer. …","Amount of storage buffers visible in a single shader …","Amount of storage textures visible in a single shader …","Maximum allowed value for the size.depth_or_array_layers …","Maximum allowed value for the size.width of a texture …","Maximum allowed value for the size.width and size.height …","Maximum allowed value for the size.width, size.height, and …","Maximum size in bytes of a binding to a uniform buffer. …","Amount of uniform buffers visible in a single shader …","Maximum length of VertexBufferLayout::attributes, summed …","Maximum value for VertexBufferLayout::array_stride when …","Maximum length of VertexState::buffers when creating a …","How to filter the texture when it needs to be minified …","Required BufferBindingType::Storage alignment for …","Required BufferBindingType::Uniform alignment for …","The target mip level of the texture.","The target mip level of the texture.","The target mip level of the texture.","The target mip level of the texture.","Returns the mip_level_count of this Texture.","Mip count of texture. For a texture with no extra mips, …","Mip level count. If Some(count), base_mip_level + count …","Mip level count. If Some(count), base_mip_level + count …","Calculates the extent at a given mip level. Does not …","Returns the mip level range of a subresource range …","How to filter between mip map levels","The compiled shader module for this stage.","The compiled shader module for this stage.","The compiled shader module for this stage.","Dispatches multiple draw calls from the active index …","Dispatches multiple draw calls from the active index …","Dispatches multiple draw calls from the active vertex …","Dispatches multiple draw calls from the active vertex …","The multi-sampling properties of the pipeline.","If the pipeline will be used with a multiview render pass, …","If this render bundle will rendering to multiple array …","Adapter name","Returns true if the stencil state uses the reference value …","Returns true if the face state uses the reference value …","Returns true if the comparison depends on the reference …","Create an new instance of wgpu.","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","Defines where the occlusion query results will be stored …","Base offset of the buffer, in bytes.","Byte offset of the start of the input","Offset into the buffer that is the start of the texture. …","Registers a callback when the previous call to submit …","Set a callback for errors that are not handled in error …","The binary operation applied to the source and destination,","What operations will be performed on this color attachment.","The base texel of the texture in the selected mip_level. …","The base texel of the texture in the selected mip_level.","The base texel of the texture in the selected mip_level. …","The base texel of the texture in the selected mip_level.","Panics if the MaintainResult is not Ok.","","","","","","Operation that is performed when stencil test success.","Calculates the physical size backing a texture of the given","Returns the number of planes a multi-planar format has.","Check for resource cleanups and mapping callbacks. Will …","Polls all devices.","Controls the way each polygon is rasterized. Can be either …","Stops command recording and creates debug group.","Stops command recording and creates debug group.","Stops command recording and creates debug group.","Pop an error scope.","Power preference for the adapter.","Power preference for the adapter.","The premultiplication of this texture","The premultiplication of this texture","Schedule this texture to be presented on the owning …","Presentation mode of the swap chain. Fifo is the only mode …","List of supported presentation modes to use with the given …","The properties of the pipeline at the primitive assembly …","Set of push constant ranges this pipeline uses. Each …","Start record commands and group it into debug marker group.","Start record commands and group it into debug marker group.","Start record commands and group it into debug marker group.","Push an error scope.","The query set to write to.","The query set to write to.","Red component of the color","Range in push constant memory to use for the stage. Must …","Stencil values are AND’d with this mask when reading and …","Returns true if the blend factor references the second …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Strips the Srgb suffix from the given texture format.","Retrieves an Adapter which matches the given …","Requests a connection to a physical device, creating a …","Returns the required features (if any) in order to use the …","Specifies the features that are required by the device …","Specifies the limits that are required by the device …","Resolves a query set, writing the results into the …","The view that will receive the resolved output if …","Resource to attach to the binding","“Rows” that make up a single “image”.","Returns the sample_count of this Texture.","Sample count of texture. If this is not 1, texture must …","Sample count this render bundle is capable of rendering …","Sample count supported by a given texture format.","Returns the sample type compatible with this format and …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","","Sets the active bind group for a given bind group index. …","Sets the active bind group for a given bind group index. …","","Sets the active bind group for a given bind group index. …","Sets the blend color as used by some of the blending modes.","Set a DeviceLostCallback on this device.","Sets the active index buffer.","","","Sets the active index buffer.","Sets the active render pipeline.","","Sets the active compute pipeline.","","Sets the active render pipeline.","Set push constant data for subsequent draw calls.","","Set push constant data for subsequent dispatch calls.","Set push constant data.","","Sets the scissor rectangle used during the rasterization …","Sets the stencil reference.","","Assign a vertex buffer to a slot.","Assign a vertex buffer to a slot.","","Sets the viewport used during the rasterization stage to …","Location for this input. Must match the location in the …","Which collections of features shaders support. Defined in …","Returns the length of the buffer allocation in bytes.","Returns the size of this Texture.","Returns the byte size of the format.","Size of a buffer, in bytes.","Size of the texture. All components must be greater than …","Size of the binding in bytes, or None for using the rest …","Returns the size multiple requirement for a texture using …","Use only a portion of this Buffer for a given operation. …","Slope depth biasing factor.","","","","Source code for the shader.","Binary SPIR-V data, in 4-byte words.","Multiplier for the source, which is produced by the …","Stage push constant range is visible from. Each stage can …","Starts frame capture.","Stencil state.","What operations will be performed on the stencil part of …","If the stencil aspect of the depth stencil attachment is …","How often this vertex buffer is “stepped” forward.","Stops frame capture.","Whether data will be written to through this attachment.","When drawing strip topologies with indices, this is the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Submits a series of finished command buffers for execution.","true if the acquired buffer can still be used for …","A Vec of supported sample counts.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The color state of the render targets.","The texture to be copied to/from.","The texture to be copied to/from.","Accessible view of the frame.","The texture to be copied to/from.","The texture to be copied to/from.","Defines which timestamp values will be written for this …","Defines which timestamp values will be written for this …","Removes the third dimension from this origin","Adds the third dimension to this origin","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the string name of the backend.","","","","","","Adds color space and premultiplied alpha information to …","Removes the colorspace information from the type.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The primitive topology used to interpret vertices.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Kind of query that this query set should contain.","The type of the binding","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If set to true, the polygon depth is not clipped to 0-1 …","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Flushes any pending write operations and unmaps the buffer …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the allowed usages for this Buffer.","Returns the allowed usages of this Texture.","The usage of the swap chain. The only supported usage is …","Usages of a buffer. If the buffer is used in any way that …","Allowed usages of the texture. If used in other ways, the …","Bitflag of supported texture usages for the surface to use …","Returns true if the state relies on the constant color, …","Modify the current limits to use the buffer alignment …","Modify the current limits to use the resolution limits of …","Utility structures and functions that are built on top of …","Backend-specific vendor ID of the adapter","The compiled vertex stage, its entry point, and the input …","Macro to produce an array of VertexAttribute.","The view to use as an attachment.","The view to use as an attachment.","Specifies what view formats will be allowed when calling …","Specifies what view formats will be allowed when calling …","Which shader stages can see this binding.","Construct a wait variant","Construct a WaitForSubmissionIndex variant","Returns the width of this Texture.","Width of the swap chain. Must be the same size as the …","Width of the extent","Returns this set of flags, affected by environment …","Schedule a data write into buffer starting at offset.","Schedule a data write into buffer starting at offset via …","Mask which enables/disables writes to different …","Stencil values are AND’d with this mask when writing to …","Schedule a write of some data into a texture.","Issue a timestamp command at this point in the queue. The …","Issue a timestamp command at this point in the queue. The …","Issue a timestamp command at this point in the queue. The …","","X position of the origin","","Y position of the origin","Z position of the origin","Allowed access to this texture.","Format of the texture.","Indicates that the binding has a dynamic offset.","The minimum size for a BufferBinding matching this entry, …","True if the texture has a sample count greater than 1. If …","Sample type of the texture binding.","Sub-type of the buffer binding.","Dimension of the texture view that is going to be sampled.","Dimension of the texture view that is going to be sampled.","If true, the buffer can only be read in the shader, and it:","Path to the dxcompiler.dll file, or path to the directory …","Path to the dxil.dll file, or path to the directory …","Description of the validation error.","Lower level source of the error.","Lower level source of the error.","Raw display handle, underlying display must outlive the …","Raw display handle, underlying window must outlive the …","compressed block dimensions","ASTC RGBA channel","If this is false, the texture can’t be sampled with a …","","","","","No value.","","Some value of type T.","","","","","","","","","","","","","","","","","Dispatch on an Id’s backend to a backend-generic method.","","","","Allocating resource ids, and tracking the resources they …","","","","","Presentation.","","","","","A Arc of a HalSurface<A>, for any backend A.","","","","","","","","","","","","","If self is an Arc<HalSurface<A>>, return a reference to the","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Return an AnySurface that holds an owning Arc to HalSurface…","If self is an Arc<HalSurface<A>>, returns that.","","","","","","","","","","","","","","","Describes a group of bindings and the resources to be …","","Bindable resource and the slot to bind it to.","Bind group layout.","Describes a BindGroupLayout.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Describes a pipeline layout.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Bind groups that this pipeline uses. The first entry will …","Slot for which binding provides resource. Corresponds to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The resources to bind to this bind group.","Array of entries in this BindGroupLayout","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Debug label of the bind group.","Debug label of the bind group layout.","Debug label of the pipeine layout.","The BindGroupLayout that corresponds to this bind group.","","","Set of push constant ranges this pipeline uses. Each …","Resource to attach to the binding","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Describes an attachment location in words.","","","","","","","","","","","","","","","","","","","Clear the output attachment with the clear color. Clearing …","Error encountered while attempting a clear.","","","","","","","","","","Error encountered when performing a compute pass.","Error encountered when performing a compute pass.","Describes the writing of timestamp values in a compute …","","","Error encountered while attempting to do a copy on a …","","","","","Error type returned from RenderBundleEncoder::new if the …","","","","","","","","","","Discards the content of the render target.","","","","","","Error validating a draw call.","","","","","","","","","Error type returned from RenderBundleEncoder::new if the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Do not clear output attachment.","Operation to perform to the output attachment at the start …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Describes an individual channel within a render pass, such …","","","","","","Error encountered when dealing with queries","","","","","Error encountered while trying to use queries","","","","","Describes a RenderBundleEncoder.","Error encountered when finishing recording a render bundle.","","Error encountered when encoding a render command. This is …","","Describes a color attachment to a render pass.","Describes a depth/stencil attachment to a render pass.","Describes the attachments of a render pass.","Error encountered when performing a render pass.","Error encountered when performing a render pass.","Location to write a timestamp to (beginning or end of the …","Describes the writing of timestamp values in a render pass.","","Error encountered while trying to resolve a query.","","","","","","","","","","","","","","Store the result of the renderpass.","Operation to perform to the output attachment at the end …","","","","","","","","Error encountered while attempting a data transfer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The copy aspect.","The copy aspect.","The index of the query set at which a start timestamp of …","The index of the query set at which a start timestamp of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The buffer to be copied to/from.","","What operations will be performed on this color attachment.","If load_op is LoadOp::Clear, the attachment will be …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The color attachments of the render pass.","The formats of the color attachments that this render …","The color space of this texture.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","What operations will be performed on the depth part of the …","Information about the depth attachment that this render …","The depth and stencil attachment of the render pass, if …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The index of the query set at which an end timestamp of …","The index of the query set at which an end timestamp of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Debug label of the render bundle encoder. This will show …","Debug label of the render bundle encoder.","","","","The layout of the texture data in this buffer.","Operation to perform to the output attachment at the start …","The target mip level of the texture.","The target mip level of the texture.","If this render bundle will rendering to multiple array …","","","","Defines where the occlusion query results will be stored …","The base texel of the texture in the selected mip_level. …","The base texel of the texture in the selected mip_level.","","","","The premultiplication of this texture","","The query set to write the timestamps to.","The query set to write the timestamp to.","If true, the relevant channel is not changed by a …","","The view that will receive the resolved output if …","Sample count this render bundle is capable of rendering to.","","","","","","","","","","","","","","","","","","","","What operations will be performed on the stencil part of …","Operation to perform to the output attachment at the end …","","The texture to be copied to/from.","The texture to be copied to/from.","Defines where and when timestamp values will be written …","Defines where and when timestamp values will be written …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The view to use as an attachment.","The view to use as an attachment.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","Safety","Safety","","","Safety","","","","","","Safety","","Safety","Safety","","Safety","","","","","","","","","","Safety","Safety","","","","","","Safety","Safety","","","","Safety","","","","","","","Structure describing a logical device. Some members are …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Debug label for the device.","","","Specifies the features that are required by the device …","Specifies the limits that are required by the device …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A pointer to a Device<A>, for any backend A.","","","","","","","","","","","","If self is an Arc<Device<A>>, return a clone of that.","If self is an Arc<Device<A>>, return a reference to the …","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Return an AnyDevice that holds an owning Arc pointer to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","A texture or buffer to be freed soon.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Structure describing a logical device. Some members are …","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get an ID of one of the bind group layouts. The ID adds a …","","Safety","Assign id_in an error with the given label.","Safety","Safety","","Assign id_in an error with the given label.","Safety","","","","","Safety","","","","","","","","","","","","Safety","","","","","","Safety","","","","Check device_id for freeable resources and completed …","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Safety","Safety","","","","","","","","","Safety","Safety","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","Poll all devices on all backends.","","","","","","","","","","","","","","","","Get an ID of one of the bind group layouts. The ID adds a …","","","","","","","Safety","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","All the resources for a particular backend in a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An identifier for a wgpu object.","","","","","","","","","","","","","","Trait carrying methods for direct Id access.","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Safety","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","A factory that can build IdentityManagers for all resource …","A type that can produce IdentityManager filters for ids of …","","A global identity handler factory based on IdentityManager.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","Create an IdentityManager<I> implementation that can …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Error when requesting a device from the adaptor","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Surface that is required to be presentable with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Indicates that only a fallback adapter can be returned. …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Generates a set of backends from a comma separated list of …","Power preference for the adapter.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Width of abstract types, in bytes.","","Abstract floating-point type.","","WGSL abstract integer type.","","Opaque object representing an acceleration structure of …","Array access with a computed index.","Access the same types as Access, plus Struct with a known …","","","","","Addressing space of variables.","","","","","An arena holding some kind of component (e.g., type, …","Homogenous list of elements.","Get the length of an array. The expression must resolve to …","Size of an array.","Cast a simple type to another kind.","","","","","","Atomic scalar.","Atomic function.","","Function on an atomic value.","Result of an atomic operation.","","","Width of a boolean type, in bytes.","Memory barrier flags.","Synchronize invocations within the work group. The Barrier …","","","","2D vector","","Apply a binary operator.","Operation that can be applied on two values.","Describes how an input/output variable is to be bound.","Array of bindings.","","A code block is a vector of statements, with maybe a …","A block containing more statements, to be executed …","Boolean type.","","Exits the innermost enclosing Loop or Switch.","Built-in inputs and outputs.","Built-in shader variable.","","","Number of bytes per scalar.","Calls a function.","Result of calling another function.","","Interpolate the value at the center of the pixel.","Interpolate the value at a point that lies within all …","","","","Composite expression.","","Enables adjusting depth without disabling early Z.","Constant value.","The array size is constant.","Constant value.","Skips to the continuing block of the innermost enclosing …","","","","","","","Cube map","","1D image","2D image","3D image","","","Depth comparison image.","Compute the derivative on an axis.","Axis on which to compute a derivative.","Hint at which precision to compute a derivative.","","","","","The array size can change at runtime.","Early fragment tests.","Emit a range of expressions, visible to all statements …","The main function for a pipeline stage.","","","","","","","","An expression that can be evaluated to obtain a value.","","May not be NaN or infinity.","","May not be NaN or infinity.","","","Hash map that is faster but not resilient to DoS attacks.","Hash set that is faster but not resilient to DoS attacks.","Insertion-order-preserving hash map (IndexMap<K, V>), but …","Insertion-order-preserving hash set (IndexSet<K>), but …","","","","Indicates that no interpolation will be performed.","Floating point type.","","","","","","","","","A function defined in the module.","Function locals.","A function argument.","Reference a function parameter, by its index.","A function result.","","Variable defined at module level.","Reference a global variable.","","","Shader may rewrite depth only with a value greater than …","","A strongly typed reference to an arena item.","Opaque handles, such as samplers and images.","","","","","","Conditionally executes one of two blocks, based on the …","Possibly multidimensional array of texels.","Sub-class of the image type.","The number of dimensions an image has.","Load a texel from an image.","Type of an image query.","Query information from an image.","Sample a point from a sampled or a depth image.","Stores a texel value to an image.","","","Initialize the RayQuery object.","","","The interpolation qualifier of a binding or struct field.","","","","","Aborts the current shader execution.","Storage can be used as a source for load ops.","","","","Shader may rewrite depth smaller than one that would have …","","Indicates that linear, non-perspective, correct …","","Literal.","Load a value indirectly.","","","Variable defined at function level.","Reference a local variable.","Indexed location.","","","","","","Executes a block repeatedly.","Call a math function","Built-in shader function for math.","Matrix of numbers.","","","","","","","","Shader module.","Equivalent of the WGSL’s % operator or SPIR-V’s OpFRem","","","","","","","Get the number of array layers.","Get the number of mipmap levels.","Get the number of samples.","","","","","","","","","The value will be interpolated in a perspective-correct …","","","Pointer to another type.","","","Return types predeclared for the frexp, modf, and …","","Private data, per invocation, mutable.","Start or continue the query given by the statement’s …","Push constants.","4D vector","","","","","","","","","","","","","","A strongly typed range of handles.","Locally used handle for ray queries.","","An operation that a RayQuery statement applies to its query…","Return an intersection found by query.","Result of a Proceed RayQuery statement.","","","Call a relational function.","Built-in shader function for testing relation between …","Pipeline binding information for global resources.","Returns from the function (possibly with a value).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Barrier affects all AddressSpace::Storage accesses.","Storage can be used as a target for store ops.","Interpolate the value at each sample location. In …","","Sampling modifier to control the level of detail.","","Regular sampled image.","Can be used to sample values from images.","The sampling qualifiers of a binding or struct field.","","Characteristics of a scalar type.","Number of integral or floating-point kind.","Primitive type for a scalar.","Select between two values based on a condition.","Stage of the programmable pipeline.","","Right shift carries the sign of signed integers only.","","","","Signed integer type.","Get the size at the specified level.","","A human-readable representation for a span, tailored for …","A source code span, used for error reporting.","A source code span together with “context”, a …","Set of special types that can be optionally generated by …","Splat scalar into a vector.","","Instructions which make up an executable block.","","Storage buffer data, potentially mutable.","Storage image.","Flags describing an image.","Image storage format.","Stores a value at an address.","User-defined structure.","Member of a user-defined structure.","","","Conditionally executes one of multiple blocks, based on …","A case for a switch statement.","The value of the switch case.","Vector swizzle.","Component selection for a vector swizzle.","","","","","3D vector","","A data type declared in the module.","Enum with additional information, depending on the kind of …","","","","","Unsigned integer type.","Apply an unary operator.","Operation that can be applied on a single value.","Shader may not rewrite depth value.","Uniform buffer data.","An arena whose elements are guaranteed to be unique.","","","","","","Pointer to a scalar or vector.","Vector of numbers.","Number of components in a vector.","","","","","Barrier affects all AddressSpace::WorkGroup accesses.","","Wrapper class for Error, augmenting it with a list of …","Workgroup shared data, mutable.","","","Load uniformly from a uniform pointer in the workgroup …","Result of a WorkGroupUniformLoad statement.","","","","","","","","Zero value of a type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Convert inner error into another type. Joins span …","Adds a new value to the arena, returning a typed handle.","","Apply the usual default interpolation for ty to binding.","","Information about function argument.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Find the common type of self and other under WGSL’s …","Return true if automatic conversions will covert self to …","Backend functions that export shader Modules into binary …","For I/O structs, defines the binding.","Binding number within the group.","For resources, defines the binding point.","For entry points, an argument has to have a binding unless …","For entry points, the result has to have a binding unless …","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Get the underlying bits value.","","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","Body of the case.","Block of instructions comprising the body of the function.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the canonical form of self, or None if it’s …","Assert that handle is valid for this arena.","Assert that handle is valid for this arena.","Assert that range is valid for this arena.","Clears the arena keeping all allocations","Clears the arena, keeping all allocations.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Constant expressions and override expressions used by this …","Arena for the constants defined in this module.","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Early depth test for fragment stages.","Emits a summary of the error to standard error stream.","Emits a summary of the error to standard error stream.","Emits a summary of the error to a string.","Emits a summary of the error to a string.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Entry points.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compare self and rhs as types.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Expressions used inside this function.","","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","","If true, the control flow continues to the next case in …","Fetch a handle to an existing type.","Adds a value with a custom check for uniqueness: returns a …","Adds a value with a check for uniqueness, where the check …","return the first and last handles included in self.","Construct a float Scalar with the given width.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Construct a Range that covers the zero-based indices in …","Frontend parsers that consume binary and text shaders and …","The entrance function.","Arena for the functions defined in this module.","Populate this module’s SpecialTypes::predeclared_types …","Populate this module’s SpecialTypes::ray_desc type.","Populate this module’s SpecialTypes::ray_intersection …","Return this arena’s handle for value, if present.","Return this arena’s value at handle, if that is a valid …","Get a mutable reference to an element in the arena.","","Return the span associated with handle.","Arena for the global variables defined in this module.","The bind group index.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the zero-based index of this handle.","","","","","","Return the length of a subscriptable type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The value of the constant.","Initial value for this variable.","Initial value for this variable.","Inner structure that depends on the kind of the type.","Insert a new value into the arena.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extracts the inner vector.","Reverse of Self::new, discards span information and …","","","","","Convert inner error using From.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","","Check whether self was defined or is a default/unknown span","Return true if this expression is a dynamic array index, …","","Returns true if the arena contains no elements.","Return true if the arena contains no elements.","","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","","","","Returns true if the statement directly terminates the …","Returns an iterator over the items stored in this arena, …","Returns an iterator over the items stored in this arena, …","Yield a set of contained flags values.","Yield a set of contained flags values.","Returns a iterator over the items stored in this arena, …","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Lists of reserved keywords for each shading language with …","How the value’s bits are to be interpreted.","Returns the current number of items stored in this arena.","Return the current number of items stored in this arena.","","Length in code units (in bytes) of the span.","1-based line number.","1-based column of the start of this span","Local variables defined and used in the function.","Return a SourceLocation for this span in the provided …","Return a SourceLocation for our first span, if we have one.","","The name of the type, if any.","","Name of the variable, if any.","Name of the variable, if any.","Name of the argument, if any.","Name of the function, if any.","Name of this entry point, visible externally.","Map of expressions that have associated variable names","Returns true if the expression is considered emitted at …","Create a new arena with no initial capacity allocated.","Create a new arena with no initial capacity allocated.","","Creates a new Span from a range of byte indices","Create a new WithSpan from an Error, containing no spans.","","Return a range enclosing handles first through last, …","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","0-based Offset in code units (in bytes) of the start of …","Offset from the beginning from the struct.","","Return the global variable being accessed by the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","Types for predeclared wgsl types instantiated on demand.","Module processing functionality.","","Get the range of handles from a particular number of …","Type for RayDesc.","Type for RayIntersection.","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Replace an old value with a new value.","The result of this function, if any.","Return the scalar type of self.","","","","","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Get the size of this type.","","How this variable is to be stored.","","","Iterator over stored SpanContexts.","Dictionary of special type handles.","","Shader stage.","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Modifies self to contain the smallest Span possible that …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Converts self to a range if the span is not unknown","","","Formats the type as it is written in wgsl.","Format a scalar kind+width as a type is written in wgsl.","","Formats the type as it is written in wgsl.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","Returns the smallest Span possible that contains all the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Type of the field.","","The type of this variable.","The type of this variable.","Type of the argument.","Type of the result.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Arena for the types defined in this module.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Returns a new Span starting at self and ending at other","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Shader validator.","Value, upon which the case is considered true.","","This size of the value in bytes.","","Add a SpanContext.","Add a new span with description.","Workgroup size for compute stages","","Return the zero-based index range covered by self.","","","","","","Indicates the 2nd input to the blender when dual-source …","","","","","","","","","The index into an arrayed image. If the arrayed flag in …","","","","","","","Boolean expression","If provided, converts to the specified byte width. …","","The coordinate of the texel we wish to load. This must be …","","","","","Source expression, which can only be a scalar or a vector.","","","If Some(), this operation is a gather operation on the …","","The image to load a texel from. This must have type Image. …","","","","Target scalar kind.","","","A level of detail, for mipmapped images.","Expression handle lives in const_expressions","","","","","","","","","A sample index, for multisampled Sampled and Depth images.","","","","","","The type of the result","","","","","Kind of values to sample.","Multi-sampled image.","Multi-sampled depth image.","If None, the base level is considered.","","","","","The acceleration structure within which this query should …","A struct of detailed parameters for the ray query.","","","","","","","","","","","","","Function to run on the atomic.","The specific operation we’re performing on query.","","","","Pointer to an atomic value.","This must be of type Pointer in the WorkGroup address space","The RayQuery object this statement operates on.","","AtomicResult expression representing this function’s …","The WorkGroupUniformLoadResult expression representing …","","","","","","Value to use in the function.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Ray flags, for a RayDesc’s flags field.","","","","","","Get a flags value with all known bits set.","","","","","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","Get the underlying bits value.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","The bitwise negation (!) of the bits in a flags value, …","","Whether all set bits in a source flags value are also set …","","","","The intersection of a source flags value with the …","","","Get a flags value with all bits unset.","","","","","The bitwise or (|) of the bits in each flags value.","","","","","","Returns the argument unchanged.","","Convert from a bits value.","","Convert from a bits value exactly.","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","","Backend for GLSL (OpenGL Shading Language).","Backend for HLSL (High-Level Shading Language).","","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Calls U::from(self).","","","","","","","","","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Backend for MSL (Metal Shading Language).","The bitwise negation (!) of the bits in a flags value, …","The intersection of a source flags value with the …","Call insert when value is true or remove when value is …","Backend for SPIR-V (Standard Portable Intermediate …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The bitwise exclusive-or (^) of the bits in two flags …","","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","The bitwise or (|) of the bits in two flags values.","","Flip output Y and extend Z from (0, 1) to (-1, 1).","","Buffer address space support.","Mapping between resources and bindings.","","","","","","","8 byte floats.","Supports ARB_shader_draw_parameters on the host, which …","Dual source blending","Arrays with a dynamic length.","core GLSL.","es GLSL.","The entry point couldn’t be found.","A GLSL compilation error.","","Emit PointSize output builtin to vertex shaders, which is …","More image formats.","Structure used to encode additions to GLSL that aren’t …","A error occurred while writing to the output.","Image load and early depth tests.","Image size query","Include unused global variables, constants and functions. …","Instance index","A image was used with multiple samplers, which isn’t …","","","","The specified Version doesn’t have all required Features.","AddressSpace::PushConstant was used more than once in the …","Interpolation and auxiliary qualifiers.","Configuration used in the Writer.","A subset of options meant to be changed per pipeline.","All information to bind a single uniform value to the …","Reflection info for texture mappings and uniforms.","","Sample ID.","List of supported core GLSL versions.","List of supported es GLSL versions.","Texture levels query","Texture samples query","Supports GL_EXT_texture_shadow_lod on the host, which …","Mapping between a texture and its sampler, if it exists.","A call was made to an unsupported external.","A scalar with an unsupported width was requested.","","A GLSL version.","The specified Version isn’t supported.","Writer responsible for all code generation.","Configuration flags for the Writer.","GL uniform name for the item. This name is the same as if …","","","","","","","","","","","","Get a flags value with all known bits set.","Get a flags value with all known bits set.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Map of resources association to binding locations.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","Get the underlying bits value.","","Get the underlying bits value.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all bits unset.","Get a flags value with all bits unset.","The name of the entry point.","","","","","","","","","","","","","","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","The index which can be used for dual source blending. This …","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","The location of the global. This corresponds to …","How many views to render to, if doing multiview rendering.","Creates a new Writer instance.","Create a new gles version","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The offset in the push constant memory block this uniform …","","List of push constant items in the shader.","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Handle to the associated sampler global variable, if it …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","The stage of the entry point.","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","Handle to the image global variable.","Mapping between texture names and variables/samplers.","","","","","","","","","","","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Type of the uniform. This will only ever be a scalar, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mapping between uniform variables and names.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","Mapping between names and attribute locations.","The GLSL version to be used.","Writes the Module as glsl to the output","Configuration flags for the Writer.","Should workgroup variables be zero initialized (by …","","","","","","","","","","Configuration used in the Writer.","Reflection info for entry point names.","A HLSL shader model version.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If the binding is an unsized binding array, this overrides …","Map of resources association to binding locations.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mapping of the entry point names.","","","","","","","","","","","","","","Don’t panic on missing bindings, instead generate any …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Bind target of the push constant buffer","","The hlsl shader model to be used","","","Add special constants to SV_VertexIndex and …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Should workgroup variables be zero initialized (by …","","","","","","","","","","","","","","","","","","A subset of options that are meant to be changed per …","","","Information about a translated module that is required for …","","","","","","","","","","","","","","","","","","","","","","","","","Allow BuiltIn::PointSize and inject it if doesn’t exist.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If the binding is an unsized binding array, this overrides …","","","","","","","","","","","","","","","","","","","Bounds checking policies.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mapping of the entry point names. Each item in the array …","","","","","","","","","","","","","","","","","","","","","","Don’t panic on missing bindings, instead generate …","Finishes writing and returns the output.","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Samplers to be inlined into the code.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","(Major, Minor) target version of the Metal Shading …","","Creates a new Writer instance.","Map of entry-point resources, indexed by entry point …","","","","","The slot of a buffer that contains an array of u32, one …","","Make it possible to link different stages via SPIRV-Cross.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Should workgroup variables be zero initialized (by …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Flip Y coordinate of BuiltIn::Position output.","","","","","","","","","","","","","","","","","","","","","Clamp BuiltIn::FragDepth output between 0 and 1.","","SPIR-V operand kind: Capability","","","","","","","","Include debug labels for everything.","","","","","","","","","","","","","","","","","","","","","","","","Emit PointSize output builtin to vertex shaders, which is …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Flags corresponding to the boolean(-ish) parameters to …","","","","","","","","","","","","","","","","Emit OpName for input/output locations. Contrary to spec, …","","","","","","","","","","","","","","","Via VK_KHR_zero_initialize_workgroup_memory or Vulkan 1.3","","","","","","","","","","Via assignments + barrier","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","Get a flags value with all known bits set.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If the binding is an unsized binding array, this overrides …","Map of resources to information about the binding.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Get the underlying bits value.","","","Get the underlying bits value.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","How should generate code handle array, vector, matrix, or …","If given, the set of capabilities modules are allowed to …","","","","","","","","","","","","","","","","","","","","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","Get a flags value with all bits unset.","Get a flags value with all bits unset.","The name of the entry point.","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","","Configuration flags for the writer.","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","Convert from a bits value exactly.","","","Convert from a bits value exactly.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","Return the set of capabilities the last module written …","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","(Major, Minor) target version of the SPIR-V.","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","The stage of the entry point.","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","","Dictates the way workgroup variables should be zero …","Remove unused types, expressions, and constants from module…","Structure responsible for managing variable lookups and …","A table of types for an Arena<Expression>.","","","Adds a new variable to the current scope.","Adds a new variable to the root scope.","","","","","","","","","","","","","","","Constructs a new symbol table with a root scope","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Grow this typifier until it contains a type for expr_handle…","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Recompute the type resolution for expr_handle.","Perform a lookup for a variable named name.","","Removes the current lexical scope and all its variables","Adds a new lexical scope.","Add an expression’s type to an Arena<Type>.","","","","","","","","","","","","","","","","","","Frontend for WGSL (WebGPU Shading Language).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Emits a summary of the error to standard error stream.","Emits a summary of the error to standard error stream.","Emits a summary of the error to a string.","Emits a summary of the error to a string.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Returns a SourceLocation for the first label in the error …","","","","","","","","","","","","","","","","","","","","","","","","","Keywords for WGSL (WebGPU Shading Language).","","A newtype struct where its only valid values are powers of …","","","","","","Policies for injecting bounds checks during code …","How should code generated by Naga do bounds checks?","","","A context for evaluating constant expressions.","","","","The number of elements is determined at runtime.","","Helper class to emit expressions","","","","","","","","","","","","","","","","","A type stored in the associated arena.","","","The number of elements in an indexable type.","","","","","","","","","","","","","","","","","","","","","Values of this type always have the given number of …","","","Helper processor that derives the sizes of all types.","","","","","","","This processor assigns names to all the things in a module …","","","","","","","","Out-of-bounds reads return zero, and writes have no effect.","","","","Replace out-of-bounds indexes with some arbitrary …","","","","","","","","","","Size and alignment information for a type.","","","The result of computing an expression’s type.","Naga adds no checks to indexing operations. Generate the …","A free-floating TypeInner, representing a type that may …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","How should the generated code handle binding array indexes …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","How should the generated code handle array, vector, or …","Return a new identifier based on label_raw.","","Convert the scalar components of expr to target.","Convert the scalar leaves of expr to target, handling …","Determine which policy applies to base.","Remove all entries from this Layouter, retaining storage.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return true if any of self’s policies are policy.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Ensure that the given block has return statements at the …","","","","","","","","","","","","","","","","","","","","","","","","Return an iterator over the individual components …","","","","","","","","","","","","","","","","","","","","","","","Return a ConstantEvaluator that will add expressions to …","Return a ConstantEvaluator that will add expressions to …","Return a ConstantEvaluator that will add expressions to …","Return a ConstantEvaluator that will add expressions to …","Forces the the expression to not be const","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Panics","","","","","","","","","How should the generated code handle image texel loads …","How should the generated code handle image texel stores …","Definitions for index bounds checking.","","How should the generated code handle array, vector, or …","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether or not n is a multiple of this alignment.","","","","","","","","","","Determine the type of expr.","Round n up to the nearest alignment boundary.","","","","","","","","","","","","","","","","","","","","","","","Produce the stride as if this type is a base of an array.","","","","","","","","","","","","","","","","","","","","","","","","","","","Try to evaluate expr at compile time.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extend this Layouter with layouts for any new entries in …","Initialize a resolve context from the module.","","","","","","","","","","","","","Policies for injecting bounds checks during code …","How should code generated by Naga do bounds checks?","The number of elements is determined at runtime.","","An index that may be statically known, or may need to be …","The number of elements in an indexable type.","","","","Values of this type always have the given number of …","Out-of-bounds reads return zero, and writes have no effect.","Replace out-of-bounds indexes with some arbitrary …","","Naga adds no checks to indexing operations. Generate the …","Determine whether index is statically known to be in …","","","","","","How should the generated code handle binding array indexes …","","","How should the generated code handle array, vector, or …","","","","","","","","Build a set of expressions used as indices, to cache in …","","Returns the argument unchanged.","","","How should the generated code handle image texel loads …","How should the generated code handle image texel stores …","How should the generated code handle array, vector, or …","","Calls U::from(self).","","","","","","","","","","","","","","","","","This type can be passed as a function argument.","","","","","","","Group, binding, and location attributes.","Statements and blocks of them.","","","","","Support for [Builtin::ClipDistance].","","Constants.","A WGSL constructible type.","Uniformity of control flow for operations that require it.","The data can be copied around.","Support for arrayed cube textures.","Support for [Builtin::CullDistance].","","Allowed IR capabilities.","","","","","","","","","","","","","","","","Can be used for data variables.","","Support for generating two sources for blending from …","","","","Support for early_depth_test.","Expressions.","","","","","","","","","","","","","","Float values with width = 8.","","","","","","","","Indicates how a global variable is used.","","","Can be used for host-shareable structures.","","Can be be used for user-defined IO between pipeline stages.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Support for [Builtin::SampleIndex] and [Sampling::Sample].","Support for [BuiltIn::ViewIndex].","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Support for [Builtin:PrimitiveIndex].","Support for [AddressSpace:PushConstant].","","","The information about the data is queried.","Support for ray queries and acceleration structures.","Data will be read from the variable.","","","","Support for non-uniform indexing of sampled textures and …","Support for non-uniform indexing of samplers.","The data type has a size known by pipeline creation time.","Support for 16-bit normalized storage texture formats.","Host-shareable structure layouts.","Validation flags.","","","","","","","","Flags associated with Types by Validator.","Support for non-uniform indexing of uniform buffers and …","","","Uniform control flow characteristics.","Kinds of expressions that require uniform control flow.","","","","","","","Validation flags.","","","","Data will be written to the variable.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Set of shader stages where calling this function is valid.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","","","Get the underlying bits value.","Get the underlying bits value.","","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Indicates that the function is using dual source blending.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value exactly.","","Convert from a bits value exactly.","","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Function may kill the invocation.","Construct a new validator instance.","A child expression with non-uniform result.","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","If this expression requires uniform control flow, store …","Reset the validator internals","All pairs of (texture, sampler) globals that may be used …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Uniformity characteristics.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","","","","","","","","","","","","","","","Check the given module to be valid.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Describes a compute pipeline.","","","","","","","","","","","","","","","","Describes fragment processing in a render pipeline.","","","","Number of implicit bind groups derived at pipeline …","","","","","","","","","","","","","","","","","","","","","","","","Describes a programmable pipeline stage.","","","Describes a render (graphics) pipeline.","","","","","","","","","","","","","","","","Describes how the vertex buffer is interpreted.","Describes the vertex process in a render pipeline.","How a render pipeline will retrieve attributes from a …","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","The stride, in bytes, between elements of this buffer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The list of attributes which comprise a single vertex.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","Get the underlying bits value.","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The format of any vertex buffers used with this pipeline.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","","","","","","","","","","","","","Whether all set bits in a source flags value are also set …","","The effect of draw calls on the depth and stencil aspects …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all bits unset.","The name of the entry point in the compiled shader. There …","","","","","The bitwise or (|) of the bits in each flags value.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The fragment processing state for this pipeline.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value exactly.","","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained named flags values.","","","","","","The layout of bind groups for this pipeline.","The layout of bind groups for this pipeline.","","Whether the buffer is indexed by vertex number or instance …","The compiled shader module for this stage.","The multi-sampling properties of the pipeline.","If the pipeline will be used with a multiview render pass, …","The bitwise negation (!) of the bits in a flags value, …","The properties of the pipeline at the primitive assembly …","The intersection of a source flags value with the …","Call insert when value is true or remove when value is …","","","","","","","","The compiled compute stage and its entry point.","The compiled vertex stage and its entry point.","The compiled fragment stage and its entry point.","How often this vertex buffer is “stepped” forward.","The byte stride in the buffer between one attribute value …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The bitwise exclusive-or (^) of the bits in two flags …","The effect of draw calls on the color aspect of the output …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","","","","","","","","","","The vertex processing state for this pipeline.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Registry is the primary holder of each resource type Every …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Mapping was aborted (by unmapping or destroying the buffer …","","","The buffer is already mapped.","","","","","","","","","The status code provided to the buffer mapping callback.","","","","The context is Lost.","","","","","","","","","A buffer that has been marked as destroyed and is staged …","A texture that has been marked as destroyed and is staged …","","","","","","","Contains the error value","An unknown error.","","","","The buffer is in an invalid state.","","","The range isn’t properly aligned.","","","","","","","","","","","","","","","","","","","The range isn’t fully contained in the buffer.","","","","","","","Incompatible usage flags.","","","","","Mapping was already requested.","","","","","","","","","","AddressMode::ClampToBorder requires feature …","","","","","","","","","Contains the success value","","","","","","","","Information about the wgpu-core resource.","","Describes a Sampler","","A temporary buffer, consumed by the command that uses it.","The Buffer is sucessfully mapped, get_mapped_range can be …","","","","","","","","","Describes a TextureView.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","How to deal with out of bounds accesses in the u (i.e. x) …","Must be at least 1. If this is not 1, all filter modes …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Border color to use when address_mode is …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If this is enabled, this is a comparison sampler using the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Total count of queries the set contains. Must not be zero. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Dimensions of the texture.","The dimension of the texture view.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Format of the texture.","Format of the texture view, or None for the same format as …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Debug label of a buffer. This will show up in graphics …","Debug label of the texture. This will show up in graphics …","Debug label for the query set.","Debug label of the texture view.","Debug label of the sampler.","Maximum level of detail (i.e. mip level) to use","Minimum level of detail (i.e. mip level) to use","How to filter the texture when it needs to be magnified …","Allows a buffer to be mapped immediately after they are …","How to filter the texture when it needs to be minified …","Mip count of texture. For a texture with no extra mips, …","How to filter between mip map levels","Range within the texture that is accessible via this view.","","Sample count of texture. If this is not 1, texture must …","Size of a buffer, in bytes.","Size of the texture. All components must be greater than …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Kind of query that this query set should contain.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Usages of a buffer. If the buffer is used in any way that …","Allowed usages of the texture. If used in other ways, the …","","Specifies what view formats will be allowed when calling …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A table of T values indexed by the id type I.","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","The binding layout is derived from the pipeline layout.","","","","","","","","","","","","","","","","","","","","","The binding layout is provided by the user in BGLs.","","Errors produced when validating a programmable stage of a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Checks that the given buffer usage contains the required …","","Return true if the fragment format is covered by the …","Checks that the given texture usage contains the required …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Allow the acceleration structure to be compacted in a copy …","Allow for incremental updates (no change in size)","","offset - offset in bytes","","Flags for acceleration structures","","Information of the required size for a corresponding …","","Entries for a single descriptor","","Flags for acceleration structure geometries","offset - offset in bytes","offset - offset in bytes","offset - offset in bytes","first_vertex - offset in the vertex buffer (as number of …","","","","","","","","","","","","","BindGroup descriptor.","","","BindGroupLayout descriptor.","Pipeline layout creation flags.","","","","","","","","","Similar to wgt::BufferUsages but for internal use.","","Updates use source_acceleration_structure if present, else …","","Format can be used as color and input attachment.","Format can be used as color (with blending) and input …","The color target of a renderpass.","Flag used by the wgpu-core texture tracker to say a …","Format can be copied to.","The destination of a hardware copy.","The destination of a hardware copy.","Format can be copied from.","The source of a hardware copy.","The source of a hardware copy.","","","","Encoder for commands in command buffers. Serves as a …","","","","","","","Describes a compute pipeline.","","","","Format can be used as depth-stencil and input attachment.","Read-only depth stencil usage.","Read-write depth stencil usage","","","","","","","","","Drop guard to signal wgpu-hal is no longer using an …","The combination of states that a buffer must exclusively …","The combination of states that a texture must exclusively …","","","Include support for first_vertex / first_instance drawing.","","","Texture format capability flags.","All buffers, buffer addresses and offsets will be ignored.…","The combination of states that a buffer may be in at the …","The combination of states that a texture may be in at the …","The index buffer used for drawing.","The indirect or count buffer in a indirect draw or …","","","","Error occurring while trying to create an instance, or …","","","Optimize for low memory footprint (scratch and output)","","","","","The argument to a read-only mapping.","The argument to a write-only mapping.","","","","","","","Format can be used for render pass resolve targets.","Format can be multisampled by x16.","Format can be multisampled by x2.","Format can be multisampled by x4.","Format can be multisampled by x8.","","","NO_DUPLICATE_ANY_HIT_INVOCATION","Include support for num work groups builtin.","","Naga shader module.","No value.","Is OPAQUE","The combination of all usages that the are guaranteed to …","The combination of all usages that the are guaranteed to …","","","","","Allows for bind group binding arrays to be shorter than …","","","","","Optimize for fast build time","Optimize for fast ray tracing performance","Ready to present image to the surface.","","","","Pipeline layout creation flags.","Describes a programmable pipeline stage.","A buffer used to store query results.","Size of a single occlusion/timestamp query, when copied …","","","","Read-only sampled or fetched resource.","","","","","Describes a render (graphics) pipeline.","","Format can be sampled.","Format can be sampled with a linear sampler.","Format can be sampled with a min/max reduction sampler.","","","Format can be used as storage with write-only access.","Format can be used as storage with atomics.","A read-only storage buffer used in a bind group.","Read-only storage buffer usage. Corresponds to a UAV in …","Format can be used as storage with read and read/write …","A read-write or write-only buffer used in a bind group.","Read-write or write-only storage buffer usage.","","","","","Shader input.","","","Some value of type T.","","","","Describes information about what a Surface’s …","","","","","","","","","","","","Texture format capability flags.","Similar to wgt::TextureUsages but for internal use.","","TextureView descriptor.","","","A uniform buffer bound in a bind group.","The texture is in unknown state.","Flag used by the wgpu-core texture tracker to say that the …","","Stores the text of any validation errors that have …","A vertex buffer used for drawing.","Flag for internal testing.","Describes how the vertex buffer is interpreted.","","","Returns the next texture to be presented by the swapchain …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","Get a flags value with all known bits set.","","","","The stride, in bytes, between elements of this buffer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The list of attributes which comprise a single vertex.","","","","Begin encoding a new command buffer.","Safety:","","","","","","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","Get the underlying bits value.","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","","","Get the underlying bits value.","","Get the underlying bits value.","Get the underlying bits value.","","","Get the underlying bits value.","","Get the underlying bits value.","","Get the underlying bits value.","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The buffer being bound.","","","","","","The alignment of the start of the buffer used as a GPU …","The alignment of the row pitch of the texture data stored …","","","To get the required sizes for the buffer allocations use …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The effect of draw calls on the color aspect of the output …","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Alpha composition mode.","List of supported alpha composition modes.","Configures the surface to use the given device.","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Whether all set bits in a source flags value are also set …","Returns true if the bitflags contains bits that are not …","Returns true if the bitflags contains bits that are not …","","Copy from buffer to texture. Works with a single array …","","","Copy from texture to buffer. Works with a single array …","Copy from one texture to another. Works with a single …","","","","","","","Creates a bind group layout.","Creates a new buffer.","","","","","","","","","","Creates a new texture.","","Current extent of the surface, if known.","Source codes for debug","","","","The effect of draw calls on the depth and stencil aspects …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","Discard currently recorded list, if any.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A dummy API implementation.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","Get a flags value with all bits unset.","The upper bound of the range (exclusive).","","","","","","Safety:","","","","","","The name of the entry point in the compiled shader. There …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Exit connection to this logical device.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Requested texture extent. Must be in …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Format of the surface textures.","","","List of supported texture formats.","The fragment stage for this pipeline.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","Convert from a bits value.","","Convert from a bits value exactly.","Convert from a bits value exactly.","","","Convert from a bits value exactly.","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value exactly.","","","Convert from a bits value exactly.","Convert from a bits value exactly.","","","Convert from a bits value exactly.","Convert from a bits value exactly.","","Convert from a bits value exactly.","","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","Get a flags value with the bits of a flag with the given …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns any API validation errors that hav occurred in …","","Creates a PresentationTimestamp using the adapter’s WSI.","","GLES API internals.","","","","","","","","","","","","","","","","Analysis information of the module.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","Whether all known bits in this flags value are set.","","","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Whether all bits in this flags value are unset.","Returns true if only one flag is set","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","Yield a set of contained named flags values.","","","","","","","","","","","","","","","","The layout of bind groups for this pipeline.","The layout of bind groups for this pipeline.","","","","","","","","Range for the number of queued frames.","Maximum number of queued frames. Must be in …","","","","","","","","","Shader module IR.","The compiled shader module for this stage.","The multi-sampling properties of the pipeline.","If the pipeline will be used with a multiview render pass, …","","","","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","The bitwise negation (!) of the bits in a flags value, …","","The offset at which the bound region starts.","","","","","","","Origin within a texture. Note: for 1D and 2D textures, Z …","","","Vertical synchronization mode.","List of supported V-sync modes.","The properties of the pipeline at the primitive assembly …","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Reclaims all resources that are allocated for this encoder.","","","","","","","","","","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Call insert when value is true or remove when value is …","Sets the bind group at index to group, assuming the layout …","","","","Sets a range in push constant data.","","","","","","","","The size of the region bound, in bytes.","","","","","","","","","","","","","The compiled compute stage and its entry point.","The lower bound of the range (inclusive).","","","How often this vertex buffer is “stepped” forward.","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","The intersection of a source flags value with the …","Submits the command buffers for execution on GPU.","The presentation configuration no longer matches the …","Returns the capabilities of working with a specified …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","Return the set of supported capabilities for a texture …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Unconfigures the surface on the given device.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Supported texture usage flags.","","","","","Allowed usage of surface textures,","","","Contains either a single mutating usage as a target, or a …","","","The format of any vertex buffers used with this pipeline.","","","The vertex stage for this pipeline.","","","","Allows views of this texture to have a different format …","Allows views of swapchain texture to have a different …","Vulkan API internals.","","Calling wait with a lower value than the current fence …","","","","","Maximum binding size for the shaders that only support i32 …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A wrapper around a glow::Context and the required EGL …","A guard containing a lock to an AdapterContext","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the underlying EGL context.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the EGL instance.","Returns the EGL version the adapter context was created …","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get’s the glow::Context without waiting for a lock","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Obtain a lock to the EGL context and get handle to the …","","","Creates a new external adapter using the specified loader …","","","","","Returns the EGLDisplay corresponding to the adapter …","","","","","","","","","","","","","","","","","","Safety","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","User data needed by …","","Qualcomm OOMs when there are zero color attachments but a …","If the following code returns false, then nvidia will end …","","","","","","","","","","","Only generate SPIR-V for one entry point at a time.","","","","","","","","Workaround flags.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all known bits set.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise and (&) of the bits in two flags values.","The bitwise and (&) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","The bitwise or (|) of the bits in two flags values.","Get the underlying bits value.","","The bitwise exclusive-or (^) of the bits in two flags …","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","The bitwise negation (!) of the bits in a flags value, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all set bits in a source flags value are also set …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the instance extension names wgpu would like to …","","","","","","","","","","","","","","","","Safety","The intersection of a source flags value with the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a flags value with all bits unset.","","","","","","","","","","","","","","","The bitwise or (|) of the bits in each flags value.","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from a bits value.","","Convert from a bits value exactly.","Convert from a bits value, unsetting any unknown bits.","The bitwise or (|) of the bits in each flags value.","Get a flags value with the bits of a flag with the given …","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","","","","The bitwise and (&) of the bits in two flags values.","Whether any set bits in a source flags value are also set …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether all known bits in this flags value are set.","Whether all bits in this flags value are unset.","Yield a set of contained flags values.","Yield a set of contained named flags values.","","The bitwise negation (!) of the bits in a flags value, …","","","features must be the same features used to create …","","","Returns the queue family index of the device’s internal …","","","Safety","","","","","The intersection of a source flags value with the …","","","","Call insert when value is true or remove when value is …","","","","","","","","","","","","","","","","The intersection of a source flags value with the …","The intersection of a source flags value with the …","","","The bitwise exclusive-or (^) of the bits in two flags …","","Safety","","","The bitwise exclusive-or (^) of the bits in two flags …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bitwise or (|) of the bits in two flags values.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The pending fence values have to be ascending.","","","","","A raw display handle for Android NDK.","Raw display handle for Android.","A raw window handle for Android NDK.","Raw window handle for Android NDK.","A raw window handle for AppKit.","A raw display handle for AppKit.","Raw display handle for AppKit.","Raw window handle for AppKit.","The handle to the display controller of the windowing …","A raw window handle for the Linux Kernel Mode Set/Direct …","A raw display handle for the Linux Kernel Mode Set/Direct …","Raw display handle for the Linux Kernel Mode Set/Direct …","Raw window handle for the Linux Kernel Mode Set/Direct …","A raw window handle for the Linux Generic Buffer Manager.","A raw display handle for the Linux Generic Buffer Manager.","Raw display handle for the Linux Generic Buffer Manager.","Raw window handle for the Linux Generic Buffer Manager.","A raw window handle for Haiku.","A raw display handle for Haiku.","Raw display handle for Haiku.","Raw window handle for Haiku.","An error that can occur while fetching a display or window …","A display that acts as a wrapper around a display handle.","Display that wraps around a raw display handle.","Window that wraps around a raw window handle.","A handle to a window.","The underlying handle cannot be represented using the …","A raw window handle for the Redox operating system.","A raw display handle for the Redox operating system.","Raw display handle for the Redox operating system.","Raw window handle for the Redox operating system.","A display server handle for a particular windowing system.","A window handle for a particular windowing system.","A raw window handle for UIKit (Apple’s non-macOS …","A raw display handle for UIKit (Apple’s non-macOS …","Raw display handle for UIKit.","Raw window handle for UIKit.","The underlying handle is not available.","A raw window handle for Wayland.","A raw display handle for Wayland.","Raw display handle for Wayland.","Raw window handle for Wayland.","A raw window handle for the Web.","A raw display handle for the Web.","A raw window handle for a Web canvas registered via …","Raw window handle for a Web canvas registered via …","Raw display handle for the Web.","A raw window handle for a Web offscreen canvas registered …","Raw window handle for a Web offscreen canvas registered via","Raw window handle for the Web.","A raw window handle for Win32.","Raw window handle for Win32.","A raw window handle for WinRT.","Raw window handle for WinRT.","The handle to a window.","A raw display handle for Win32.","Raw display handle for Windows.","A raw window handle for Xcb.","A raw display handle for Xcb.","Raw display handle for Xcb.","Raw window handle for Xcb.","A raw window handle for Xlib.","A raw display handle for Xlib.","Raw display handle for Xlib.","Raw window handle for Xlib.","A pointer to an ANativeWindow.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the underlying raw display handle.","Get the underlying raw window handle.","","","A pointer to a BDirectWindow object that might be null","A pointer to a BWindow object","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a DisplayHandle from a RawDisplayHandle.","Borrow a WindowHandle from a RawWindowHandle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A pointer to an X server xcb_connection_t.","A WinRT CoreWindow handle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A pointer to an Xlib Display.","A pointer to a wl_display.","Get a handle to the display controller of the windowing …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The drm file descriptor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The gbm device.","The gbm surface.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The GWLP_HINSTANCE associated with this type’s HWND.","A Win32 HWND handle.","An ID value inserted into the data attributes of the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new empty display handle.","Create a new handle to an ANativeWindow.","Create a new empty display handle.","Create a new handle to a view.","Create a new empty display handle.","Create a new handle to a window.","Create a new empty display handle.","Create a new handle to a window.","Create a new empty display handle.","Create a new handle to a view.","Create a new handle to a display.","Create a new handle to a window.","Create a new handle to a connection and screen.","Create a new handle to a window.","Create a new display handle.","Create a new handle to a surface.","Create a new handle to a file descriptor.","Create a new handle to a plane.","Create a new handle to a device.","Create a new handle to a surface.","Create a new empty display handle.","Create a new handle to a canvas element.","Create a new handle from a pointer to HtmlCanvasElement.","Create a new handle from a pointer to an OffscreenCanvas.","Create a new empty display handle.","Create a new handle to a window.","Create a new handle to a window.","A pointer to an NSView object.","A pointer to the JsValue of an HtmlCanvasElement.","A pointer to the JsValue of an OffscreenCanvas.","The primary drm plane handle.","","","","","An X11 screen to use with this display handle.","An X11 screen to use with this display handle.","A pointer to a wl_surface.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A pointer to an UIView object.","A pointer to an UIViewController object, if the view has …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An Xlib visual ID, or 0 if unknown.","An X11 xcb_visualid_t.","A pointer to an orbclient window.","An Xlib Window.","An X11 xcb_window_t.","Get a handle to the window.","","Describes a Buffer when allocating.","Utility methods not meant to be in the main API.","Argument buffer layout for dispatch_indirect commands.","CPU accessible buffer used to download data back from the …","Argument buffer layout for draw_indexed_indirect commands.","Argument buffer layout for draw_indirect commands.","The texture is laid out densely in memory as:","The texture is laid out densely in memory as:","Methods shared by RenderPass and RenderBundleEncoder.","Efficiently performs many buffer writes by sharing and …","Order in which TextureData is laid out in memory.","","","","","","","","Aligns a value to an alignment.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the bytes representation of the struct, ready to …","Returns the bytes representation of the struct, ready to …","Returns the bytes representation of the struct, ready to …","Get a set of backend bits from the environment variable …","The value added to the vertex index before indexing into …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Contents of a buffer on creation.","Creates a Buffer with data to initialize it.","Upload an entire texture and its mipmaps from a source …","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws primitives from the active vertex buffer(s).","Draws indexed primitives using the active index buffer and …","Draws indexed primitives using the active index buffer and …","Draws primitives from the active vertex buffer(s) based on …","","","","","","","","Choose which DX12 shader compiler to use from the …","","","","","","","","","Prepare currently mapped buffers for use in a submission.","The first index within the index buffer.","The instance ID of the first instance to draw.","The instance ID of the first instance to draw.","The Index of the first vertex to draw.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Choose which minor OpenGL ES version to use from the …","","","The number of indices to draw.","","","","","","","","Initialize the adapter obeying the WGPU_ADAPTER_NAME …","Initialize the adapter obeying the WGPU_ADAPTER_NAME …","The number of instances to draw.","The number of instances to draw.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Debug label of a buffer. This will show up in graphics …","Version of make_spirv intended for use with …","Create a new staging belt.","Generates a set of backends from a comma separated list of …","Get a power preference from the environment variable …","Asynchronously read the contents of a buffer.","Recall all of the closed buffers back to be reused.","Sets the active bind group for a given bind group index. …","Sets the active index buffer.","Sets the active render pipeline.","wgt::Features::PUSH_CONSTANTS must be enabled on the …","Assign a vertex buffer to a slot.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Usages of a buffer. If the buffer is used in any way that …","The number of vertices to draw.","Allocate the staging belt slice of size to be uploaded …","The number of work groups in X dimension.","The number of work groups in Y dimension.","The number of work groups in Z dimension.","The appearance of a slider.","A circular handle.","The appearance of the handle of a slider.","The shape of the handle of a slider.","The appearance of a slider rail","A rectangular shape.","An horizontal bar and a handle that selects a single value …","The local state of a Slider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","Produces the style of an active slider.","","","","","","","","","","","The border Color of the handle.","The border radius of the corners of the rail.","The border width of the handle.","","","","","","","","","The Color of the handle.","The colors of the rail of the slider.","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a Slider.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","The appearance of the Handle of the slider.","Produces the style of an hovered slider.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a Slider.","Creates a new State.","The colors of the rail of the slider.","The shape of the handle.","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a Slider …","The width of the stroke of a slider rail.","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle.","An amount of empty space.","The appearance of an SVG.","A handle of Svg data.","The supported style of the StyleSheet.","The stylesheet of a svg.","A vector graphics image.","","","Produces the Appearance of the svg.","","","","","","","","","","","","","","","","","The Color filter of an SVG.","","","Returns a reference to the SVG Data.","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Creates an SVG Handle from raw bytes containing either an …","Creates an SVG Handle pointing to the vector image of the …","","","","Produces the hovered Appearance of a svg content.","Returns the unique identifier of the Handle.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An absolute height in logical pixels.","Advanced text shaping and font fallback.","The apperance of some text.","No shaping and no font fallback.","The height of a line of text in a paragraph.","A factor of the size of the text.","The shaping strategy of some text.","The internal state of a Text widget.","The supported style of the StyleSheet.","The style sheet of some text.","A paragraph.","","","","","Produces the Appearance of some text.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Color of the text.","","","","","","","","","","","","","","","","","","","","","Draws text using the same logic as the Text widget.","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Produces the layout::Node of a Text widget.","Returns the LineHeight in absolute logical pixels.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An interaction with an Editor.","The appearance of a text input.","Delete the previous character.","Click the Editor at the given Point.","The content of a TextEditor.","Delete the next character.","Move to the end of the text.","Move to the start of the text.","Move down.","Drag the mouse on the Editor to the given Point.","An action that edits text.","Perform an Edit.","Move to the end of the line.","Break the current line.","Move to the start of the line.","Insert the given character.","Move left.","A cursor movement.","Apply a Motion.","Move to the start of the next window.","Move to the start of the previous window.","Paste the given text.","Move right.","Scroll the Editor a certain amount of lines.","Select text with a given Motion.","Select the line at the current cursor.","Select the word at the current cursor.","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","A multi-line text input.","Move up.","Move to the left boundary of a word.","Move to the right boundary of a word.","Produces the style of an active text input.","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the text editor.","The Border of the text editor.","","","","","","","","","","","","","","","","","","","","","","","","Returns the current cursor position of the Content.","","","","","","","","","","","","Returns the Direction of the Motion.","Produces the style of a disabled text input.","Produces the Color of the value of a disabled text input.","","","","","","","","","","","","","","","","","","","Produces the style of a focused text input.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Produces the style of an hovered text input.","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Action is an editing action.","Returns the text of the line at the given index, if it …","Returns the amount of lines of the Content.","Returns an iterator of the text of the lines in the Content…","Creates an empty Content.","Performs an Action on the Content.","Produces the Color of the placeholder of a text input.","Returns the selected text of the Content.","Produces the Color of the selection of a text input.","Returns the text of the Content.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Produces the Color of the value of a text input.","Widens the Motion, if possible.","Creates a Content with the given text.","The amount of lines to scroll.","The appearance of a text input.","The cursor of a text input.","The default Padding of a TextInput.","The content of the Icon.","The identifier of a TextInput.","The left side of a TextInput.","The right side of a TextInput.","The side of a TextInput.","The state of a TextInput.","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","A field that can be filled with text.","The value of a TextInput.","Produces the style of an active text input.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the text input.","The Border of the text input.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","Track the cursor of a text input.","Returns the Cursor of the TextInput.","","","","","","","","","","","","","","","","","Produces the style of a disabled text input.","Produces the Color of the value of a disabled text input.","","","","","","","","Draws the TextInput with the given Renderer, overriding its","","","","","","","","","","","","","","","","","","","","Produces a Command that focuses the TextInput with the …","","Focuses the TextInput.","Produces the style of a focused text input.","Creates a new State, representing a focused TextInput.","The font that will be used to display the code_point.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","Produces the style of an hovered text input.","The icon Color of the text input.","","","","","","","","Inserts a new char at the given grapheme index.","Inserts a bunch of graphemes at the given grapheme index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Value is empty or not.","","Returns whether the TextInput is currently focused or not.","Computes the layout of a TextInput.","Returns the total amount of graphemes in the Value.","Computes the current mouse::Interaction of the TextInput.","Produces a Command that moves the cursor of the TextInput …","Moves the Cursor of the TextInput to an arbitrary location.","","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to the end of the input …","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to the front of the …","Creates a new Value from a string slice.","Creates a custom Id.","Creates a new State, representing an unfocused TextInput.","Returns the position of the next end of a word from the …","Produces the Color of the placeholder of a text input.","Returns the position of the previous start of a word from …","Removes the grapheme at the given index.","Removes the graphemes from start to end.","Returns a new Value with all its graphemes replaced with …","Returns a new Value containing the graphemes from start …","Produces a Command that selects all the content of the …","","Selects all the content of the TextInput.","Returns the current selection of the Cursor for the given …","Produces the Color of the selection of a text input.","The side of a TextInput where to display the Icon.","The font size of the content.","The spacing between the Icon and the text in a TextInput.","Returns the State of the Cursor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Unfocuses the TextInput.","","Creates a unique Id.","Returns a new Value containing the graphemes until the …","","","","","","","","Processes an Event and updates the State of a TextInput …","Produces the Color of the value of a text input.","The cursor of a text input.","Cursor without a selection","Cursor selecting a range of text","The state of a Cursor.","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The end of the selection","The start of the selection","The style of an application.","A simple box.","The style of a button.","The style of a checkbox.","Colored text.","The style of a container.","A Theme with a customized Palette.","A Theme that uses a Custom palette.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","The danger style.","The danger style.","The built-in dark variant.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","No filtering to the rendered SVG.","The default style.","The default style.","The default style.","The default style.","The destructive style.","The built-in light variant.","The style of a menu.","A color palette.","The style of a pane grid.","The style of a pick list.","The positive style.","The primary style.","The primary style.","The primary style.","The style of a progress bar.","The style of a radio button.","The style of a rule.","The style of a scrollable.","The secondary style.","The secondary style.","The style of a slider.","The success style.","The success style.","Svg","The style of text.","The text style.","The style of a text input.","The style of a text input.","A built-in theme.","The style of a toggler.","No style.","The background Color of the Palette.","The danger Color of the Palette.","Define the colors of a theme.","The primary Color of the Palette.","The success Color of the Palette.","The text Color of the Palette.","A set of background colors.","A set of danger colors.","The built-in dark variant of an Extended palette.","The built-in light variant of an Extended palette.","An extended set of colors generated from a Palette.","A pair of background and text colors.","A color palette.","A set of primary colors.","A set of secondary colors.","A set of success colors.","The background Color of the Palette.","The set of background colors.","The base background color.","The base primary color.","The base secondary color.","The base success color.","The base danger color.","The background color.","The danger Color of the Palette.","The set of danger colors.","Whether the palette is dark or not.","The primary Color of the Palette.","The set of primary colors.","The set of secondary colors.","A stronger version of the base background color.","A stronger version of the base primary color.","A stronger version of the base secondary color.","A stronger version of the base success color.","A stronger version of the base danger color.","The success Color of the Palette.","The set of success colors.","The text Color of the Palette.","The text color.","A weaker version of the base background color.","A weaker version of the base primary color.","A weaker version of the base secondary color.","A weaker version of the base success color.","A weaker version of the base danger color.","The appearance of a toggler.","The supported style of the StyleSheet.","A set of rules that dictate the style of a toggler.","A toggler widget.","Returns the active Appearance of the toggler for the …","","","","","","The background Color of the toggler.","The Color of the background border of the toggler.","","","","","","","","","","","The foreground Color of the toggler.","The Color of the foreground border of the toggler.","Returns the argument unchanged.","","","Returns the hovered Appearance of the toggler for the …","","Calls U::from(self).","","","","","","","","","","","","","","","","","The tooltip will appear on the bottom of the widget.","The tooltip will follow the cursor.","The tooltip will appear on the left of the widget.","The position of the tooltip. Defaults to following the …","The tooltip will appear on the right of the widget.","An element to display a widget over another.","The tooltip will appear on the top of the widget.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","The appearance of a slider.","A circular handle.","The appearance of the handle of a slider.","The shape of the handle of a slider.","A rectangular shape.","The local state of a VerticalSlider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","An vertical bar and a handle that selects a single value …","Produces the style of an active slider.","","","","","","","","","","","","","","","","","","","","","The border Color of the handle.","The border width of the handle.","","","","","","","","","","","","","","","","","The Color of the handle.","","","","","","","","","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a VerticalSlider.","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","The appearance of the Handle of the slider.","Produces the style of an hovered slider.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a VerticalSlider…","Creates a new State.","The colors of the rail of the slider.","The shape of the handle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a …","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle.","An operation to be performed on some window.","The window will always be below normal windows.","The window will always be on top of normal windows.","Redraw at the given time.","The window is completely centered on the screen.","Change the window Icon.","Change the window Level.","Change the Mode of the window.","Close the window and exits the application.","The user has requested for the window to close.","A window was closed.","Platform-specific","The platform-specific default position for a new window.","Move the window with the left mouse button until the …","A window-related event.","Fetch the raw identifier unique to the window.","Fetch if the current window is maximized or not.","Fetch if the current window is minimized or not.","Fetch the current Mode of the window.","Fetch the current logical dimensions of the window.","A file has been dropped into the window.","A file is being hovered over the window.","A file was hovered, but has exited the window.","A window was focused.","The application takes the whole screen of its current …","Bring the window to the front and sets input focus. Has no …","The application is hidden","An window icon normally used for the titlebar or taskbar.","An window icon normally used for the titlebar or taskbar.","The id of the window.","Platform-specific","A window level groups windows with respect to their …","The reserved window Id for the first window in an Iced …","Set the window to maximized or back","Set the window to minimized or back","The mode of a window-based application.","Move the window to the given logical coordinates.","A window was moved.","Redraw the next frame.","The default behavior.","A window was opened.","The position of a window in a given screen.","A request to redraw a window.","A window redraw was requested.","Request user attention to the window, this has no effect …","Resize the window to the given logical dimensions.","A window was resized.","Data of a screenshot, captured with window::screenshot().","Screenshot the viewport of the window.","The window settings of an application.","Spawns a new window with some Settings.","The window is positioned with specific coordinates: (X, Y).","Toggle whether window has decorations.","Toggle the window to maximized or back","A window was unfocused.","The type of user attention to request.","The application appears in its own window.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The bytes of the Screenshot.","Changes the Icon of the window.","Changes the window Level.","Changes the Mode of the window.","","","","","","","","","","","","","","","","","","","","","Closes the window with id.","","","","","","","","","","","","","","","","Crops a Screenshot to the provided region. This will …","Whether the window should have a border, a title bar, etc. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Begins dragging the window while the left mouse button is …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether the window will close when the user requests it, …","Fetches an identifier unique to the window, provided by …","Fetches if the window is maximized.","Fetches if the window is minimized.","Fetches the current Mode of the window.","Fetches the window’s size in logical dimensions.","","","","","","","","","","","","Subscribes to the frames of the window of the running …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","Brings the window to the front and sets input focus. Has …","","Attach an icon to the window of your application.","The icon of the window.","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the raw data of the Icon.","","","","","","","","","","","","The window Level.","Maps the output of a window Action using the provided …","The maximum size of the window.","Maximizes the window.","The minimum size of the window.","Minimizes the window.","Moves the window to the given logical coordinates.","Creates a new Screenshot.","","","Platform specific settings.","The initial position of the window.","Request user attention to the window. This has no effect …","Whether the window should be resizable or not.","Resizes the window to the given logical dimensions.","Take screenshots of a window.","Captures a Screenshot from the window.","Configure your windows.","The size of the Screenshot.","The initial logical dimensions of the window.","Spawns a new window with the given settings.","","","","","","","","","","","Toggles the window decorations.","Toggles the window to maximized or back.","Whether the window should be transparent.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new unique window Id.","","","","","","","","","","","","Whether the window should be visible or not.","The new logical height of the window","The position of the opened window. This is relative to the …","The size of the created window. This is its “inner” …","The new logical width of the window","The new logical x location of the window","The new logical y location of the window","An error produced when creating an Icon.","An window icon normally used for the titlebar or taskbar.","The image crate reported an error.","The Icon is not valid.","The underlying OS failed to create the icon.","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Creates an icon from an image file.","Creates an icon from the content of an image file.","Builds an Icon from its RGBA pixels in the sRGB color …","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Errors that can occur when cropping a Screenshot.","The cropped region’s size is out of bounds.","Data of a screenshot, captured with window::screenshot().","The cropped region’s size is zero.","","","","","","","","The bytes of the Screenshot.","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","The size of the Screenshot.","","","","","","","","","","","The platform specific window settings of an application.","The window settings of an application.","","Sets the application id of the window.","","","","","","","","","","Whether the window should have a border, a title bar, etc. …","","","","","","","","","","Whether the window will close when the user requests it, …","","Returns the argument unchanged.","","","The icon of the window.","","Calls U::from(self).","","","","","","","","The window Level.","The maximum size of the window.","The minimum size of the window.","Platform specific settings.","The initial position of the window.","Whether the window should be resizable or not.","The initial logical dimensions of the window.","","Whether the window should be transparent.","","","","","","","","","Whether the window should be visible or not."],"i":[4,0,0,43,0,0,36,0,42,0,44,0,44,4,39,4,0,0,36,197,0,0,0,75,44,45,45,45,0,0,42,75,50,38,0,4,40,39,106,38,44,17,197,16,0,0,38,0,16,0,0,0,0,0,44,0,0,45,0,36,0,43,0,35,38,50,0,43,35,38,75,46,50,18,43,1,4,4,4,4,4,4,4,4,4,4,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,16,17,21,18,16,0,0,4,4,4,4,4,4,4,0,21,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,43,1,34,49,0,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,46,21,21,21,35,0,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,37,49,0,0,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,21,4,4,4,37,39,43,17,21,49,18,35,35,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,35,35,4,4,4,4,4,17,16,16,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,4,4,4,35,35,35,35,35,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,66,4,36,37,38,39,40,41,16,42,43,44,45,47,17,21,49,50,18,36,36,36,39,39,39,44,44,44,17,17,17,21,21,21,50,50,50,18,18,18,0,0,21,50,4,39,35,45,35,35,35,44,46,45,1,34,75,75,4,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,17,21,49,50,18,4,4,0,1,35,34,75,75,4,36,36,36,37,38,39,40,40,41,16,16,16,16,42,42,42,42,43,43,43,43,43,44,45,45,45,45,46,46,46,46,46,46,46,47,47,47,17,17,17,21,21,49,50,50,50,50,50,18,18,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,16,16,43,34,43,43,43,43,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,16,0,43,0,36,39,44,50,21,50,0,46,4,4,4,4,4,4,4,4,4,4,4,4,4,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,21,21,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,43,34,43,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,43,43,45,21,0,46,35,1,34,50,50,0,16,16,21,18,40,0,106,66,43,46,17,21,50,18,1,34,49,0,4,41,16,47,1,4,4,4,21,4,43,37,46,106,106,1,106,106,4,4,0,1,21,21,66,39,106,106,39,16,17,17,21,50,18,16,0,0,0,106,106,0,106,16,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,75,4,17,75,4,17,46,0,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,21,1,35,34,75,4,36,37,38,39,40,41,16,42,43,44,45,46,47,17,21,49,50,18,106,4,4,46,106,39,0,1,37,21,50,0,34,35,39,37,21,35,17,21,18,17,21,18,0,0,0,0,0,0,0,0,123,71,128,122,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,124,123,127,123,71,123,71,123,71,128,122,71,128,123,71,128,122,123,71,128,122,124,123,71,128,122,129,124,123,71,128,122,127,128,123,71,122,71,123,71,128,122,123,71,128,122,123,71,128,122,0,71,0,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,122,122,122,122,129,0,129,124,71,122,0,129,124,123,122,129,124,129,124,0,129,124,123,122,135,122,0,122,122,71,124,71,124,124,0,0,124,0,123,71,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,123,71,128,122,71,0,127,123,127,135,128,0,142,0,0,0,144,63,63,142,0,142,141,142,141,142,141,142,141,142,141,142,141,141,142,141,142,141,142,141,142,141,142,141,141,142,141,142,144,141,142,144,141,142,141,142,141,141,141,142,142,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,141,142,1253,1253,1253,0,0,133,0,133,132,132,132,133,132,133,132,133,132,133,132,0,133,132,133,132,132,132,133,132,133,132,133,132,0,132,132,133,132,133,132,133,132,133,132,133,0,133,132,133,132,133,132,133,132,133,133,132,133,132,133,132,133,132,133,132,133,132,133,132,133,132,133,132,133,133,133,133,133,133,133,132,132,133,132,0,0,0,133,133,132,0,133,132,132,133,132,133,132,133,132,133,132,133,132,133,132,133,132,133,132,133,132,0,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,0,146,146,146,146,146,146,146,146,131,214,0,215,215,0,134,0,215,215,215,0,214,134,134,134,0,214,216,214,134,214,216,134,134,134,214,0,134,131,215,134,148,148,148,148,148,148,148,0,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,1254,1255,1256,1257,1256,1257,0,149,0,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,0,0,0,137,150,137,150,137,150,137,150,137,150,137,150,137,150,137,150,150,137,150,137,150,137,150,129,137,150,137,150,137,137,150,137,150,0,137,150,137,150,137,150,137,150,137,150,137,150,137,150,137,150,137,150,137,150,129,129,137,150,137,137,150,129,137,150,137,150,129,137,150,129,137,150,150,129,137,150,137,137,150,137,150,137,150,137,150,137,150,137,150,137,150,137,150,150,0,0,0,0,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,70,151,70,130,151,70,130,70,127,151,151,70,130,151,70,130,151,70,130,151,70,130,151,151,151,70,130,151,70,130,151,70,130,151,70,130,70,130,151,151,127,151,151,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,151,70,130,127,151,127,151,0,89,0,89,89,153,0,0,153,0,153,153,153,153,153,153,153,153,153,153,153,153,154,153,154,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,168,171,185,185,163,168,162,0,0,168,164,156,168,160,0,0,168,160,0,163,0,168,171,0,160,163,0,0,162,163,162,163,162,163,162,163,162,163,162,163,162,163,156,71,160,162,163,162,163,164,162,163,71,160,156,162,156,168,168,162,163,162,163,162,163,162,163,0,162,163,163,163,163,168,168,168,162,163,71,162,163,162,163,162,163,164,156,160,0,164,164,71,162,163,162,163,162,163,162,163,162,163,162,163,162,163,162,163,162,163,156,156,71,168,164,164,164,160,156,164,156,71,71,162,163,162,163,162,163,162,163,162,163,162,163,162,163,162,163,162,163,156,160,164,164,71,164,156,0,1227,165,170,0,1227,0,1228,1228,1228,170,0,170,0,1228,1227,156,1228,1227,1228,172,0,170,1228,1228,1227,1228,172,170,170,170,170,165,1228,1228,1228,172,165,172,165,172,165,172,165,172,165,172,165,172,165,156,172,165,172,165,172,165,156,156,172,165,172,165,172,165,172,165,172,172,172,172,172,165,172,165,172,165,172,165,156,172,165,172,165,172,165,172,165,172,165,172,165,172,165,172,165,172,165,156,156,156,156,172,165,172,165,172,165,172,165,172,165,172,165,172,165,172,165,172,165,156,156,1258,0,160,0,160,0,160,173,169,173,169,173,169,173,169,173,169,173,169,173,169,160,173,173,169,173,169,169,173,169,160,173,169,173,169,173,169,173,169,173,169,169,173,169,169,173,169,173,169,173,169,160,173,173,169,173,169,173,169,173,169,173,169,173,169,173,169,173,169,173,169,160,173,173,169,173,169,173,169,173,169,173,169,173,169,173,169,173,169,173,169,160,173,0,0,0,0,0,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,124,125,174,176,174,176,174,125,176,119,119,174,125,176,174,125,176,124,125,125,125,174,125,176,124,174,174,125,176,125,176,176,176,176,119,125,176,119,174,174,174,125,176,176,176,176,174,125,176,174,125,176,176,174,174,174,125,176,174,125,176,174,125,176,174,125,176,174,176,174,125,176,174,125,176,174,125,176,174,125,176,124,174,174,124,174,125,176,124,124,0,124,119,174,124,174,174,124,174,124,125,174,174,124,125,0,119,174,176,0,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,174,125,176,176,174,125,176,174,174,179,0,179,0,0,0,179,0,179,179,179,179,179,179,179,179,119,119,179,179,179,179,119,179,180,0,119,179,179,179,179,179,179,179,179,179,179,179,180,0,186,186,186,0,184,0,119,186,184,0,119,179,179,179,179,179,179,179,180,179,0,0,189,189,189,189,189,189,189,189,189,189,0,189,189,189,189,189,189,189,189,189,0,189,0,180,0,0,189,189,189,189,189,189,189,189,189,189,189,189,189,180,189,189,189,189,189,189,189,189,189,180,189,0,0,0,0,184,0,184,187,188,187,188,0,0,186,0,186,0,186,0,186,171,185,0,185,0,171,0,0,175,0,0,175,29,0,0,139,139,0,0,0,139,140,139,140,139,140,139,140,139,140,139,140,139,140,125,140,140,140,140,139,140,139,140,139,140,0,139,140,139,139,139,140,140,140,140,140,139,140,139,140,139,140,139,140,140,139,140,139,140,139,140,139,140,140,139,140,139,140,139,140,139,140,139,140,140,125,140,125,140,139,140,139,140,139,140,139,140,139,140,139,140,139,140,139,140,0,80,36,81,80,36,0,81,81,36,80,0,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,81,81,80,80,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,81,80,0,0,196,196,196,192,0,196,25,192,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,196,196,196,196,196,25,196,196,25,25,25,25,25,25,25,25,25,196,196,0,0,121,121,121,121,121,121,121,121,121,37,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,37,121,121,121,121,121,121,121,121,121,37,0,0,0,0,136,0,136,38,0,199,38,0,38,200,0,38,38,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,199,199,200,200,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,0,0,0,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,199,200,0,0,66,66,66,203,203,204,202,0,204,203,204,204,203,0,202,0,205,203,203,202,202,203,204,205,205,202,204,204,203,202,0,0,203,204,204,0,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,201,201,202,202,202,203,203,203,204,204,204,205,205,205,39,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,0,39,39,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,201,202,203,204,205,39,0,0,0,40,206,82,82,82,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,206,82,206,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,206,82,207,207,207,208,0,0,209,209,207,210,0,0,209,208,210,210,207,210,208,208,209,210,207,207,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,207,207,207,207,207,207,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,207,207,208,207,207,208,209,210,207,207,207,207,208,209,210,207,208,209,210,207,207,208,209,210,207,208,209,210,207,207,208,209,210,207,208,208,208,209,209,209,210,210,210,207,207,207,207,208,209,210,207,207,207,207,207,208,209,210,207,208,209,210,207,207,207,207,207,208,209,210,207,208,207,208,209,210,207,207,207,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,207,207,0,207,207,0,0,208,207,207,207,207,207,207,207,208,209,210,207,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,208,209,210,207,207,208,209,210,207,1259,1260,1259,1260,1259,1260,1259,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,208,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,0,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,0,208,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,208,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,131,214,0,215,215,134,0,215,215,215,0,214,134,134,134,0,214,216,214,134,214,216,134,134,134,214,0,134,131,215,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,134,134,214,131,215,216,134,131,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,214,214,134,134,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,131,134,131,131,131,131,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,214,131,215,216,134,1254,1255,1256,1257,1256,1257,0,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,217,0,0,0,0,0,219,0,219,27,27,27,27,27,0,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,0,0,0,0,0,0,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,0,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,0,232,0,0,225,0,0,4,113,226,231,232,233,223,224,234,235,236,237,238,230,228,239,240,52,231,237,4,113,233,223,224,234,235,236,238,230,228,225,239,240,226,52,4,0,0,0,0,226,226,231,237,0,0,0,0,226,231,0,231,237,0,0,226,0,0,0,0,232,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,223,224,225,52,222,223,224,225,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,226,228,230,52,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,52,222,222,52,222,113,113,226,231,232,232,232,233,223,223,224,234,235,236,237,237,238,238,230,228,225,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,225,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,222,0,52,52,52,52,222,223,224,225,222,222,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,52,222,113,226,231,232,233,223,224,234,235,236,237,238,230,228,225,239,240,222,0,0,0,0,0,0,0,0,0,0,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,52,53,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,241,53,241,242,243,244,245,246,52,53,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,52,53,53,242,243,244,245,246,52,53,52,241,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,53,241,242,243,244,245,246,242,243,244,245,246,0,0,247,247,247,247,247,247,247,248,247,248,248,247,247,248,248,247,247,248,247,248,247,248,247,248,247,247,247,247,247,247,247,248,247,248,247,248,247,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,247,248,247,248,247,247,247,247,247,247,247,247,247,248,247,248,247,248,248,248,248,247,247,248,248,248,247,247,247,0,248,247,248,248,248,247,247,248,247,247,247,247,247,247,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,248,247,247,247,247,247,247,247,248,248,248,247,247,247,248,247,247,247,248,248,248,248,247,247,248,248,247,247,247,247,247,247,247,248,247,248,247,248,247,247,247,247,248,247,248,247,248,247,248,247,248,247,248,247,0,0,258,258,258,258,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,259,259,259,258,259,258,259,258,259,258,259,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,258,259,1261,1262,1263,1264,1261,1262,1263,1264,0,0,0,0,0,0,0,4,294,285,291,296,304,296,288,4,281,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,35,0,0,0,35,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,261,262,262,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,0,0,0,0,268,262,262,0,0,260,271,261,272,264,273,262,275,277,278,279,268,0,0,0,0,0,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,0,0,282,284,260,261,285,288,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,262,275,277,289,278,279,277,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,284,310,284,265,268,0,0,269,273,291,296,301,289,304,278,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,282,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,278,291,260,261,264,262,275,294,277,285,288,307,282,284,265,301,298,0,0,269,273,289,262,277,289,0,0,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,294,296,298,307,282,310,284,265,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,0,0,0,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,289,304,278,288,306,279,307,282,310,284,265,268,0,273,289,262,260,262,0,260,271,261,272,264,269,273,262,275,291,296,277,285,301,289,304,278,288,306,279,307,265,260,271,261,272,264,269,273,262,275,291,294,296,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,301,275,273,275,260,271,261,272,264,269,273,262,275,291,296,277,285,301,289,304,278,288,306,279,307,265,273,289,271,271,273,289,271,264,264,271,285,288,275,271,271,277,289,260,271,261,272,264,262,275,277,289,281,306,279,0,260,271,261,272,264,273,262,275,291,277,278,306,279,260,261,264,273,262,291,301,289,278,0,289,0,0,291,0,0,260,261,0,0,0,0,0,0,0,0,0,0,0,285,288,260,271,261,272,264,269,269,273,273,262,275,291,294,296,296,298,277,285,301,289,289,304,304,278,278,288,306,279,307,282,310,284,265,268,279,0,0,278,0,260,261,269,275,296,304,271,272,264,269,273,262,275,291,296,277,285,301,289,304,278,288,306,279,307,265,285,288,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,282,0,0,271,272,264,269,273,262,275,291,296,277,285,301,289,304,278,288,306,279,307,265,0,0,304,0,0,0,0,273,269,291,296,304,269,291,296,304,278,269,291,296,304,0,0,0,0,0,0,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,260,271,261,272,264,269,273,262,275,291,294,296,298,277,285,301,289,304,278,288,306,279,307,282,310,284,265,268,281,298,0,0,0,0,281,260,261,264,269,273,262,275,291,294,296,277,285,289,304,288,307,282,284,265,260,261,310,310,0,0,0,227,0,227,13,329,13,329,13,329,13,329,13,329,13,13,13,329,13,329,13,329,13,329,13,329,13,329,13,329,13,329,227,13,329,0,13,329,329,329,329,329,13,329,13,329,13,329,13,329,227,13,329,13,329,13,329,13,329,13,329,13,329,13,329,13,329,13,329,0,0,329,227,13,13,13,13,329,13,329,13,329,13,329,13,329,13,329,13,329,13,329,13,329,0,337,336,0,0,0,0,0,0,266,0,339,341,0,0,0,333,337,341,0,0,0,336,337,339,336,267,0,0,0,330,343,341,330,343,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,331,332,333,334,331,335,336,337,338,339,340,341,333,334,331,335,336,337,338,339,340,341,340,330,343,332,333,334,331,335,336,337,338,339,340,341,340,332,334,335,336,337,338,340,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,266,267,332,340,330,343,332,333,334,331,335,336,337,338,339,340,341,333,339,341,0,0,330,330,330,332,333,334,331,335,336,337,338,339,340,341,340,330,343,332,333,333,334,334,334,334,331,335,336,337,338,339,339,339,340,340,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,0,330,340,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,330,343,332,333,334,331,335,336,337,338,339,340,341,331,335,335,340,335,267,330,332,331,338,333,0,340,331,331,330,334,330,330,338,340,330,340,0,330,334,335,333,334,331,335,336,337,338,339,340,341,331,330,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,330,343,332,333,334,331,335,336,337,338,339,340,341,267,340,330,335,330,335,335,335,330,335,136,0,136,341,341,0,341,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,350,0,339,350,0,339,0,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,350,334,334,350,350,350,350,350,350,350,350,350,0,0,333,0,344,346,344,344,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,346,344,0,344,344,344,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,344,346,0,0,0,345,351,0,345,345,345,351,345,351,345,351,345,351,345,345,351,345,351,345,351,345,351,351,345,345,351,345,345,351,345,351,345,351,345,351,345,351,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,345,345,345,351,345,351,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,345,351,0,0,352,352,352,352,352,352,352,351,352,352,352,352,352,352,352,352,351,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,351,352,351,352,352,352,352,352,352,352,352,352,352,0,0,0,0,0,1265,1266,365,369,368,0,1265,1266,365,1265,1266,365,0,371,0,0,0,373,358,374,0,0,1265,1266,365,0,0,369,369,0,370,372,371,0,0,0,0,0,0,0,0,0,0,370,372,1265,1266,365,368,369,0,368,0,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,353,347,356,347,355,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,0,353,347,356,347,356,364,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,366,367,0,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,347,356,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,365,368,369,370,371,372,373,358,374,365,365,365,372,372,372,373,373,373,358,358,358,374,374,374,353,354,366,367,353,347,355,364,353,354,365,347,355,356,357,368,369,370,371,372,373,358,374,364,378,353,354,354,365,365,347,355,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,347,356,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,373,358,377,378,347,355,356,357,379,347,355,366,379,347,355,366,365,372,373,358,374,347,355,366,347,347,355,355,366,356,357,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,353,347,355,355,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,365,355,356,357,371,370,371,370,353,354,347,355,356,357,366,367,347,355,0,364,347,355,356,357,0,378,347,356,353,354,353,354,377,378,347,355,373,358,370,0,0,366,353,366,367,0,380,356,347,355,347,364,365,370,364,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,373,358,374,0,365,347,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,364,378,353,354,365,347,355,356,357,366,367,368,369,370,371,372,373,358,374,347,356,365,1267,1268,1269,1270,1270,1268,1271,1269,1270,1268,1271,1269,1270,1267,1268,1269,1270,1270,1268,1271,1269,1270,1268,1271,1269,1270,1267,1268,1269,1270,1270,1268,1271,1269,1270,1268,1271,1269,1270,0,0,0,0,0,406,0,0,0,403,404,394,402,361,396,361,396,361,396,361,396,361,396,400,361,396,361,396,361,394,400,394,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,396,403,404,361,361,403,404,394,402,361,403,404,394,402,361,402,402,406,403,403,404,394,394,361,361,402,361,402,361,400,396,394,394,361,403,404,394,402,361,396,400,403,404,394,394,361,361,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,396,403,404,361,361,402,361,396,361,396,394,361,402,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,361,400,394,403,404,394,402,361,361,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,361,403,404,394,402,361,396,400,403,404,394,394,361,361,400,394,394,403,404,394,402,361,396,403,404,361,402,396,361,396,400,403,404,394,394,361,361,400,394,400,394,400,394,400,394,400,394,400,394,400,394,396,400,403,404,394,394,361,361,403,404,394,400,394,400,394,400,394,400,394,402,361,402,402,402,402,396,394,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,403,404,394,402,361,400,394,361,396,361,361,0,0,0,0,0,0,0,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,359,391,359,375,383,407,391,359,375,383,407,359,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,359,359,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,359,391,391,359,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,391,391,391,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,375,383,407,391,359,375,383,407,391,359,359,375,383,407,375,359,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,391,359,375,383,407,359,0,0,0,0,0,409,409,409,409,409,409,0,0,0,409,409,409,409,0,0,0,409,409,0,413,0,0,0,0,409,409,409,0,0,0,0,409,408,410,410,410,414,422,415,399,423,408,416,410,398,398,398,398,413,414,414,415,415,399,399,416,416,1272,398,398,398,413,414,414,415,415,399,416,0,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,408,410,410,415,416,410,413,414,414,415,415,399,399,416,416,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,415,399,416,410,414,415,416,410,414,415,416,410,416,408,410,410,398,410,414,414,399,399,399,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,399,416,414,422,415,399,423,408,416,410,398,410,399,416,415,415,0,415,415,398,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,413,414,415,415,399,416,416,399,423,408,416,398,398,398,414,422,415,399,423,408,416,410,398,415,416,415,414,422,415,399,423,408,416,410,398,413,415,415,399,416,416,413,415,415,399,416,416,414,409,414,422,415,399,408,416,410,398,423,408,408,408,398,398,398,414,415,416,414,415,416,414,415,416,415,416,422,414,415,416,416,416,413,414,414,415,415,399,399,416,416,414,422,415,399,423,408,416,410,398,414,422,414,422,415,416,413,414,414,422,415,415,399,416,416,415,414,415,414,415,415,416,415,416,414,422,415,414,422,415,415,416,415,416,415,416,415,416,398,398,398,413,414,414,414,414,422,415,415,415,399,399,399,423,408,416,416,416,410,398,422,415,399,416,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,398,414,398,1273,399,399,414,422,415,399,423,408,416,410,398,399,423,399,399,410,423,399,410,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,408,416,398,408,415,416,415,416,415,422,408,415,416,415,416,364,399,416,398,399,399,415,416,415,416,415,416,415,416,416,416,1274,1274,1274,1274,1274,1274,1275,399,1275,398,398,398,408,408,415,408,399,399,408,398,398,0,423,398,408,0,415,415,398,398,414,422,413,414,414,415,415,399,399,416,416,414,399,398,423,408,398,0,415,399,415,399,399,408,399,408,413,414,414,415,415,399,399,416,416,399,413,414,414,415,415,399,399,416,416,399,423,416,399,414,398,398,398,398,364,414,408,413,414,414,415,415,399,399,416,416,422,415,399,416,422,416,398,415,399,423,416,398,415,399,423,416,398,399,414,422,415,399,423,408,416,410,398,415,415,414,399,0,410,415,399,416,399,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,414,422,415,399,423,408,416,410,398,0,409,0,423,399,399,1273,413,414,414,415,415,399,399,416,416,1276,1277,1278,415,416,415,416,414,422,413,414,414,415,415,399,399,416,416,1276,1277,1278,415,416,415,416,398,0,0,0,0,428,428,428,428,428,428,428,414,428,428,428,428,428,422,428,422,428,428,428,428,428,428,428,428,428,428,428,428,364,428,414,422,414,364,414,422,428,428,428,428,428,428,428,428,414,422,0,0,0,0,0,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,424,424,438,424,424,438,424,438,424,424,439,441,438,438,440,424,424,439,441,438,438,440,424,438,424,438,424,439,438,440,424,438,424,439,438,440,424,438,440,424,438,440,424,439,441,438,440,424,438,424,424,439,441,438,438,440,424,424,439,441,438,438,440,424,439,441,438,440,424,424,424,439,439,441,441,438,440,440,424,424,438,438,440,424,424,424,438,438,438,440,440,440,424,424,424,439,438,438,440,440,424,424,439,441,438,438,440,424,439,441,438,440,438,424,424,439,441,438,440,438,424,438,438,424,438,438,424,438,424,439,441,438,440,424,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,424,424,424,424,439,441,424,439,441,438,440,424,438,424,438,424,438,438,424,438,438,438,424,438,438,424,438,440,424,438,439,441,439,441,424,438,438,440,424,438,424,424,438,438,424,424,438,424,438,424,424,438,440,439,441,438,424,424,424,424,439,438,440,438,440,438,440,424,438,424,439,441,438,440,424,424,424,439,441,438,438,438,440,424,424,439,441,438,440,424,439,441,438,440,424,438,438,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,439,441,438,440,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,424,438,438,438,0,0,429,429,429,429,429,429,429,429,429,415,415,429,429,429,429,429,415,429,429,429,429,429,429,429,429,429,429,429,429,429,429,415,429,429,429,429,429,429,429,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,450,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,452,452,376,376,453,453,454,455,436,436,450,450,456,457,397,397,451,451,452,376,376,453,453,455,436,450,456,457,397,451,376,453,458,459,458,459,464,397,397,451,458,459,452,376,453,461,349,460,397,451,349,460,452,376,453,461,349,349,460,460,397,451,0,0,401,462,436,461,461,461,461,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,455,0,0,0,401,463,452,376,453,462,454,436,450,349,460,397,451,401,463,452,376,453,462,464,461,436,450,397,451,465,376,376,453,453,436,436,450,450,397,397,451,451,401,463,462,376,453,454,436,450,397,451,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,452,454,348,452,454,348,397,451,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,462,436,450,401,463,462,425,397,451,465,0,401,463,452,376,453,462,454,455,436,450,349,460,456,457,397,451,348,425,463,450,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,349,460,376,453,401,401,463,463,452,452,452,376,376,453,453,462,462,455,455,436,436,450,450,397,397,451,451,401,401,463,463,452,376,376,453,453,462,462,455,455,436,436,450,450,397,397,451,451,376,453,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,436,450,397,451,401,401,401,463,463,463,468,468,468,452,452,452,376,376,376,453,453,453,462,462,462,464,464,464,461,461,461,454,454,454,455,455,455,436,436,436,450,450,450,349,349,349,460,460,460,456,456,456,457,457,457,397,397,397,451,451,451,465,465,465,458,458,458,459,459,459,348,348,348,461,376,397,425,376,376,453,453,436,436,450,450,397,397,451,451,401,463,468,452,376,453,462,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,401,463,463,468,468,468,468,468,452,376,376,376,453,453,453,462,462,464,461,454,455,436,436,436,436,450,450,450,450,349,460,456,456,457,457,397,397,397,397,451,451,451,465,465,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,397,349,460,349,460,455,376,453,455,436,450,397,451,401,401,463,462,465,460,401,463,462,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,465,401,463,376,453,462,464,461,436,450,349,460,456,457,397,451,465,455,455,452,454,464,436,450,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,462,436,450,455,461,464,461,454,349,460,456,457,465,401,463,462,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,462,401,463,462,401,463,401,463,462,401,463,468,452,376,376,376,453,453,453,462,464,461,454,455,436,436,436,450,450,450,349,460,456,456,456,457,457,457,397,397,397,451,451,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,464,461,454,349,460,456,457,465,460,460,401,463,462,436,450,401,463,376,453,462,436,450,397,451,454,456,457,349,460,401,463,461,436,450,455,461,461,455,397,451,401,463,452,376,453,462,461,436,450,397,451,436,450,397,451,349,460,349,460,460,460,349,460,349,460,460,460,349,460,349,460,460,460,460,460,460,460,452,376,453,462,454,436,450,397,451,401,463,462,462,452,376,453,462,454,436,450,397,451,401,463,462,462,401,401,463,463,452,452,376,376,453,453,462,462,454,455,455,436,436,450,450,397,397,451,451,401,401,463,463,452,376,376,453,453,462,462,455,455,436,436,450,450,397,397,451,451,460,452,376,453,455,436,450,397,451,401,463,468,452,376,453,462,464,454,455,436,450,349,460,456,457,397,451,465,460,455,465,458,459,461,461,397,451,458,459,436,450,397,451,0,454,397,451,458,459,376,453,462,460,401,462,349,460,460,349,460,452,454,348,460,0,0,376,349,460,349,460,349,460,397,451,460,461,461,464,398,425,0,397,451,376,453,455,397,451,349,460,465,401,463,376,376,453,453,462,436,436,450,450,397,397,451,451,401,463,462,401,463,462,452,452,401,463,462,349,460,458,459,458,459,458,459,401,425,401,463,462,0,0,460,461,376,453,436,450,456,457,397,451,397,451,461,452,376,376,376,453,453,453,454,455,436,450,456,457,397,451,452,376,376,453,453,455,436,450,456,457,397,451,452,452,436,436,450,450,397,397,451,451,425,464,461,349,460,465,349,460,349,460,349,460,453,460,451,376,464,349,397,376,453,436,450,349,460,456,457,397,451,453,451,349,460,349,460,460,462,401,463,376,453,462,436,450,397,451,401,463,376,453,462,436,450,397,451,401,463,376,453,462,436,450,397,451,401,463,376,453,462,436,450,397,451,401,463,462,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,397,451,468,468,401,397,464,461,456,457,397,451,465,376,453,436,450,456,457,397,451,453,451,401,463,376,453,462,436,450,397,451,462,436,401,463,376,453,462,464,461,436,450,349,460,456,457,397,451,465,401,463,376,453,462,436,450,397,451,376,453,436,450,456,457,455,456,454,457,454,457,464,464,454,454,349,349,456,456,461,460,457,460,461,454,460,457,460,454,456,457,454,456,457,464,464,454,454,349,349,456,461,460,461,460,401,463,462,349,460,465,401,463,452,376,453,462,454,436,450,349,460,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,397,451,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,401,463,462,461,401,463,468,452,376,453,462,464,461,454,455,436,450,349,460,456,457,397,451,465,458,459,348,0,0,461,455,463,450,468,401,463,462,436,450,349,460,397,397,451,397,451,349,460,468,376,453,456,457,397,451,458,459,401,463,462,453,451,459,463,453,451,459,463,468,376,453,456,457,397,451,458,459,401,463,462,376,397,453,451,459,463,468,453,457,451,459,463,401,463,452,376,376,453,453,462,455,436,436,450,450,397,397,451,451,0,420,420,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1279,1280,1281,1273,1281,1282,1282,1282,1280,1283,1284,1283,1284,1284,1284,1283,1284,1283,1284,1284,1284,1283,1284,1283,1284,1284,1284,1284,1284,1284,1284,1275,1285,1275,1285,1286,1282,1280,1287,1286,1280,1287,1288,1273,1281,1277,1289,1278,1290,1288,1291,1292,1277,1289,1278,1290,1288,1291,1292,1289,1290,1288,1292,0,0,0,0,0,466,471,467,472,469,0,0,0,0,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,416,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,416,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,430,431,474,430,431,474,430,431,430,431,416,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,474,430,431,413,0,0,413,413,413,413,413,413,413,413,413,413,413,413,413,395,395,413,413,0,0,0,0,0,0,0,0,0,0,0,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,476,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,477,478,475,393,477,478,475,475,477,476,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,477,478,475,393,0,0,0,0,0,0,0,0,0,1293,1294,1295,1295,1295,1295,1295,1295,1296,1296,0,1297,0,0,1294,1298,1299,1300,1298,1299,1300,0,0,0,0,0,0,0,0,0,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,360,363,363,392,360,363,384,389,381,392,360,363,384,389,381,360,363,363,360,363,384,389,381,360,363,384,389,381,392,360,363,384,389,381,360,363,363,360,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,360,363,363,360,363,381,389,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,384,389,381,392,392,360,363,384,389,381,360,363,363,360,363,392,384,389,381,360,363,363,389,360,363,363,360,363,363,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,392,360,363,384,389,381,360,360,0,0,0,0,0,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,362,479,479,362,479,386,362,479,386,362,362,479,479,386,386,362,479,386,362,362,479,479,362,479,386,362,479,386,362,479,386,362,479,386,362,362,479,479,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,386,362,479,386,362,362,479,479,479,386,386,362,479,362,362,479,479,362,362,479,479,386,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,479,386,362,0,0,0,0,0,0,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,366,367,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,382,388,387,390,382,382,366,367,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,388,387,390,382,0,0,0,406,0,396,396,396,396,396,400,396,396,400,396,406,400,396,396,400,396,396,396,476,400,396,400,400,396,396,396,400,400,400,400,400,400,400,400,396,400,400,400,400,400,396,476,400,396,337,336,339,0,0,0,337,336,337,339,336,0,0,335,335,335,338,338,335,335,0,0,0,270,0,270,14,313,14,313,14,313,14,313,14,313,14,14,14,313,14,313,14,313,14,313,313,14,313,14,313,14,313,14,313,14,313,313,14,313,313,14,313,14,313,14,313,270,14,14,313,14,313,14,313,14,313,14,313,14,313,14,313,14,313,14,313,313,313,313,14,14,313,14,313,14,313,14,313,14,313,14,313,14,313,14,313,14,313,0,0,280,280,280,280,280,280,280,0,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,0,280,280,280,280,280,280,280,280,280,280,0,0,0,263,0,23,182,263,23,182,23,182,23,182,23,182,23,23,23,182,23,182,23,182,23,182,23,182,23,23,182,23,182,23,182,0,23,182,182,182,182,182,23,182,23,182,23,182,23,182,182,23,182,23,182,23,182,23,182,23,182,23,182,23,182,23,182,23,182,0,182,23,23,23,182,23,182,23,182,23,182,23,182,23,182,23,182,23,182,182,23,182,0,23,23,0,0,0,63,63,0,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,57,63,57,63,57,63,481,57,63,57,63,481,57,63,481,57,63,481,0,481,57,63,481,57,63,57,57,57,63,63,63,57,63,57,57,63,481,57,63,481,57,57,57,57,63,481,57,63,481,57,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,0,481,481,481,481,481,481,481,481,481,481,481,57,63,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,57,63,481,0,0,481,0,0,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,0,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,0,315,315,315,315,315,315,315,315,315,0,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,315,0,0,0,0,0,219,0,27,484,483,219,27,484,483,27,484,483,27,484,483,27,484,483,27,27,27,484,483,27,484,483,27,27,27,484,483,483,27,484,483,27,484,483,27,484,483,27,484,483,27,483,484,27,484,483,27,484,483,27,484,483,27,484,483,27,484,483,27,484,483,27,484,483,27,27,484,483,27,484,483,27,484,483,27,484,483,484,483,484,484,27,27,484,27,484,484,484,27,27,484,483,27,484,483,27,484,483,27,484,483,27,484,483,27,484,483,27,484,483,27,484,483,484,496,0,0,494,324,493,0,0,0,0,485,0,0,324,0,492,493,488,485,494,0,496,0,0,489,490,492,0,324,0,0,485,494,0,489,490,0,276,0,0,0,494,485,488,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,316,486,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,93,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,487,318,93,94,488,489,485,490,317,491,316,324,492,493,494,325,93,94,488,489,485,490,317,491,316,324,492,493,494,325,316,317,491,94,317,491,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,486,493,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,0,318,486,93,94,318,486,488,489,485,490,317,491,316,316,324,492,493,494,325,496,94,488,485,317,491,488,488,488,485,485,485,317,317,317,491,491,491,93,94,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,316,316,488,490,317,491,276,276,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,316,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,316,486,316,496,316,0,316,496,316,316,316,0,316,318,486,316,486,490,316,317,491,276,325,316,316,488,316,325,488,490,316,490,0,318,486,316,318,93,94,488,489,485,490,317,491,316,324,492,493,494,325,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,93,94,318,486,488,489,485,490,317,491,316,324,492,493,494,325,496,0,94,316,1301,1301,1301,1301,1302,1303,1304,1303,1305,1305,1305,1305,1305,0,495,495,495,0,495,0,498,495,498,495,498,495,498,495,498,495,498,495,498,495,495,498,495,498,495,498,495,498,495,498,495,498,495,498,495,495,498,495,498,495,498,495,498,498,495,498,495,316,498,495,498,495,498,495,498,495,498,495,498,495,498,495,498,495,498,316,495,495,498,495,498,495,498,495,498,495,498,495,498,495,498,495,498,495,498,495,1306,1307,1308,1307,1308,1306,0,312,312,0,0,312,0,0,312,293,0,293,10,501,312,500,10,501,312,500,10,501,312,500,10,501,312,500,10,501,312,500,10,10,10,501,312,500,10,501,312,500,10,312,500,10,312,500,500,10,501,312,500,501,312,10,501,312,500,10,501,312,500,10,501,312,500,0,10,501,312,500,312,500,10,501,312,500,500,10,501,312,500,10,501,312,500,10,501,312,500,10,293,10,501,312,500,10,501,312,500,10,501,312,500,10,501,312,500,10,312,500,10,501,312,500,10,501,312,500,10,501,312,500,10,501,312,500,0,500,0,0,10,500,500,10,10,312,500,10,501,312,500,10,501,312,500,10,501,312,500,10,501,312,500,10,501,312,500,10,501,312,500,10,501,312,500,10,501,312,500,0,1309,1309,1310,0,0,295,0,28,295,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,504,0,0,503,504,504,504,503,503,502,502,0,503,0,504,0,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,502,503,504,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,502,503,504,502,502,502,503,503,503,504,504,504,323,502,503,504,504,323,502,503,504,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,504,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,502,503,504,323,323,0,0,297,0,297,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,297,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,506,0,506,506,506,0,299,0,26,506,299,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,26,506,26,506,26,506,26,506,26,506,506,26,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,506,26,0,0,290,0,188,508,290,0,0,0,188,0,0,0,508,0,229,0,290,0,326,326,229,229,11,509,187,188,290,507,508,181,510,326,507,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,11,509,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,509,11,509,187,188,290,507,508,181,510,326,326,187,188,290,507,508,510,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,229,229,0,11,509,187,188,290,507,508,181,510,326,187,188,290,507,508,181,508,508,508,181,181,181,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,181,290,229,229,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,0,507,0,507,181,510,326,510,0,510,510,510,510,11,507,510,0,510,510,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,11,509,187,188,290,507,508,181,510,326,181,510,11,509,187,188,290,507,508,181,510,326,0,290,507,187,188,187,188,1311,1311,0,511,511,0,308,0,511,0,308,0,511,512,511,512,511,512,511,512,511,512,511,512,511,512,511,511,511,512,511,512,512,511,512,511,512,511,308,512,511,511,512,511,512,511,512,511,512,511,512,512,512,512,511,512,511,512,511,512,511,511,512,511,512,511,512,511,512,511,308,65,65,512,511,512,511,512,511,512,511,512,511,512,511,512,511,512,511,512,511,308,520,520,525,521,525,560,522,629,0,0,558,0,540,603,514,0,0,612,611,611,637,574,574,574,574,574,574,574,574,574,574,574,574,574,574,522,520,614,524,525,614,519,522,520,564,0,0,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,0,0,0,0,0,0,0,0,0,0,0,0,548,0,530,629,0,530,0,0,0,0,0,0,0,0,0,520,528,528,525,522,523,522,528,520,0,0,526,527,526,527,522,563,619,619,576,0,0,0,0,0,0,0,0,628,0,0,0,0,0,0,556,553,0,555,555,563,555,615,555,615,555,555,615,521,520,522,520,522,521,520,519,599,599,626,514,514,514,514,514,0,540,0,638,0,0,0,0,577,553,632,0,0,556,556,548,0,636,0,514,514,514,514,548,603,0,0,514,514,514,514,514,514,0,524,520,523,528,522,522,522,0,0,611,611,566,0,628,626,610,610,610,610,610,610,610,610,610,610,0,564,0,636,519,525,614,548,0,669,603,603,575,549,601,522,526,526,522,520,613,0,0,0,0,0,0,0,0,0,611,599,599,0,612,0,606,0,0,553,599,599,0,603,603,0,566,562,562,620,576,0,602,669,549,520,0,526,526,519,522,524,524,524,524,524,520,520,520,611,0,0,0,0,558,548,558,619,0,522,523,522,514,620,603,628,549,1312,603,559,635,678,556,556,556,556,556,556,556,556,612,634,634,0,0,0,553,565,602,668,602,669,520,520,520,520,560,519,520,0,0,0,635,0,540,540,540,566,562,1313,590,0,612,0,612,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,514,514,514,514,514,514,514,514,514,514,514,514,520,520,522,525,614,527,559,560,520,659,609,627,627,0,0,0,0,0,0,0,0,0,0,0,0,619,599,0,0,0,558,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,520,519,520,520,520,520,520,520,520,526,527,524,520,522,0,530,629,530,0,0,0,0,0,0,0,0,0,0,626,610,610,610,610,610,610,610,610,552,552,552,610,610,610,610,1312,556,556,556,556,556,632,514,0,540,0,0,625,629,0,577,0,0,678,669,558,0,0,0,0,0,0,0,0,520,527,520,520,520,520,520,520,520,520,520,614,0,629,0,0,0,0,0,0,0,0,0,530,530,0,0,602,669,635,634,562,562,526,520,522,522,626,597,610,610,597,610,610,610,610,610,610,0,625,638,575,610,610,610,610,575,521,523,526,522,520,523,528,522,0,520,522,519,565,668,637,637,637,606,0,0,0,0,0,553,548,522,614,1313,590,1313,590,0,0,0,571,658,0,609,627,616,617,556,599,634,614,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,514,584,584,584,519,520,521,522,523,524,525,526,527,528,520,520,573,560,1314,662,569,584,533,582,547,587,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,529,529,532,533,534,515,535,535,537,538,539,1315,1316,582,536,633,547,514,587,614,592,554,663,582,547,582,547,518,543,543,542,518,579,593,595,583,585,630,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,519,519,520,520,521,521,522,522,523,523,524,524,525,525,526,526,527,527,528,528,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,561,514,514,514,584,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,1317,531,631,588,624,546,546,594,518,518,548,549,519,550,520,521,546,551,522,552,553,554,523,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,524,570,571,572,573,574,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,526,611,612,527,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,638,548,549,519,550,520,521,546,551,522,552,553,554,523,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,524,570,571,572,573,574,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,526,611,612,527,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,638,551,522,552,613,560,545,600,1316,633,551,522,552,613,584,601,550,1318,555,519,520,521,522,523,524,525,526,527,528,522,514,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,514,532,567,594,519,520,521,522,523,524,525,526,527,528,519,520,522,523,524,525,526,527,528,518,518,518,518,1319,569,630,533,515,515,515,515,515,515,515,534,515,515,515,515,515,515,515,515,533,533,515,515,515,535,567,521,549,519,550,520,521,546,551,555,558,559,562,563,566,533,567,569,576,577,578,525,582,583,584,545,592,594,541,597,599,600,601,606,611,612,662,614,617,618,540,619,620,622,624,625,626,547,636,637,663,595,601,581,535,618,623,591,600,545,595,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,539,538,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,1314,515,529,535,554,554,519,520,521,522,523,524,525,526,527,528,535,1320,582,542,542,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,546,546,543,543,653,653,543,543,653,653,543,543,653,653,543,543,653,653,554,554,678,548,549,519,550,520,521,546,551,522,532,532,658,659,552,553,554,523,555,537,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,534,515,515,568,569,529,529,524,570,535,535,517,517,655,655,643,643,642,642,656,656,571,572,657,651,651,654,654,647,647,664,664,518,518,543,543,542,542,573,653,574,665,665,544,544,516,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,666,602,603,604,605,606,607,608,609,610,539,539,538,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,559,663,519,520,521,522,523,524,525,526,527,528,543,579,593,543,542,586,598,588,589,596,533,548,549,519,550,520,521,546,551,522,552,553,554,523,555,556,557,558,559,560,561,562,563,564,565,566,567,569,524,573,574,575,514,576,577,578,525,582,584,587,592,594,595,597,599,600,601,602,603,606,607,608,609,610,526,611,612,527,613,614,615,616,617,618,540,619,620,621,622,623,625,626,627,628,629,630,632,547,634,528,637,548,548,548,549,549,549,519,519,519,550,550,550,520,520,520,521,521,521,546,546,546,551,551,551,522,522,522,552,552,552,553,553,553,554,554,554,523,523,523,555,555,555,556,556,556,557,557,557,558,558,558,559,559,559,560,560,560,561,561,561,562,562,562,563,563,563,564,564,564,565,565,565,566,566,566,567,567,567,569,569,569,524,524,524,573,573,573,574,574,574,575,575,575,514,514,514,576,576,576,577,577,577,578,578,578,525,525,525,582,582,582,587,587,587,592,592,592,594,594,594,595,595,595,597,597,597,599,599,599,600,600,600,601,601,601,602,602,602,603,603,603,606,606,606,607,607,607,608,608,608,609,609,609,610,610,610,526,526,526,611,611,611,612,612,612,527,527,527,613,613,613,615,615,615,616,616,616,617,617,617,618,618,618,540,540,540,619,619,619,620,620,620,621,621,621,622,622,622,623,623,623,625,625,625,626,626,626,627,627,627,628,628,628,629,629,629,630,630,630,632,632,632,547,547,547,634,634,634,528,528,528,637,637,637,543,519,520,521,522,523,524,525,526,527,528,601,534,515,518,653,551,573,663,548,549,519,519,519,519,519,550,520,520,520,520,520,521,521,521,521,521,546,551,522,522,522,522,522,532,552,553,554,523,523,523,523,523,555,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,524,524,524,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,525,525,525,525,582,583,584,585,586,545,587,588,589,591,592,593,594,541,595,596,597,598,599,600,601,666,602,602,603,604,604,605,605,606,607,607,608,609,610,539,538,668,668,526,526,526,526,526,611,612,527,527,527,527,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,528,528,528,528,636,637,663,638,550,1318,535,1314,1320,561,582,595,608,623,662,591,678,548,549,519,519,550,520,521,546,551,522,532,658,658,659,552,553,554,523,555,537,556,557,558,559,560,561,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,604,605,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,519,520,521,522,523,524,525,526,527,528,519,519,520,520,521,521,522,522,523,523,524,524,525,525,526,526,527,527,528,528,519,520,521,522,523,524,525,526,527,528,521,533,533,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,540,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,659,592,567,614,533,654,647,532,532,532,534,534,570,570,534,534,516,663,532,534,515,529,535,517,655,643,642,656,651,654,647,665,544,516,514,514,514,629,514,548,549,519,550,520,521,546,551,522,552,523,555,556,557,558,559,560,561,562,563,564,566,567,569,524,573,574,575,514,576,577,578,525,587,592,594,595,597,599,600,601,603,606,608,610,526,611,612,527,615,616,617,618,540,619,620,621,622,623,625,626,627,628,629,630,634,528,637,535,1314,618,0,0,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,519,520,521,522,523,524,525,526,527,528,518,543,542,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,519,520,521,522,523,524,525,526,527,528,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,519,520,521,522,523,524,525,526,527,528,514,514,595,595,514,514,519,520,521,522,523,524,525,526,527,528,592,594,547,613,514,678,592,595,601,514,595,562,534,590,551,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,1321,1322,1323,1324,1320,1319,572,657,582,583,584,586,545,591,541,596,598,600,622,547,1317,586,591,596,631,534,515,551,578,584,584,584,570,590,622,1322,569,546,546,546,546,546,546,546,546,546,546,546,546,618,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,584,546,546,1315,1316,536,633,535,1320,582,547,618,547,584,588,589,596,543,543,543,543,591,591,600,554,592,601,603,533,519,520,521,522,523,524,525,526,527,528,545,531,608,624,516,515,559,580,1315,1316,536,633,678,551,522,552,565,613,601,618,514,515,533,567,518,543,542,515,550,1318,1316,633,666,1314,662,591,583,518,543,542,515,579,593,614,621,592,556,519,520,521,522,523,524,525,526,527,528,514,533,534,514,1321,1321,518,580,585,624,535,1320,600,524,514,519,520,521,522,523,524,525,526,527,528,543,543,542,653,653,543,515,543,543,653,653,543,543,542,653,653,543,543,542,653,653,543,543,543,543,653,653,543,608,551,529,535,610,1322,1320,531,514,529,594,604,605,668,572,657,559,621,515,595,581,623,587,515,578,567,519,520,521,522,523,524,525,526,527,528,519,520,521,522,523,524,525,526,527,528,516,666,524,519,520,521,522,523,524,525,526,527,528,589,1315,1316,666,536,633,545,541,617,616,548,549,519,550,520,521,546,551,522,552,553,554,523,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,524,570,571,572,573,574,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,526,611,612,527,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,638,602,604,605,607,668,548,602,604,605,607,668,536,633,519,520,521,522,523,524,525,526,527,528,567,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,1319,630,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,567,519,520,521,522,523,524,525,526,527,528,529,678,548,549,519,550,520,521,546,551,522,532,658,659,552,553,554,523,555,537,556,557,558,559,560,561,562,563,564,565,566,533,567,534,515,568,569,529,524,570,535,517,655,643,642,656,571,572,657,651,654,647,664,518,543,542,573,653,574,665,544,516,530,575,514,531,576,577,578,579,580,581,525,582,583,584,585,586,545,587,588,589,590,591,592,593,594,541,595,596,597,598,599,600,601,666,602,603,604,605,606,607,608,609,610,539,538,668,526,611,612,527,662,669,613,614,615,616,617,618,540,619,620,621,622,623,624,625,626,627,628,629,630,631,536,632,633,547,634,635,528,636,637,663,638,529,535,1314,1322,1320,662,559,546,546,0,554,591,0,580,581,1314,1320,630,590,590,535,1314,618,521,516,516,561,592,516,518,543,542,616,617,616,617,617,1325,1325,1326,1326,1327,1327,1326,1327,1325,1328,1329,1329,1330,1331,1330,1332,1332,1333,1333,1334,0,0,0,0,1335,0,1335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,685,0,0,0,693,0,0,0,0,0,0,0,0,0,695,695,695,695,0,695,0,0,695,0,695,706,706,0,695,694,0,0,0,695,694,695,702,695,707,698,698,694,0,702,694,695,708,695,708,695,695,695,695,695,695,695,695,694,0,702,707,695,695,693,693,702,703,695,702,703,696,0,0,702,0,695,693,698,706,706,698,695,696,698,695,693,693,698,706,706,703,694,702,702,703,695,707,698,703,695,695,695,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,687,691,692,687,691,692,704,699,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,709,705,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,687,691,692,697,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,687,702,703,704,691,691,705,706,707,710,692,692,708,709,700,701,704,705,709,704,704,704,705,705,705,709,709,709,693,693,694,694,695,695,696,696,697,697,698,699,700,701,687,702,702,703,703,704,691,705,706,707,707,710,692,708,708,709,709,695,702,693,693,693,694,694,695,695,695,695,695,696,697,698,699,700,701,687,702,702,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,709,704,705,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,697,687,700,701,704,700,697,705,704,699,709,705,693,694,695,702,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,693,694,695,696,697,702,703,707,708,709,693,694,695,696,697,702,703,707,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,693,694,695,696,697,698,699,700,701,687,702,703,704,691,705,706,707,710,692,708,709,697,1336,1337,1337,1338,1338,1338,1336,1336,1337,1338,1337,1338,1337,1338,1337,1338,1339,1340,1341,1342,1343,1344,1343,1345,1346,1347,1348,1349,1350,1351,1352,1341,1339,1340,1342,1343,1344,1350,1347,1351,1348,1345,1346,1344,1341,1349,1352,1350,1351,1352,1347,1346,1348,1345,1353,1354,1353,1354,1355,1356,1356,1357,1358,1357,1358,1355,1357,1358,1359,1360,1361,1362,1362,1359,1360,1359,1360,1362,1362,1361,735,735,0,747,747,0,0,754,754,742,728,747,728,731,727,730,736,724,736,750,754,737,0,745,721,747,0,0,0,0,0,0,0,0,0,750,750,0,750,0,750,750,0,745,749,722,731,724,728,734,747,753,738,728,754,0,747,754,0,728,734,747,751,742,754,754,754,0,750,0,0,0,727,730,747,747,731,731,735,730,728,747,747,730,753,747,722,728,731,747,724,728,734,750,750,724,750,747,747,750,724,728,750,750,731,746,727,728,750,728,731,728,747,728,731,734,747,731,747,750,721,750,731,747,724,750,750,724,724,750,747,731,731,737,0,750,747,747,730,728,731,736,724,724,750,750,728,747,750,728,747,730,747,727,730,750,724,731,730,747,747,724,753,733,735,747,754,0,0,733,754,728,731,0,736,754,728,747,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,734,0,728,747,750,754,754,754,754,754,754,754,754,0,749,738,0,747,750,750,747,733,746,751,0,724,731,750,750,750,750,750,750,750,724,722,731,730,750,750,747,731,734,735,730,731,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,718,719,718,719,1365,1366,725,743,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,1367,0,740,739,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,744,720,1366,752,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,1363,1364,718,719,0,720,726,732,744,741,720,744,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,718,720,756,721,722,719,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,756,752,725,743,720,725,727,730,733,737,738,739,740,741,742,743,744,720,720,720,725,725,725,727,727,727,730,730,730,733,733,733,737,737,737,738,738,738,739,739,739,742,742,742,743,743,743,757,758,720,756,721,721,722,722,719,723,723,724,724,725,726,727,727,728,728,729,729,730,730,731,731,732,733,734,734,735,735,736,736,737,738,739,740,741,742,743,744,745,745,746,746,747,747,748,748,749,750,750,751,751,752,753,753,754,754,722,723,728,729,731,734,747,748,750,754,757,758,1363,1364,718,720,756,721,721,722,719,723,724,724,725,726,727,727,728,728,728,728,728,728,728,728,728,728,728,729,730,730,731,731,731,731,731,731,732,733,733,734,734,734,734,734,735,736,737,738,739,740,741,742,743,744,745,746,747,747,747,747,747,747,747,747,747,747,747,747,747,747,748,749,750,750,750,751,751,751,751,752,753,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,732,720,737,738,742,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,718,718,1368,720,726,744,752,1367,739,1365,1366,720,757,758,756,744,1365,1366,756,757,758,1366,752,725,743,739,0,740,720,723,729,748,758,756,721,723,724,727,728,729,730,731,734,747,748,750,751,753,741,739,752,1365,1366,726,744,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,721,722,723,724,727,728,729,730,731,734,735,736,745,746,747,748,750,751,753,754,721,722,723,724,727,728,729,730,731,734,735,736,745,746,747,748,750,751,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,757,758,1363,1364,718,720,756,721,722,719,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,740,741,732,732,732,1369,1369,1370,1370,1370,1371,1371,1372,1372,1373,1373,1371,1372,1374,1374,1375,1375,1376,1376,1375,1377,1378,1378,1377,1379,1380,1381,1380,1382,1383,1382,1383,1384,1379,1384,1383,1384,1385,1385,1386,1385,1386,1387,1387,1388,1389,1388,1390,1390,1391,1391,1392,1393,1392,1393,1394,1394,1395,1395,1396,1397,1398,1398,1397,1396,1399,1400,1396,1397,1394,1394,1395,1395,1401,1401,1402,1399,1400,1397,1398,1398,1402,1399,1400,1403,1403,1403,1404,1403,1404,1404,1403,1403,1405,1406,1407,1408,1409,1410,1411,1408,1410,1405,1406,1407,1412,1409,1413,1408,1410,1411,1408,1410,1410,1412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,759,759,759,759,714,0,714,714,0,0,714,767,768,0,0,768,714,0,766,0,0,767,714,766,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,0,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,755,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,772,773,766,767,768,759,769,714,712,713,770,766,767,768,759,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,755,771,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,771,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,755,772,772,773,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,767,767,767,767,755,766,766,767,768,759,759,769,769,714,714,712,712,713,713,770,755,772,773,775,1414,805,766,766,767,768,759,771,769,714,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,775,775,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,0,805,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,805,766,767,768,759,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,1415,771,0,1415,1415,0,805,770,766,771,766,767,768,759,769,714,712,713,770,766,759,769,714,712,713,766,759,769,714,712,713,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,755,772,773,775,1414,805,766,767,768,759,771,769,714,712,713,770,773,1416,1417,1418,1419,1416,1417,1418,1419,1416,1416,1417,1418,1419,0,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,782,781,782,781,782,781,0,780,0,780,781,0,0,782,781,0,0,781,781,0,782,780,781,0,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,777,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,784,778,779,780,781,778,779,780,781,777,784,785,778,782,779,780,781,777,782,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,777,784,785,778,782,779,780,781,777,777,784,785,778,782,779,780,781,778,782,779,779,780,780,781,781,777,784,785,778,782,779,780,780,780,780,781,781,781,777,784,785,778,782,779,780,781,785,785,777,784,785,778,782,779,780,781,778,777,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,778,777,780,781,778,779,780,781,779,780,781,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,777,784,785,778,782,779,780,781,784,0,0,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,786,0,0,0,711,787,711,787,711,787,711,787,711,787,711,711,711,787,711,787,711,711,787,711,711,787,711,711,787,711,787,711,787,711,787,711,787,787,788,787,0,711,787,711,787,711,787,711,787,711,787,711,787,711,787,787,711,787,711,787,711,787,711,787,711,787,787,711,711,711,711,787,787,711,711,711,711,787,787,711,787,711,787,711,787,711,787,711,787,711,787,711,787,711,787,0,0,791,677,791,791,791,791,791,791,791,791,791,791,791,677,791,677,791,677,791,677,791,791,791,791,791,677,791,677,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,677,791,791,791,791,791,791,791,791,791,791,791,677,791,677,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,677,791,791,677,791,677,677,677,677,677,791,677,791,677,791,791,791,677,791,677,677,791,677,791,791,791,791,677,791,677,791,677,791,677,791,677,791,677,791,677,791,677,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,791,677,791,677,791,791,791,791,791,791,791,791,677,791,677,791,677,791,677,791,677,791,677,791,677,791,677,677,0,641,641,641,641,641,0,0,0,830,1420,817,830,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,817,830,817,830,1420,817,830,1420,817,830,817,830,817,830,1420,817,830,830,817,830,1420,817,830,1420,817,830,817,830,1420,817,830,1420,817,817,817,817,817,817,830,1420,817,830,1420,817,830,1420,817,830,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,817,830,817,830,817,830,817,830,817,830,817,830,817,830,817,830,830,817,830,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,830,1420,817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,689,833,689,689,689,689,689,689,689,689,689,689,689,833,689,689,833,689,0,0,0,0,0,836,834,790,834,790,834,790,834,790,834,790,836,790,834,790,834,790,834,790,834,834,790,834,790,834,790,834,790,834,790,834,834,790,834,790,834,790,834,790,836,790,834,790,834,790,834,790,834,790,834,790,834,790,834,790,834,790,834,834,834,836,834,790,834,790,834,790,834,790,834,790,834,790,834,790,834,790,0,0,671,0,0,0,816,0,671,0,799,823,671,799,823,821,0,671,816,671,821,671,0,0,0,0,823,671,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,798,795,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,686,837,799,823,671,797,821,686,837,799,823,671,797,821,1421,798,795,816,686,837,673,799,823,671,797,821,795,686,673,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,673,837,837,799,799,823,823,671,671,797,797,821,821,1421,798,795,816,686,837,673,799,823,671,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,673,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,795,798,673,673,0,1421,686,671,686,837,799,823,671,797,821,837,799,823,671,797,821,837,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,798,795,816,686,837,673,799,823,671,797,821,673,850,850,0,849,862,870,862,870,848,885,885,849,849,877,878,0,881,877,878,881,0,848,885,0,885,849,849,849,849,849,848,889,894,0,885,882,850,0,0,889,860,860,868,861,882,885,0,0,848,876,0,889,862,870,889,0,847,871,871,0,889,885,849,865,865,849,860,879,885,859,0,0,863,885,889,849,849,849,849,849,849,867,860,867,867,867,886,849,869,885,0,0,849,849,877,849,863,0,889,0,877,882,878,877,878,849,849,0,849,870,850,870,850,849,0,0,0,0,849,849,879,864,862,849,849,849,860,859,849,894,860,0,839,0,885,0,860,0,885,882,877,858,877,0,839,870,886,850,870,850,889,848,0,0,885,0,885,885,889,877,878,888,849,860,0,849,849,881,881,889,840,849,849,877,858,877,864,0,885,885,860,860,0,885,847,849,849,877,876,877,889,885,0,848,878,849,878,849,849,849,894,0,877,877,876,871,879,849,877,883,883,883,860,849,0,849,849,849,849,849,864,860,860,848,860,849,0,860,839,888,839,861,868,868,868,868,868,868,868,868,868,868,868,868,849,0,848,889,0,885,885,849,849,885,0,0,889,849,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,849,841,840,865,860,0,860,869,848,0,849,0,848,0,885,0,877,877,849,849,849,862,883,849,0,0,0,0,885,849,0,849,839,869,0,0,889,848,0,877,878,889,0,0,885,0,849,849,888,849,861,849,0,0,870,886,850,844,862,885,0,858,839,0,849,849,849,849,849,848,848,0,859,860,860,884,841,880,0,839,860,860,889,885,880,884,884,880,884,884,882,885,839,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,840,841,842,843,846,847,849,892,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,842,850,850,0,866,873,874,890,891,840,841,840,841,840,841,840,841,840,840,841,841,840,841,840,841,887,892,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,848,843,852,843,843,852,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,857,858,859,839,860,861,862,863,864,865,867,840,868,869,873,876,877,878,879,880,881,849,0,845,857,858,859,839,860,861,862,863,864,865,867,840,868,869,873,876,877,878,879,880,881,849,840,841,848,848,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,857,896,896,840,841,846,843,852,846,844,840,841,892,895,896,845,854,843,852,846,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,840,841,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,893,842,842,842,842,840,841,896,845,844,856,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,876,877,878,879,880,881,849,882,883,884,841,885,886,894,845,845,845,856,856,856,857,857,857,858,858,858,859,859,859,839,839,839,860,860,860,861,861,861,862,862,862,850,850,850,863,863,863,864,864,864,865,865,865,866,866,866,867,867,867,840,840,840,868,868,868,869,869,869,851,851,851,848,848,848,848,870,870,870,847,847,847,873,873,873,876,876,876,877,877,877,878,878,878,879,879,879,880,880,880,881,881,881,849,849,849,841,841,841,886,886,886,894,894,894,892,846,840,841,846,887,843,843,843,854,850,845,854,843,852,846,844,856,842,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,840,840,840,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,841,841,841,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,846,844,844,856,842,857,858,859,839,860,861,862,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,840,841,840,840,841,841,840,841,884,840,841,840,841,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,846,854,0,893,896,896,896,896,852,852,843,843,852,896,873,845,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,847,873,876,877,878,879,880,881,849,886,894,882,845,843,843,852,884,843,848,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,872,874,875,851,852,840,841,840,841,840,841,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,843,842,854,846,840,841,842,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,850,840,841,848,844,885,848,843,852,846,840,841,869,869,862,889,843,852,840,841,843,840,841,0,850,843,852,846,856,856,856,892,844,842,866,851,872,874,875,890,892,893,892,885,843,852,846,844,842,870,854,854,840,841,856,866,870,892,872,845,857,858,859,839,860,861,862,863,864,865,867,840,868,869,870,873,876,877,878,879,880,881,849,884,848,895,0,846,843,895,895,840,841,852,892,848,870,848,870,848,840,841,848,842,874,846,846,842,896,846,893,840,841,840,841,844,840,841,847,896,859,863,850,850,850,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,844,842,842,845,850,868,848,840,841,844,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,843,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,866,872,874,875,890,891,870,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,840,841,844,845,854,843,852,846,844,856,842,857,858,859,839,860,861,862,850,863,864,865,866,867,840,868,869,851,848,870,871,872,847,873,874,875,876,877,878,879,880,881,849,882,883,884,841,885,886,887,888,889,890,891,892,893,894,895,896,0,887,870,850,846,842,842,893,870,854,1422,1423,1424,1424,1424,1424,1425,1426,1427,1427,1427,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1426,1437,1429,1430,1431,1429,1438,1431,1437,1428,1427,1429,1429,1430,1439,1432,1433,1437,1440,1429,1430,1429,1438,1440,1441,1442,1439,1434,1426,1440,1430,1429,1443,1441,1436,1435,1444,1443,1441,1445,1445,1446,1446,1447,1448,1449,1450,1449,1450,1451,1451,1452,1453,1453,1454,1455,1456,1457,1457,1458,1454,1457,1456,1459,1460,1455,1456,1461,1459,1462,1460,1454,1459,1462,1455,1458,1463,1461,1456,1459,1464,1465,1466,1467,1464,1468,1469,1464,1470,1468,1471,1468,1472,1471,1472,1466,1467,1465,1472,1470,1466,904,904,904,904,904,904,0,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,0,0,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,904,0,904,904,904,0,904,904,904,904,904,904,904,904,904,904,904,904,904,904,906,905,905,0,905,905,905,905,905,914,905,906,905,905,907,907,914,0,0,906,905,0,914,905,905,906,905,914,905,905,905,914,914,905,0,0,0,0,905,905,0,0,905,905,906,0,914,914,0,0,914,0,0,911,917,905,907,906,908,909,912,913,910,911,914,905,906,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,908,905,906,905,906,905,906,905,906,905,905,906,906,905,906,905,906,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,905,907,906,908,909,910,911,905,907,906,908,909,910,911,905,906,917,905,907,906,908,909,912,913,910,911,914,905,906,908,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,905,906,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,905,906,909,905,907,906,909,905,905,905,906,906,906,909,909,909,905,906,905,905,905,905,905,907,907,906,906,906,906,906,908,909,912,913,910,911,914,914,917,905,907,906,908,909,912,913,910,911,914,914,917,905,907,906,908,909,912,913,910,911,914,905,906,905,905,906,906,905,906,905,906,905,906,917,905,907,906,908,909,912,913,910,911,914,909,912,917,905,907,906,908,909,912,913,910,911,914,905,906,905,906,905,906,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,905,906,917,905,907,906,908,909,912,913,910,911,914,905,906,905,906,905,906,905,906,912,909,917,907,905,906,911,907,913,905,906,910,905,906,909,914,905,906,905,906,905,906,910,913,905,907,906,908,909,910,911,907,914,907,914,905,906,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,911,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,917,905,907,906,908,909,912,913,910,911,914,913,905,906,917,905,907,906,908,909,912,913,910,911,914,913,908,917,908,908,1473,1473,0,0,923,0,0,923,920,0,0,0,923,923,919,919,919,0,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,918,921,924,918,919,920,921,922,923,924,918,919,920,921,922,923,918,919,920,921,918,919,920,921,924,918,919,920,921,922,923,918,921,922,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,922,918,919,920,921,918,918,918,919,919,919,921,921,921,921,918,919,920,920,921,923,923,924,918,919,920,921,922,923,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,918,919,921,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,919,921,918,921,923,918,921,918,919,920,921,920,923,919,920,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,918,919,920,921,922,923,924,921,0,0,0,932,0,0,0,0,932,932,925,0,928,928,928,928,0,0,925,0,0,932,932,932,932,932,932,932,932,932,932,932,932,932,932,0,931,933,925,926,927,932,928,929,930,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,926,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,929,926,925,926,927,928,929,930,925,926,927,928,929,930,931,933,925,926,927,932,928,929,930,926,927,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,933,925,926,927,928,929,930,925,925,925,926,926,926,927,927,927,929,929,929,930,930,930,929,931,925,926,927,932,932,928,928,929,930,931,933,925,926,927,932,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,925,926,927,929,930,931,933,925,926,927,932,928,929,930,929,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,929,926,931,929,927,927,0,926,927,932,929,926,925,926,927,928,929,930,932,928,932,928,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,933,925,926,927,932,928,929,930,931,0,929,0,938,0,935,935,935,0,0,938,0,938,938,0,938,938,937,935,937,938,934,938,936,936,934,935,936,934,935,936,937,938,939,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,939,934,935,936,937,938,939,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,934,934,935,935,935,936,936,936,937,937,937,938,938,938,939,939,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,939,939,939,939,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,934,935,936,937,938,939,941,940,942,942,942,942,942,942,942,942,942,942,942,942,942,942,0,0,942,942,942,941,942,0,942,942,942,942,942,942,942,941,940,0,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,943,0,942,941,942,942,942,942,942,942,942,942,942,942,942,942,942,942,943,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,0,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,941,942,942,942,942,940,942,942,942,942,942,943,942,942,942,946,946,942,0,942,942,942,942,0,942,946,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,940,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,942,943,943,942,942,942,942,942,942,942,942,942,942,942,942,942,0,0,0,949,942,943,944,940,941,945,946,947,948,940,941,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,945,947,940,941,940,941,940,941,940,941,940,940,941,941,940,941,940,941,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,947,947,942,943,944,940,941,945,946,947,948,942,943,944,940,941,945,946,947,948,942,942,940,941,949,942,943,944,940,941,945,946,947,948,940,941,947,949,945,947,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,940,941,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,940,941,948,942,940,941,945,946,948,942,942,942,940,940,940,941,941,941,945,945,945,946,946,946,948,948,948,940,941,944,947,942,943,943,944,940,940,940,940,940,941,941,941,941,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,940,941,940,940,941,941,940,941,940,941,940,941,949,942,943,944,940,941,945,946,947,948,942,942,949,942,940,945,948,949,942,943,944,940,941,945,946,947,948,940,941,940,941,940,941,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,940,941,949,942,943,944,940,941,945,946,947,948,940,941,940,941,940,941,940,941,947,949,940,941,942,940,941,940,941,948,944,940,941,940,941,940,941,942,943,944,940,941,945,946,947,948,943,943,940,941,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,949,942,943,944,940,941,945,946,947,948,940,941,949,942,943,944,940,941,945,946,947,948,949,0,947,0,0,0,953,954,953,953,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,954,954,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,954,953,954,953,953,954,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,953,954,0,0,0,959,958,959,958,959,958,959,958,959,958,959,958,959,958,958,958,959,958,959,958,959,958,959,958,959,958,958,958,958,958,958,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,958,958,958,959,959,0,958,958,958,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,959,958,0,0,0,962,962,962,962,962,0,0,962,971,0,0,962,962,898,966,0,971,971,0,971,0,966,971,962,971,956,971,956,956,0,962,971,897,962,956,0,0,956,962,962,962,968,899,962,962,962,962,956,962,962,956,956,968,956,962,956,898,0,0,0,962,962,962,966,956,0,0,968,962,966,956,962,0,962,964,962,0,0,964,966,962,962,971,962,962,962,966,971,0,962,899,0,964,897,962,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,967,955,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,916,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,916,960,960,961,961,916,965,962,964,916,899,966,967,968,969,897,956,902,962,964,916,899,966,967,968,969,897,956,902,966,966,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,902,955,902,916,970,964,916,965,960,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,0,964,916,899,966,967,968,969,971,897,956,964,964,964,916,916,916,966,966,966,971,971,971,970,0,961,972,962,962,970,964,916,899,899,898,966,966,967,965,968,968,969,969,971,897,956,956,961,961,961,961,972,955,961,972,962,962,970,964,916,899,898,966,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,972,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,966,955,955,897,964,916,966,967,971,916,916,0,965,916,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,969,897,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,966,972,970,955,966,966,972,966,966,960,955,966,967,962,955,970,961,962,964,916,899,966,967,968,969,897,956,902,962,899,966,968,969,956,967,962,899,966,968,969,956,897,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,961,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,969,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,955,961,972,962,970,964,916,899,898,966,967,965,968,969,971,960,897,956,902,965,955,1474,1474,1475,1476,1475,1477,1478,1477,1478,1479,1480,1479,0,0,898,974,0,0,0,899,974,898,964,964,899,964,0,974,974,974,974,974,916,974,974,916,974,974,974,974,974,974,974,0,974,974,974,974,916,916,916,974,974,974,974,974,974,974,974,974,974,974,974,974,974,974,974,974,974,978,990,987,992,987,987,993,979,979,994,991,992,989,980,981,979,978,979,978,980,980,0,0,985,984,984,985,986,0,992,989,989,996,0,996,0,989,996,978,976,980,0,985,991,980,979,994,996,0,985,985,985,985,985,989,989,0,0,987,980,981,992,992,996,985,0,0,0,996,0,978,976,978,985,985,985,973,990,988,990,989,989,989,985,989,994,994,985,989,985,994,991,985,985,990,985,991,991,989,985,994,985,985,985,994,985,985,985,985,992,996,989,985,985,985,985,985,985,989,985,991,992,991,991,992,994,994,985,989,989,985,989,989,989,985,985,985,985,985,985,986,989,989,989,989,985,988,990,991,995,985,990,985,985,989,996,985,986,0,989,0,980,980,994,991,993,993,994,994,991,985,994,989,991,990,992,0,992,989,973,985,986,988,989,995,993,989,989,991,985,992,980,980,989,989,977,980,977,992,987,987,980,980,978,980,979,0,990,993,984,985,986,996,0,0,980,992,992,0,0,993,990,991,994,981,0,0,0,0,976,977,986,973,994,989,989,985,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,963,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,976,977,977,978,978,979,979,980,980,981,981,976,977,978,979,980,981,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,0,976,982,977,983,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,995,996,976,982,977,983,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,995,996,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,979,980,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,963,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,963,976,977,978,979,980,981,976,977,978,979,980,981,976,976,976,977,977,977,978,978,978,979,979,979,980,980,980,981,981,981,963,976,977,978,979,980,981,976,976,976,976,976,982,977,977,977,977,977,983,963,984,984,985,985,986,986,973,973,987,987,988,988,989,989,990,990,991,991,992,992,978,978,978,978,978,993,993,994,994,979,979,979,979,979,980,980,980,980,980,981,981,981,981,981,915,997,995,995,996,996,976,982,977,983,963,984,985,985,985,985,985,986,986,986,986,986,973,973,987,988,989,989,990,991,992,992,992,978,993,994,994,979,980,981,915,997,995,996,996,996,996,996,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,976,976,977,977,978,978,979,979,980,980,981,981,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,915,963,963,963,915,915,915,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,963,997,982,976,977,978,979,980,981,983,976,977,978,979,980,981,982,997,963,976,977,978,979,980,981,985,986,973,987,989,990,992,994,996,976,977,978,979,980,981,976,977,978,979,980,981,976,977,978,979,980,981,976,982,977,983,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,995,996,984,985,986,973,987,988,989,990,991,992,993,994,995,996,984,985,986,973,987,988,989,990,991,992,993,994,995,996,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,983,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,983,963,976,977,978,979,980,981,976,982,977,983,963,984,985,986,973,987,988,989,990,991,992,978,993,994,979,980,981,915,997,995,996,997,997,1481,1482,1483,1482,1483,1482,1481,1484,1484,1485,1486,1487,1488,1489,1488,1489,1490,1488,1489,1487,1486,1491,1492,1493,1493,1493,1494,1494,1495,1496,1497,1498,1496,1497,1498,1499,1500,1495,1496,1498,1500,1501,1501,1502,1503,1504,1505,1504,1505,1505,1502,1505,1503,1506,1507,1508,1509,1510,1506,1508,1509,1510,1511,1506,1507,1508,1509,1510,1511,1511,1512,1513,1512,1002,1005,809,809,809,0,0,0,809,0,0,0,809,0,815,806,809,1009,1009,1010,1009,1010,1010,0,815,806,809,0,0,1009,806,809,815,806,809,1009,1009,1010,809,809,1009,806,809,815,809,1005,813,815,1005,809,0,0,1005,0,0,1002,0,809,809,0,0,0,806,809,809,809,809,809,809,815,0,0,0,809,1002,1002,813,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,1006,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,814,765,763,814,765,763,1006,1002,1002,1002,1002,1002,1002,1002,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1007,812,1003,1004,1005,804,806,1006,1007,1008,808,1009,1010,809,1002,1011,812,1003,1004,1005,804,806,1006,1007,1008,808,1009,1010,809,1002,1011,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,814,765,763,1002,1011,808,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,814,1003,815,1004,1005,804,806,765,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,763,1002,1004,1002,1002,1002,1002,1002,812,814,1003,1003,1003,815,815,1004,1005,1005,804,806,806,765,1006,1007,1008,808,1009,1009,1010,1010,809,809,1002,1002,1002,1002,1002,1011,763,808,813,812,814,1003,815,815,815,815,815,1004,1005,1005,1005,804,806,806,806,806,806,765,1006,1007,1008,808,1009,1010,809,809,809,809,809,809,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,1002,1002,1002,1002,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1003,1002,1002,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,1002,1002,1002,814,812,1003,804,808,804,808,815,1011,1004,808,808,1002,808,1002,1002,812,1003,815,1005,806,809,1003,804,1007,1008,1006,1011,1002,1002,1002,1008,812,1003,1004,1005,804,806,1006,1007,1008,808,1009,1010,809,1002,1011,1003,815,1005,806,1009,1010,809,1003,815,1005,806,1009,1010,809,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,1002,813,812,814,1003,815,1004,1005,804,806,765,1006,1007,1008,808,1009,1010,809,1002,1011,763,808,1514,1514,1515,1516,1517,1518,1519,1520,1521,1515,1521,1522,1519,1520,1521,1523,1523,1515,1516,1517,1522,1524,1518,1524,1525,1525,1525,825,0,825,822,825,822,822,822,825,822,825,822,0,0,822,822,822,822,822,822,822,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,825,822,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,825,822,822,824,825,825,822,822,822,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,824,825,822,825,822,825,822,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,825,822,824,1526,1527,1528,1529,1529,1526,1527,1528,1529,0,0,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,826,826,1013,1013,826,826,1013,826,1013,826,1013,826,1013,826,826,826,826,826,826,1013,1013,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,826,826,826,826,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,826,1013,1013,826,1013,1023,802,800,1023,783,1019,1019,0,0,0,1025,0,0,0,0,0,1023,0,0,0,0,803,0,0,783,0,0,783,802,803,811,807,1019,1530,1023,783,828,1018,1023,783,800,1023,811,828,828,803,828,828,828,803,803,803,811,803,811,811,803,803,803,828,1023,1018,803,828,828,802,803,1023,803,1018,1020,783,1023,783,802,1020,1019,1020,783,802,803,803,811,807,1018,803,783,1025,783,1018,1018,1530,783,783,828,0,0,1025,0,0,0,0,0,0,1023,1025,1014,0,0,0,0,0,0,0,0,0,828,828,811,807,783,783,783,802,1019,802,1018,1017,1017,1017,1018,828,807,828,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,810,810,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1014,762,820,793,794,792,764,1014,762,820,793,794,792,764,810,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,801,783,802,1017,1018,803,827,1019,828,829,810,1020,811,807,800,783,802,1017,1018,803,827,1019,828,829,810,1020,811,807,800,810,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,690,762,1021,820,1025,793,1022,794,792,764,1531,827,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1532,827,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,690,1023,1024,801,783,762,762,802,1021,1021,820,820,1025,793,793,1022,1022,1017,1018,803,827,1019,794,794,828,829,810,792,792,1020,811,807,764,764,800,827,810,827,827,827,690,1023,1024,801,783,783,762,802,802,1021,820,1025,793,1022,1017,1018,1018,803,803,827,1019,1019,794,828,828,829,829,810,792,1020,811,811,807,807,764,800,800,1532,827,1026,690,1023,1024,801,783,783,783,762,802,802,802,802,1021,820,1025,793,1022,1017,1018,803,803,803,803,803,827,1019,794,828,829,810,792,1020,811,811,811,807,807,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1024,1024,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,801,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,690,1023,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1014,1014,1014,1021,820,1022,1533,1532,1531,827,810,810,810,810,1533,810,1532,810,827,1014,1532,1533,1532,783,802,803,811,807,783,802,1017,1018,803,827,1019,828,829,810,1020,811,807,800,783,802,1018,803,1019,828,829,811,807,800,783,802,1018,803,1019,828,829,811,807,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1531,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1026,690,1023,1024,801,783,762,802,1021,820,1025,793,1022,1017,1018,803,827,1019,794,828,829,810,792,1020,811,807,764,800,1533,1532,1026,1532,1534,1535,1536,1536,1535,1537,1538,1534,1539,1539,1540,1540,1541,1541,1541,1542,1542,1543,1543,1544,1545,1546,1547,1548,1546,1549,1550,1551,1549,1547,1548,1550,1551,1552,1553,1553,1554,1555,1556,1555,1554,1557,1558,1556,1554,1558,1556,1557,1558,1555,1557,0,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1015,1031,1012,0,0,1028,1012,0,1032,1031,1012,0,1012,1032,0,0,1033,1012,1012,1031,1031,1033,0,1012,0,0,1028,1033,0,0,1012,1031,1031,1031,1031,1031,1031,1031,1033,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,0,1027,0,0,1030,1029,716,717,1031,1032,1033,1012,1030,1029,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1030,1030,1029,1029,1027,716,716,717,717,1031,1031,1032,1032,1033,1033,1012,1012,1027,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1027,1028,1012,1030,1029,716,717,1031,1032,1033,1012,1030,1029,716,717,1031,1032,1033,1012,1030,1029,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1029,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1028,1030,1029,1027,716,717,1031,1032,1033,1012,1029,1559,1560,1561,1560,1560,1559,1561,1562,1562,1563,1564,1562,1565,1564,1566,1563,1563,1562,1565,1564,1105,1046,1043,1043,1037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1037,0,0,0,0,1046,1048,1048,1037,0,0,1037,0,0,1090,1037,0,0,0,0,0,0,0,1091,0,1041,1040,1040,1047,1047,1040,1046,1047,1040,1046,1047,0,0,1037,0,1037,0,1057,0,0,1037,0,0,1041,1041,1040,1047,1047,0,0,0,1057,1058,1036,1037,0,0,1046,1047,1058,0,1038,1037,0,0,0,1046,1047,1046,1046,0,1037,0,0,1105,1044,1043,0,1058,774,1036,1046,1046,0,0,0,0,0,0,1040,1040,1040,1040,1040,0,0,1045,1038,1102,0,1567,1045,1046,1047,0,1036,774,1036,1039,1041,1041,1041,1042,1043,1043,1047,0,1037,0,0,0,1046,0,1037,0,1037,1047,0,0,0,1037,0,774,1040,1040,1040,1048,1041,1040,1040,1046,1047,1040,1046,1047,1044,1037,0,0,0,1037,0,1567,1102,0,1037,0,0,0,1037,1046,1042,1037,0,0,0,0,0,0,0,1037,0,1090,1105,1046,1047,1047,1091,0,1046,0,0,1092,1071,1034,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,640,1065,1061,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1065,1083,1049,1076,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1083,1050,1076,0,1051,1051,1051,1051,1051,1087,1088,1067,1070,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1038,1039,1039,1040,1040,1041,1041,1042,1042,1043,1043,1044,1044,1045,1045,1046,1046,1047,1047,1048,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1065,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1068,1080,1095,1096,1097,1098,1060,1060,1056,1071,1051,1092,640,1055,1056,1051,1085,1086,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,838,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1094,1095,1096,1097,1098,1048,1099,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,838,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1094,1095,1096,1097,1098,1048,1099,1053,1077,1065,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,640,1035,648,1067,1068,1069,1071,1072,1074,1075,1077,1080,1081,1084,1085,1086,1087,1053,1088,1052,1054,1093,1105,1094,1095,1096,1097,1098,1078,838,1034,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1043,1045,1051,1051,1049,1051,1051,1051,1070,1095,1096,1097,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1103,1100,1100,838,1104,1092,1050,1086,1077,1053,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1054,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1103,1100,1100,648,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1064,1051,1034,1051,1051,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1061,1051,1051,1051,1051,1051,1051,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1055,1082,1059,0,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1568,1051,1051,1051,1087,1088,1051,1051,1066,1071,1054,1093,1074,1103,774,1057,1058,1036,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1090,1091,1092,1048,774,774,774,1057,1057,1057,1058,1058,1058,1036,1036,1036,1038,1038,1038,1039,1039,1039,1040,1040,1040,1041,1041,1041,1042,1042,1042,1043,1043,1043,1044,1044,1044,1045,1045,1045,1046,1046,1046,1047,1047,1047,1090,1090,1090,1091,1091,1091,1092,1092,1092,1048,1048,1048,1100,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1078,1053,640,1073,1094,1059,1066,1067,1054,1093,1094,1095,1100,1104,774,774,1057,1057,1058,1058,1036,1036,672,672,1038,1038,1038,1038,1038,1039,1039,1039,1039,1039,1040,1040,1040,1040,1040,1041,1041,1041,1041,1041,1042,1042,1042,1042,1042,1043,1043,1043,1043,1043,1044,1044,1044,1044,1044,1045,1045,1045,1045,1045,1046,1046,1046,1046,1046,1047,1047,1047,1047,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1048,1048,1048,1048,1099,1049,1064,1078,1089,1097,838,1077,1104,1102,1101,1110,774,774,774,774,774,1057,1057,1058,1058,1036,1036,672,1038,1039,1040,1041,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1038,1039,1039,1040,1040,1041,1041,1042,1042,1043,1043,1044,1044,1045,1045,1046,1046,1047,1047,1048,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1100,1100,1110,1100,1111,1112,0,1059,1079,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1050,1094,1104,640,1103,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1051,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1100,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1062,1049,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1041,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1101,1063,1049,1064,1065,1066,1067,1071,1072,1075,1077,1053,1052,1089,1071,1075,1077,1061,1065,1065,1041,1100,1050,1083,838,1078,1063,1049,1050,1065,1083,1049,1065,1054,1104,1074,1077,1077,1053,1059,1041,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1053,1068,1095,1096,1097,1098,1111,1085,1083,1051,1112,1078,838,1077,1062,1067,1087,1088,648,1072,1064,1081,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1051,1051,1085,1070,1101,1049,1053,1071,1054,1054,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1051,1051,1051,1051,1051,1051,1051,1051,1051,1051,1063,1049,1068,1082,1055,1056,1089,1057,1058,1036,672,1054,1073,1055,1082,1075,1568,1100,1086,1076,1100,1095,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1112,1035,1111,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1085,1086,1035,1081,1056,1111,1071,1053,1052,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,838,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1094,1095,1096,1097,1098,1048,1099,774,1057,1058,1036,672,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1094,1051,1051,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1034,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1100,1104,1102,1101,1110,774,1057,1058,1036,672,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1059,1060,1061,640,838,1035,648,1062,1063,1049,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1050,1055,1056,1084,1085,1086,1087,1053,1088,1052,1089,1090,1091,1092,1054,1093,1105,1094,1095,1096,1097,1098,1048,1099,1092,838,1063,1049,1064,1069,1078,1080,1081,1084,1099,1094,1077,1094,1094,1077,1094,1069,1084,1049,1078,0,1079,1100,1050,1051,1079,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1114,1114,1114,1114,1114,1113,688,1114,1115,1113,688,1114,1115,1114,1114,688,688,1113,688,1114,1115,1113,1114,1114,1114,1114,1114,1113,1113,1113,1113,1113,1113,1113,688,1113,1113,1113,1113,1113,1113,1113,1113,1113,688,1114,1115,1113,688,1114,1115,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1113,1114,1113,1114,1114,1113,688,1114,1115,1114,1114,1114,1114,1114,1114,1113,688,1114,1115,1114,1114,1114,1114,1114,1113,1113,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,1113,1113,1113,688,1113,688,1113,1113,688,1114,1115,1114,688,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,1113,1113,1114,1113,1114,1114,1114,1114,1114,1114,1114,1114,1114,1114,1114,1114,1113,1113,1113,1113,1113,688,1114,1114,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,688,1114,1115,1113,1113,1113,688,1114,1115,1113,1114,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0,0,0,1123,0,0,0,1123,0,0,0,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1116,1126,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1118,1118,1118,1118,1118,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1118,1118,1119,1122,1121,1123,1124,1119,1122,1121,1123,1124,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1118,1118,1118,1126,1118,1118,1125,1125,1125,1125,1125,1125,1125,1119,1125,1125,1125,1125,1125,1125,1125,1122,1135,1126,1117,1136,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1125,1125,1125,1125,1125,1125,1125,1125,1125,1125,1125,1125,1125,1118,1118,1118,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1118,1118,1118,1118,1118,1118,1117,1136,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1126,1117,1117,1118,1118,1118,1118,1118,1125,1122,1125,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1126,1126,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1125,1125,1116,1119,1141,1117,1119,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1126,1118,1119,1122,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1117,1117,1125,1126,1116,1116,1118,1141,1117,1117,1118,1118,1118,1118,1118,1118,1118,1118,1118,1118,1118,1118,1125,1125,1141,1116,1116,1125,1125,1119,1122,1121,1123,1124,1118,1118,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1117,1136,1116,1125,1141,1118,1119,1122,1121,1123,1126,1124,1133,1128,1131,1127,1134,1132,1129,1120,1130,1135,1125,1118,1569,1570,1570,0,0,0,0,0,0,0,0,0,0,0,0,1151,1151,0,1163,0,0,1167,0,0,0,1167,0,1151,0,0,0,0,0,0,1163,0,1149,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1151,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1152,1152,1152,1152,1152,1151,1151,1151,1151,1151,1151,1151,1151,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1158,1152,1152,1150,1151,1150,1151,1151,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1149,1151,1152,1152,1152,1152,1152,1158,1158,1158,1158,1158,1158,1158,1150,1158,1158,1158,1158,1158,1168,1158,1158,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1168,1158,1158,1158,1158,1158,1158,1158,1158,1158,1158,1158,1158,1168,1158,1158,1172,1151,1152,1149,1152,1152,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1152,1152,1152,1152,1152,1152,1180,1174,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1151,1158,1152,1152,1152,1152,1152,1174,1168,1151,1151,1151,1151,1158,1168,1151,1174,1158,1152,1150,1178,1154,1151,1151,1151,1151,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1151,1151,1151,1151,1151,1151,1168,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1158,1158,1158,1172,1150,1176,1151,1150,1180,1174,1168,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1151,1152,1174,1150,1151,1151,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1151,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1158,1151,1151,1151,1151,1158,1151,1172,1172,1172,1152,1176,1158,1158,1158,1155,1174,1172,1158,1158,1151,1172,1152,1152,1151,1152,1152,1152,1152,1152,1152,1152,1152,1152,1152,1168,1172,1158,1158,1158,1151,1151,1176,1172,1151,1172,1158,1150,1151,1151,1152,1152,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1149,1151,1158,1180,1174,1168,1149,1172,1158,1176,1152,1150,1178,1154,1151,1157,1159,1155,1169,1166,1161,1164,1160,1175,1167,1165,1162,1153,1163,1158,1152,1571,1571,1571,1572,1572,818,0,819,0,819,818,0,0,0,819,818,0,0,819,818,0,0,819,818,0,0,0,0,0,0,0,674,819,818,0,0,0,0,819,818,0,0,674,819,818,0,0,819,818,819,0,0,819,0,0,819,0,819,0,0,818,0,819,818,0,0,819,818,0,0,1188,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1185,1186,1185,1186,1192,1192,1187,1188,1189,1190,1185,1185,1186,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1185,1186,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1199,1213,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1197,1201,675,1185,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,1187,1187,1187,1188,1188,1188,1189,1189,1189,1190,1190,1190,1185,1185,1185,1186,1186,1186,1191,1191,1191,1192,1192,1192,1193,1193,1193,1194,1194,1194,1195,1195,1195,1196,1196,1196,1197,1197,1197,1198,1198,1198,1199,1199,1199,1200,1200,1200,1201,1201,1201,1202,1202,1202,1203,1203,1203,1204,1204,1204,1205,1205,1205,1206,1206,1206,1207,1207,1207,1208,1208,1208,1209,1209,1209,1210,1210,1210,1211,1211,1211,1212,1212,1212,1213,1213,1213,819,819,819,818,818,818,1203,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,819,819,819,819,819,819,819,819,819,819,819,819,819,819,819,819,818,818,818,818,818,818,818,818,818,818,818,818,818,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1205,1206,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,1212,1212,1208,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1189,1191,1193,1195,1198,1200,1203,1204,1207,1208,1211,1212,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1190,1209,1210,1204,1216,1185,1217,1186,1197,1199,1202,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,674,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1196,1196,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1187,1188,1189,1190,1185,1186,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,819,818,674,1198,1200,1194,1198,1200,676,1186,0,0,0,0,0,0,661,661,0,0,0,1224,1222,645,661,1218,1219,1220,0,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1218,1219,1220,0,1219,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,645,661,1218,1219,1220,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,645,1221,1221,661,1218,1219,1220,1224,1222,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1223,1223,1223,1223,1224,1222,645,661,1218,1219,1220,0,645,661,645,645,645,661,661,661,1224,1219,1218,1219,1218,1224,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,0,645,661,1219,1224,1222,645,661,1218,1219,1220,0,0,1218,1219,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,645,0,1224,0,0,1222,1224,1223,1223,1223,1223,1223,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,1224,1222,645,661,1218,1219,1220,645,1218,1224,1220,1220,1220,0,1236,0,0,0,1236,0,0,287,0,287,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1235,1225,1235,1225,1226,1225,1226,1225,1226,1225,1226,1235,1225,1225,1226,1226,1225,1226,1225,1226,1225,1226,287,0,1225,1226,1226,1226,1226,1226,1225,1226,1225,1226,1225,1226,1225,1226,7,287,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,0,1226,7,1235,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,1225,1226,0,1225,1573,1574,1573,0,0,0,283,0,0,24,59,283,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,24,59,59,24,24,59,24,59,24,59,24,59,59,59,59,59,24,59,24,59,24,59,59,59,24,59,59,283,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,24,59,171,185,0,185,0,171,0,0,175,0,0,185,171,191,29,175,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,29,185,171,29,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,0,185,171,191,29,185,171,185,185,185,185,171,191,29,185,171,171,171,191,29,185,171,191,29,185,171,191,29,185,171,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,0,171,185,171,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,185,171,191,29,0,0,1227,170,0,1227,1228,1228,1228,170,0,170,1228,1227,1228,1227,1228,0,170,1228,1228,1227,1228,170,170,170,170,302,0,0,1228,1228,1228,302,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,6,6,321,170,1227,1228,6,321,170,1227,1228,6,170,1227,1228,6,170,1227,1228,6,321,170,1227,1228,321,321,6,321,170,1227,1228,6,321,170,1227,1228,1228,302,302,6,321,170,1227,1228,6,321,170,1227,1228,170,1227,1228,6,321,170,1227,1228,302,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,302,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,170,321,321,321,321,321,302,321,302,321,6,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,6,321,170,1227,1228,302,1228,321,1258,0,0,0,0,0,1232,1232,0,0,274,0,0,0,274,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,5,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,314,5,303,1231,314,1232,183,1233,0,1233,1231,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,274,274,5,303,1231,314,1232,183,1233,0,5,303,1231,314,1232,183,1233,183,183,183,183,5,303,303,1231,314,1232,183,1233,0,1233,1233,274,1233,314,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,183,274,5,5,303,1231,314,1232,183,1233,303,303,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,303,1233,1233,0,303,0,0,1233,1233,0,1233,1233,0,1233,1233,303,183,1233,303,274,303,303,303,303,303,0,1233,1233,1231,274,314,314,314,1231,5,303,1231,314,1232,183,1233,303,303,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,5,303,1231,314,1232,183,1233,1233,1233,183,303,5,303,1231,314,1232,183,1233,0,274,0,1234,1234,0,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1234,1575,1575,0,232,0,0,225,0,0,4,113,226,231,232,233,223,224,234,235,236,237,238,230,228,239,240,231,237,4,113,233,223,224,234,235,236,238,230,228,225,239,240,226,4,0,0,0,0,226,226,231,237,0,0,0,0,226,231,0,231,237,0,0,226,0,0,0,0,232,52,52,0,52,52,52,0,0,0,0,0,0,0,0,0,0,52,53,242,243,244,245,246,241,52,53,53,52,53,53,242,243,244,245,246,52,53,52,241,242,243,244,245,246,0,305,0,0,305,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,305,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,322,322,322,0,322,0,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,0,1236,0,0,1236,0,287,0,0,287,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,1235,1235,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,1235,7,1235,1236,1237,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,287,0,7,1235,1236,1237,1237,1237,1237,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,287,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,0,1237,7,1235,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,7,1235,1236,1237,0,1573,1574,1573,0,1240,1240,138,1244,1247,1247,1247,1247,1243,1243,1245,1244,1247,0,1247,1247,1247,1247,1247,1243,1243,1243,1243,1241,1247,1241,0,0,0,1245,0,218,1247,1247,0,1247,1243,138,1240,1243,0,0,1243,1247,1247,1243,0,1247,0,1247,1244,1247,1247,1243,0,1241,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1238,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1238,0,0,0,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1238,1239,1242,1243,218,1240,1241,1244,138,1245,0,218,138,218,138,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1238,1242,1242,1240,1244,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,0,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1243,218,1240,1241,1244,138,218,218,218,1240,1240,1240,1241,1241,1241,138,138,138,1242,0,0,0,0,0,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,0,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,0,218,0,1242,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1239,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1242,1247,1242,0,1242,0,0,1238,218,138,1242,1242,0,1242,0,0,0,0,1238,1242,0,1238,1239,1242,1243,218,1240,1241,1244,138,1245,0,0,1242,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,218,1247,1238,1239,1242,1243,218,1240,1241,1244,138,1245,1242,1576,1577,1577,1576,1578,1578,0,0,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,0,0,0,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,1248,0,1246,0,1246,1246,1246,1246,1246,1246,1246,1246,1238,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,1238,1246,1246,1246,1246,1246,1246,1246,1246,1246,1246,0,0,1252,1252,1252,1252,1252,1252,1252,1252,1252,1252,1252,1242,1252,1252,1252,1252,1252,1252,1252,1252,1252,1242,1252,1252,1252,1252,1242,1252,1252,1252,1252,1252,1252,1252,1252,1252,1242,1242,1242,1242,1242,1242,1242,1252,1242,1252,1252,1252,1252,1252,1252,1252,1252,1242],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[1,[-1]]],[[3,[[2,[-1]]]]],[]],[4,5],[4,6],[4,7],[[4,8],9],[4,10],[4,11],[[4,8],12],[4,13],[[4,8],14],[4,11],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[16,16]],[[[17,[-1]],[18,[-1]]],[[17,[-1]]],[[20,[],[[19,[]]]]]],[[[21,[-1]],[18,[-1]]],[[21,[-1]]],[[20,[],[[19,[]]]]]],[[[18,[-1]],[18,[-1]]],[[18,[-1]]],[[20,[],[[19,[]]]]]],[[16,16],22],0,0,[4,23],[4,24],[4,25],[4,26],[4,27],[4,28],[4,29],0,[21,30],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[-2,[[1,[-1]]],[],[[33,[],[[32,[[1,[-1]]]]]]]],[-2,[[34,[-1]]],[],[[33,[],[[32,[[34,[-1]]]]]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[21,17],[21,30],[21,30],[35,22],0,[4,4],[36,36],[37,37],[38,38],[39,39],[40,40],[41,41],[16,16],[42,42],[43,43],[44,44],[45,45],[46,46],[47,47],[[[17,[-1]]],[[17,[-1]]],48],[[[21,[-1]]],[[21,[-1]]],48],[49,49],[[[50,[-1]]],[[50,[-1]]],48],[[[18,[-1]]],[[18,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[21,17],8],[[51,52],4],[[51,52,-1],4,[[54,[52],[[19,[53]]]]]],[[],4],[[],37],[[],39],[[],43],[[],[[17,[-1]]],55],[[],[[21,[-1]]],55],[[],49],[[],[[18,[-1]]],55],[35],[35,47],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[35,57],[[50,[58]]]],[[35,59],[[50,[58]]]],[4,5],[4,13],[4,6],[4,43],[4,43],[[[17,[-1]],[17,[-1]]],-1,[60,61]],[[16,30]],[[16,16]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[4,7],[4,11],[4,11],[[35,3],22],[[35,59,[62,[43]],21],22],[[35,57,63,21],22],[[35,64],22],[[35,21,-1],22,65],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[66,-2],-1,[],[[54,[],[[19,[-1]]]]]],[[4,4],8],[[36,36],8],[[37,37],8],[[38,38],8],[[39,39],8],[[40,40],8],[[41,41],8],[[16,16],8],[[42,42],8],[[43,43],8],[[44,44],8],[[45,45],8],[[47,47],8],[[[17,[-1]],[17,[-1]]],8,67],[[[21,[-1]],[21,[-1]]],8,67],[[49,49],8],[[[50,[-1]],[50,[-1]]],8,67],[[[18,[-1]],[18,[-1]]],8,67],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,0,[[21,30],21],[[50,-1],50,[[68,[50]]]],[4,53],0,[[35,17,43,21],22],[45,69],[[35,17,43,21],22],[[35,70,-1],22,[[68,[42]]]],[[35,71,17,43,21],22],[[44,50,50],50],[[46,50,50],46],[45,45],[[[1,[-1]],72],[[74,[22,73]]],[]],[[[34,[-1]],72],[[74,[22,73]]],[]],[[75,72],76],[[75,72],76],[[4,72],[[74,[22,73]]]],[[4,72],[[74,[22,73]]]],[[36,72],[[74,[22,73]]]],[[37,72],[[74,[22,73]]]],[[38,72],[[74,[22,73]]]],[[39,72],[[74,[22,73]]]],[[40,72],[[74,[22,73]]]],[[41,72],[[74,[22,73]]]],[[16,72],[[74,[22,73]]]],[[42,72],[[74,[22,73]]]],[[43,72],[[74,[22,73]]]],[[44,72],[[74,[22,73]]]],[[45,72],[[74,[22,73]]]],[[46,72],[[74,[22,73]]]],[[47,72],[[74,[22,73]]]],[[[17,[-1]],72],[[74,[22,73]]],77],[[[17,[-1]],72],[[74,[22,73]]],78],[[[21,[-1]],72],[[74,[22,73]]],77],[[49,72],[[74,[22,73]]]],[[[50,[-1]],72],[[74,[22,73]]],77],[[[18,[-1]],72],[[74,[22,73]]],77],[4,6],[4,5],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[79,75],[-1,-1,[]],[80,36],[81,36],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[82,40],[-1,-1,[]],[-1,-1,[]],[83,16],[41,16],[-1,-1,[]],[30,16],[-1,-1,[]],[82,42],[43,42],[40,42],[-1,-1,[]],[[[84,[30]]],43],[[[86,[85,30]]],43],[[[84,[30]]],43],[85,43],[-1,-1,[]],[69,45],[47,45],[30,45],[-1,-1,[]],[[[84,[30]]],46],[30,46],[-1,-1,[]],[[[84,[69]]],46],[[[84,[69]]],46],[[[84,[30]]],46],[69,46],[69,47],[-1,-1,[]],[30,47],[-1,-1,[]],[[[84,[-1]]],[[17,[-1]]],61],[[[22,[-1,-1]]],[[17,[-1]]],61],[-1,-1,[]],[[[21,[58]]],21],[-1,-1,[]],[-1,-1,[]],[[[84,[30]]],50],[[[84,[69]]],50],[46,50],[18,50],[[[84,[-1]]],[[18,[-1]]],[]],[-1,-1,[]],[50,18],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[87,[[62,[16]]]],[88,[[62,[16]]]],[[30,30,30,30],43],[-2,[[34,[-1]]],[],[[89,[],[[19,[-1]]]]]],[[30,30,30],43],[[83,83,83],43],[[30,30,30,30],43],[[83,83,83,30],43],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[90,[[62,[16]]]],0,0,0,[[36,-1],22,91],[[39,-1],22,91],[[44,-1],22,91],[[[50,[-1]],-2],22,92,91],0,0,0,[46,30],[[4,8],14],[4,6],[[4,8],12],[4,13],[[4,8],11],[[4,8],9],[4,10],[4,24],[4,7],[4,5],[[4,8],11],[4,93],[4,[[62,[94]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[21,21],[[62,[21]]]],[[21,21],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[43,[[84,[30]]]],[[[34,[-1]]],[[3,[[95,[89]]]]],[]],[43,[[84,[83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[43,43],[43,22],[45,8],[[21,21],8],0,0,[[35,[99,[[98,[83]]]]],22],[[[1,[-1]],-3],[[1,[-2]]],[],[],[[100,[-1],[[19,[-2]]]],101,102,48]],[[[34,[-1]]],[[34,[-2]]],[],[]],[[50,50],50],[[50,50],50],0,[[16,30]],[[16,16]],[[21,30],21],[[[18,[-1]],-1],[[18,[-1]]],[[103,[],[[19,[]]]],104]],[[40,30],40],0,[[],[[106,[],[[105,[-1]]]]],[77,107]],[[],[[74,[66,108]]]],[[30,30,30,30],43],[30,46],[[-1,-1],[[17,[-1]]],61],[[17,50],21],[[-1,-1],[[50,[-1]]],[]],[[-1,-1],[[18,[-1]]],[]],[[],[[1,[-1]]],[]],[[],[[34,[-1]]],[]],0,0,[4,52],[[41,41],[[62,[109]]]],[[16,16],[[62,[109]]]],[[47,47],[[62,[109]]]],[[-2,-4],[[1,[-3]]],[],[[110,[],[[19,[-1]]]],101],[],[[54,[-1],[[19,[-3]]]],101]],[4,[[62,[94]]]],[4,43],[4,43],[21,17],[4,13],0,0,0,[[[111,[22]]],[[74,[22,75]]]],[[[111,[22]]],[[74,[22,75]]]],[[-2,-4],[[1,[-3]]],[],[[112,[],[[32,[-1]]]],101],[],[[100,[-1],[[19,[-3]]]],101]],[[[106,[],[[105,[-1]]]]],87,[77,107]],[[[106,[],[[105,[-1]]]]],87,[77,107]],[4,43],[4,43],0,[[[2,[-1]]],[[1,[-1]]],[]],[21,50],[21,[[21,[58]]]],[[66,-1],22,[[110,[],[[19,[22]]]],101]],0,[[[106,[],[[105,[-1]]]]],113,[77,107]],[[[106,[],[[105,[-1]]]]],113,[77,107]],0,[[16,16]],[[[17,[-1]],[17,[-1]]],[[18,[-1]]],[[114,[],[[19,[]]]]]],[[[17,[-1]],[18,[-1]]],[[17,[-1]]],[[114,[],[[19,[]]]]]],[[[21,[-1]],[18,[-1]]],[[21,[-1]]],[[114,[],[[19,[]]]]]],[[50,50]],[[[18,[-1]],[18,[-1]]],[[18,[-1]]],[[114,[],[[19,[]]]]]],[[16,16],22],0,0,0,[[[106,[],[[105,[-1]]]]],4,[77,107]],[[[106,[],[[105,[-1]]]]],4,[77,107]],0,[[[106,[],[[105,[-1]]]]],51,[77,107]],[[16,21],[[22,[17,17]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],0,0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[21,21],21],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[106,[],[[105,[-1]]]],-1],22,[77,107]],[4,43],[4,43],[46,30],[[[106,[],[[105,[-1]]]]],[[118,[-1]]],[77,107]],0,0,[-2,[[1,[-1]]],[],[[119,[-1]]]],0,0,0,0,[[[34,[-1]],-2],[[34,[[22,[-2,-1]]]]],[],[92,48,107,102]],[[35,21,-1],22,[[54,[35]]]],[120,39],[-1,37,[[68,[121]]]],[50,21],[[35,18,-1],22,[[54,[35]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[122,[-1]]],8,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[123,21],0,[124,[[3,[125]]]],[123,[[0,[[126,[],[[32,[123]]]]]]]],[127,22],[123,123],[[[71,[-1]]],[[71,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],128],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[124,125],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[129,-1,-2,130,123,131],22,127,[]],[[124,125,-1,-2,130,123,131,21],22,127,[]],[56,22],[56,22],[56,22],[56,22],[[127,70,-1],22,[[68,[42]]]],[128,90],[[123,72],[[74,[22,73]]]],[[[71,[-1]],72],[[74,[22,73]]],77],[[[122,[-1]],72],[[74,[22,73]]],77],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[122,[-1]]],22,[]],[[[122,[-1]]],22,[]],[[[122,[-1]]],8,[]],[[[122,[-1]]],8,[]],[[129,123,-1,17],8,127],0,[[129,-1,50,17,18],132,127],[[124,125,-1,133],132,127],0,[[[122,[-1]],[122,[-2]],-3],22,[],[],[[100,[-2],[[19,[-1]]]]]],0,[[129,123,131,21,-1],134,127],[[124,125,123,131,21,-1],134,127],[132,123],[[[3,[-1]]],[[122,[-1]]],[]],[[129,38,123,131,-1,135,[122,[-2]]],136,127,[]],[[124,125,38,123,131,-1,135,[122,[-2]],21],136,127,[]],[[129,123,-1,119],22,127],[[124,125,123,-1,119],22,127],0,[[129,123,-1],[[62,[[137,[-2,-3,-1]]]]],127,[],[]],[[124,125,123,-1],[[62,[[137,[-2,-3,-1]]]]],127,[],[]],[123,17],[[[122,[-1]],-1],22,[]],[135,[[62,[51]]]],[[[122,[-1]]],[[62,[138]]],[]],0,[[[122,[-1]],138],22,[]],[[[122,[-1]],-2],22,[],54],0,[124,[[50,[45]]]],0,[124,[[50,[45]]]],[124,139],0,0,[124,140],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,[[127,21,-1],22,[[54,[127]]]],[[18,132],123],[[127,18,-1],22,[[54,[127]]]],[[135,51],22],[[128,[98,[83]]],22],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[141,[[98,[83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[141,141],[142,142],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[141,[[98,[83]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[144,[],[[143,[-1]]]],-1],[[50,[58]]],[48,92]],[-1,-2,[],[]],[-1,-2,[],[]],[[[144,[],[[143,[-1]]]],-1,63,21],22,[48,92]],[56,22],[56,22],[[141,141],8],[[142,142],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[141,72],[[74,[22,73]]]],[[142,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[141,-1],22,91],[[142,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,141,[[145,[[98,[83]]]],107,102]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[132,36,36,50],132],[[132,36,36,50],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[133,-1,-2],132,[[68,[45]]],[[68,[45]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[132,21],[132,[[98,[132]]]],[133,133],[132,132],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[133,-1,-2,-3],132,[[68,[45]]],[[68,[45]]],[[54,[133],[[19,[132]]]]]],[[132,46],132],[[],132],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[133,133],8],0,[[133,72],[[74,[22,73]]]],[[132,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[133,-1],133,[[68,[45]]]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[133,133],[133,50],[[133,30],133],[[133,30],133],[133,50],[[133,30],133],[[133,30],133],[[132,-1],132,[[68,[17]]]],[[132,-1],22,[[68,[17]]]],[[50,50],133],[50,132],[[133,30,-1,-2],132,[[54,[133],[[19,[132]]]]],[[54,[133],[[19,[132]]]]]],[[133,-1,-2,-3,-4],132,[[68,[45]]],[[68,[45]]],[[68,[46]]],[[54,[133],[[19,[132]]]]]],[[133,-1,-2,-3,-4,-5],132,[[68,[45]]],[[68,[45]]],[[68,[46]]],[[54,[133],[[19,[132]]]]],[[54,[132,50],[[19,[132]]]]]],[[133,-1,-2,50],50,[[68,[45]]],[[68,[45]]]],[[133,-1],133,[[68,[50]]]],[132,50],[[133,-1,-2,-3],132,[[68,[45]]],[[68,[45]]],[[54,[133],[[19,[50]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[[132,-1],132,[[68,[18]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[133,-1],133,[[68,[45]]]],[[50,[3,[132]]],132],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[146,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[146,-1,133,45,45,46,30,36,[98,[[147,[-2,-3,-1]]]],[98,[125]]],132,127,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[148,148],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[148,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[148,149],[[17,[62,[148]]],148],[148,17],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[149,149],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[149,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[150,[-1,-2,-3]]],[],[],127],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[129,-1,-2,130,123,131],22,127,[]],[[[137,[-1,-2,-3]],-3,-2,130,123,131],22,[],[],127],[[[150,[-1,-2,-3]],-3,-2,130,123,131],22,[],[],127],[56,22],[56,22],[-1,-1,[]],[[[150,[-1,-2,-3]]],[[137,[-1,-2,-3]]],[],[],127],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[98,[[147,[-1,-2,-3]]]],125,123,-3],[[62,[[137,[-1,-2,-3]]]]],[],[],127],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[137,[-1,-2,-3]],123,-3,17],8,[],[],127],[[[150,[-1,-2,-3]],123,-3,17],8,[],[],127],[[129,123,-1,17],8,127],[[129,-1,50,17,18],132,127],[[[137,[-1,-2,-3]],-3,50,18],132,[],[],127],[[[150,[-1,-2,-3]],-3,50,17,18],132,[],[],127],[[[137,[-1,-2,-3]],100],[[137,[-4,-2,-3]]],[],[],127,[]],[[[137,[-1,-2,-3]],123,131,21,-3],134,[],[],127],[[[150,[-1,-2,-3]],123,131,21,-3],134,[],[],127],[[129,123,131,21,-1],134,127],[[17,[95,[129]]],[[137,[-1,-2,-3]]],[],[],127],[[],[[150,[-1,-2,-3]]],[],[],127],[[[137,[-1,-2,-3]],38,123,131,-3,135,[122,[-1]]],136,[],[],127],[[[150,[-1,-2,-3]],38,123,131,-3,135,[122,[-1]]],136,[],[],127],[[129,38,123,131,-1,135,[122,[-2]]],136,127,[]],[[[137,[-1,-2,-3]],123,-3,119],22,[],[],127],[[[150,[-1,-2,-3]],123,-3,119],22,[],[],127],[[129,123,-1,119],22,127],[[[137,[-1,-2,-3]],123,-3],[[62,[[137,[-1,-2,-3]]]]],[],[],127],[[[150,[-1,-2,-3]]],[[137,[-1,-2,-3]]],[],[],127],[[[150,[-1,-2,-3]],123,-3],[[62,[[137,[-1,-2,-3]]]]],[],[],127],[[129,123,-1],[[62,[[137,[-2,-3,-1]]]]],127,[],[]],[[[137,[-1,-2,-3]]],17,[],[],127],[[[150,[-1,-2,-3]],-4],[[150,[-1,-2,-3]]],[],[],127,[[68,[[137,[-1,-2,-3]]]]]],[[[137,[-1,-2,-3]],18],[[137,[-1,-2,-3]]],[],[],127],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[3,[[137,[-1,-2,-3]]]]],[[150,[-1,-2,-3]]],[],[],127],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[127,22],[151,22],[151,151],[70,70],[130,130],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],151],[[],70],[[],130],[151],[151,47],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[[70,70],8],[[130,130],8],[[151,17,43,21],22],[[151,17,43,21],22],[[127,70,-1],22,[[68,[42]]]],[[151,70,-1],22,[[68,[42]]]],[[151,71,17,43,21],22],[[151,72],[[74,[22,73]]]],[[70,72],[[74,[22,73]]]],[[130,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[151,[99,[[98,[83]]]]],22],[[],151],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[127,21,-1],22,[[54,[127]]]],[[151,21,-1],22,[[54,[151]]]],[[127,18,-1],22,[[54,[127]]]],[[151,18,-1],22,[[54,[151]]]],0,0,0,[[[89,[],[[19,[-1]]]],128],22,[]],[[[95,[[89,[],[[19,[-1]]]]]],[152,[[95,[112]]]]],[[152,[[95,[112]]]]],[]],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[153,153],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[[154,59],[[50,[58]]]],[-1,-2,[],[]],[[154,59,[62,[43]],21],22],[56,22],[[153,153],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[153,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[153,-1],22,91],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]]],50,[104,67,55]],0,[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],56],22,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[162,162],[163,163],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[164,[],[[155,[-1]]]],[71,[-1]]],163,[104,67]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]]],56,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[[156,[],[[155,[-1]]]]],165,[104,67,55]],[162,56],[[[156,[],[[155,[-1]]]]],[[22,[56,56]]],[104,67,55]],[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]]],-1,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]]],47,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],0,[[162,162],8],[[163,163],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]],-3,17,43,21],22,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]],-2,17,43,21],22,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]],[71,[-1]],17,43,21],22,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[[162,72],[[74,[22,73]]]],[[163,72],[[74,[22,73]]]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[164,[],[[155,[-1]]]],56,56],[[62,[17]]],[104,67]],[[[156,[],[[155,[-1]]]],-1,-2,-3],22,[104,67,55],160,[[100,[],[[19,[[169,[-1]]]]]]]],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],120],-3,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],0,[[[164,[],[[155,[-1]]]],17],[[62,[162]]],[104,67]],[[[164,[],[[155,[-1]]]]],81,[104,67]],0,[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]],56],[[62,[120]]],[104,67,55]],[[[156,[],[[155,[-1]]]]],56,[104,67,55]],0,[[[168,[],[[155,[-1]],[166,[-2]],[167,[-3]]]],[99,[[98,[83]]]]],22,[104,67],[[164,[],[[155,[-1]]]]],[[156,[],[[155,[-1]]]]]],[[[164,[],[[155,[-1]]]]],50,[104,67]],[[[164,[],[[155,[-1]]]]],30,[104,67]],[[[164,[],[[155,[-1]]]]],30,[104,67]],[-1,[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]]],[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[[156,[],[[155,[-1]]]],170],22,[104,67,55]],[[[164,[],[[155,[-1]]]],50],22,[104,67]],[[[156,[],[[155,[-1]]]]],[[62,[51]]],[104,67,55]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[156,[],[[155,[-1]]]],50,-1,47,171,-2],22,[104,67,55],160],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],-1],22,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[[164,[],[[155,[-1]]]],[71,[-1]]],22,[104,67]],[[[164,[],[[155,[-1]]]]],80,[104,67]],0,[[[71,[-1]]],[[164,[],[[155,[-1]]]]],[104,67]],[120,[[156,[],[[155,[-1]]]]],[104,67,55]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]]],50,[104,67,55]],[172,172],[165,165],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]]],165,[104,67,55]],[[[156,[],[[155,[-1]]]]],[[22,[56,56]]],[104,67,55]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[172,172],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[172,72],[[74,[22,73]]]],[[165,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]],-1,-2,-3],22,[104,67,55],160,[[100,[],[[19,[[169,[-1]]]]]]]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[156,[],[[155,[-1]]]],56],[[62,[120]]],[104,67,55]],[[[156,[],[[155,[-1]]]]],56,[104,67,55]],[[[156,[],[[155,[-1]]]],170],22,[104,67,55]],[[[156,[],[[155,[-1]]]]],[[62,[51]]],[104,67,55]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[156,[],[[155,[-1]]]],50,-1,47,171,-2],22,[104,67,55],160],[120,[[156,[],[[155,[-1]]]]],[104,67,55]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],56],22,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[173,56],22],[173,173],[[[169,[-1]]],[[169,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]]],56,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[173,56],[[],[[169,[-1]]],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[[169,[-1]],[169,[-1]]],8,67],[[173,72],[[74,[22,73]]]],[[[169,[-1]],72],[[74,[22,73]]],77],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],120],-3,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[173,120]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]]],[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[[],173],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[160,[],[[157,[-1]],[158,[-2]],[159,[-3]]]],-1],22,[67,48],[],[[126,[],[[32,[[22,[[161,[56]],-2]]]]]]]],[173,22],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[124,[[3,[125]]]],0,[[[174,[-1,-2]]],[[174,[-1,-2]]],175,168],[176,176],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[119,[62,[176]],21,177],22],[[119,31,[62,[176]]],22],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[124,125],22],[[125,-1],22,[[178,[124]]]],[[125,[98,[-1]]],22,[[178,[124]]]],[[125,[98,[-1]],-2,-3],22,[],[[100,[125,-1]]],[[100,[-1],[[19,[125]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[124,125,-1,-2,130,123,131,21],22,127,[]],[[[174,[-1,-2]],125,-2,-1,130,123,131,21],22,175,168],[56,22],[56,22],[56,22],[[],125],[[176,176],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[119,[[179,[-1]]],[]],[[125,72],[[74,[22,73]]]],[[176,72],[[74,[22,73]]]],[[119,180,[62,[176]]],22],[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,68],[120,[[174,[-1,-2]]],175,168],[-1,-1,[]],[-1,-1,[]],[181,176],[-1,-1,[]],[182,176],[183,176],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[176,-1],22,91],[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,[[68,[45]]]],[[[174,[-1,-2]],81],[[174,[-1,-2]]],175,168],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[124,125,-1,133],132,127],[[[174,[-1,-2]],125,-2,133],132,175,168],[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,[[68,[171]]]],[[124,125,123,131,21,-1],134,127],[-1,[[174,[-2,-3]]],[[68,[[99,[120]]]]],175,168],[-1,125,[[178,[124]]]],[-1,176,[[68,[[99,[120]]]]]],[[124,125,38,123,131,-1,135,[122,[-2]],21],136,127,[]],[[124,125,123,-1,119],22,127],0,[[124,125,123,-1],[[62,[[137,[-2,-3,-1]]]]],127,[],[]],[[119,184,[62,[176]],21,18],22],[[[174,[-1,-2]],185],[[174,[-1,-2]]],175,168],[124,[[50,[45]]]],[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,[[68,[47]]]],[[[174,[-1,-2]]],[[50,[45]]],175,168],[124,[[50,[45]]]],[[[174,[-1,-2]]],139,175,168],[124,139],0,[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,68],[[[174,[-1,-2]]],140,175,168],[124,140],0,0,[[119,186,[62,[176]]],22],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],176],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[174,[-1,-2]],80],[[174,[-1,-2]]],175,168],[[[174,[-1,-2]],-3],[[174,[-1,-2]]],175,168,[[68,[45]]]],0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[119,[62,[176]],21,177],22],[[119,31,[62,[176]]],22],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[119,[[179,[-1]]],[]],[[[179,[-1]],72],[[74,[22,73]]],77],[180,22],0,[[119,180,[62,[176]]],22],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[180,8],[[[95,[119]],-3],[[0,[[119,[-2]]]]],[],[],[[100,[-1],[[19,[-2]]]]]],[[186,56],22],[186,22],[186,22],[[176,-2],[[0,[[119,[-1]]]]],[],[[119,[-1]]]],[[184,187],22],0,[[119,184,[62,[176]],21,18],22],[186,22],[[184,188],22],0,[[119,186,[62,[176]]],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[180,22],[-1,[[62,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[189,189],[[-1,-2],22,[],[]],[-1,-2,[],[]],[[],[[0,[[119,[-1]]]]],[]],[[],189],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[189,189],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[],[[0,[[119,[176]]]]]],[[189,72],[[74,[22,73]]]],[176,[[0,[[119,[-1]]]]],[]],[180,22],[[],[[0,[[119,[-1]]]]],[]],[[],[[0,[[119,[-1]]]]],[]],0,[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[180,8],[-1,-2,[],[]],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[180,22],[-1,[[62,[-2]]],[],[]],0,0,0,[[176,187],[[0,[[119,[-1]]]]],[]],[[184,187],22],[[176,188],[[0,[[119,[-1]]]]],[]],[[184,188],22],0,0,0,0,0,[[176,56],[[0,[[119,[-1]]]]],[]],[[186,56],22],[176,[[0,[[119,[-1]]]]],[]],[186,22],[176,[[0,[[119,[-1]]]]],[]],[186,22],[176,[[0,[[119,[-1]]]]],[]],[186,22],0,0,0,0,0,0,0,0,0,0,0,[[[175,[],[[190,[-1]]]],-1],29,[55,48]],0,[[-1,130,123,191,29,21],22,168],[[191,-1,133,45,45,120,171,[62,[47]],62,81,80,185],132,168],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[140,140],[[-1,-2],22,[],[]],[[140,140],109],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[3,[125]],[98,[-1]],-2,-3,-4],22,[],[[100,[125,-1]]],[[100,[56],[[19,[8]]]]],[[100,[-1],[[19,[125]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[139,-1,[]],[139,-1,[]],[56,22],[56,22],[[140,140],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[139,72],[[74,[22,73]]]],[[140,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[140,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,139,[]],[[],140],[[140,140],[[62,[109]]]],0,[[],140],0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[81,81],[80,80],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[81,81],8],[[80,80],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[81,72],[[74,[22,73]]]],[[80,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[81,-1],22,91],[[80,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[192,[],[[190,[-1]]]],-1],25,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[25,25],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[25,25],8],[[25,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[22,[[196,[],[[193,[-2]],[105,[-3]],[194,[-4]],[195,[-1]]]],[1,[-3]]]]],[],66,[77,107],[55,192]],[[[111,[-1]]],197,[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],87,66,[77,107],[55,192],[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[],66,[77,107],[55,192],[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[[34,[-2]]],66,[77,107],[55,192],[]],0,[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],-3,66,[77,107],[55,192],[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],51,66,[77,107],[55,192],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],-2],[[1,[-2]]],66,[77,107],[55,192],[]],[[[196,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[[118,[-2,-3,35]]],66,[77,107],[55,192],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[121,121],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[[],121],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[121,121],8],[[121,72],[[74,[22,73]]]],[30,121],[83,121],[[[84,[30]]],121],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,[-2,[[1,[-1]]],[],[[100,[[62,[51]]],[[19,[-1]]]]]],[51,[[1,[-1]]],[]],0,[[56,-3],[[1,[-1]]],101,[[110,[],[[19,[22]]]],101],[[54,[[198,[-1]]],[[19,[-2]]]],101]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[199,199],[200,200],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[199,199],8],[[200,200],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[199,72],[[74,[22,73]]]],[[200,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[34,[38]]]],[[],[[34,[-1]]],101],[[],[[34,[-1]]],101],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,[[66,-2],-1,[],[[54,[],[[19,[-1]]]]]],[[],[[74,[66,108]]]],[[66,-1],22,[[110,[],[[19,[22]]]],101]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[201,201],[202,202],[203,203],[204,204],[205,205],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],202],[[],203],[[],204],[[],205],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[[201,201],8],[[202,202],8],[[203,203],8],[[204,204],8],[[205,205],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,[[201,72],[[74,[22,73]]]],[[202,72],[[74,[22,73]]]],[[203,72],[[74,[22,73]]]],[[204,72],[[74,[22,73]]]],[[205,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[202,-1],22,91],[[203,-1],22,91],[[204,-1],22,91],[[205,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[1,[[74,[22,201]]]]],[[68,[[99,[[98,[83]]]]]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[82,30,43],82],[[82,-1],82,[[33,[],[[32,[206]]]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[206,206],[82,82],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[],206],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[206,206],8],[[82,82],8],[[206,72],[[74,[22,73]]]],[[82,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,82,[[68,[16]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],207],[207,8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[208,[[208,[120]]]],[[207,207],207],[[207,207],22],[[207,207],207],[[207,207],22],[207,58],[[207,207],207],[[207,207],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[208,[-1]]],[[208,[-1]]],48],[209,209],[210,210],[207,207],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[208,[-1]],[208,[-1]]],109,211],[[207,207],109],[207,8],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[207,207],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[207,207],8],[207,8],[[],207],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[207,207],207],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[[],207],[[[208,[-1]],[208,[-1]]],8,67],[[209,209],8],[[210,210],8],[[207,207],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[207,-1],22,[[33,[],[[32,[207]]]]]],[[[208,[-1]],72],[[74,[22,73]]],77],[[209,72],[[74,[22,73]]]],[[210,72],[[74,[22,73]]]],[[207,72],[[74,[22,73]]]],[[207,72],[[74,[22,73]]]],[[207,72],[[74,[22,73]]]],[[207,72],[[74,[22,73]]]],[[207,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[62,[207]]]],[58,207],[58,207],[-1,207,[[33,[],[[32,[207]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[208,[-1]],-2],22,92,91],[[207,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[207,207],22],[[207,207],207],[[207,207],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[207,8],[207,8],0,[207,8],[207,207],[[],[[34,[-1]]],101],[[],[[34,[-1]]],101],[[[208,[-1]],[208,[-1]]],[[62,[109]]],212],[[207,207],[[62,[109]]]],[[207,207],22],[[207,207,8],22],[207,8],[[207,207],207],[[207,207],22],[[207,207],207],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[207,207],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[207,207],207],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[213,213],[[-1,-2],22,[],[]],[[213,213],109],[[-1,-2],109,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[213,213],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[213,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[213,-1],22,91],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[213,213],[[62,[109]]]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[214,214],[131,131],[215,215],[216,216],[134,134],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[134,134],109],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],131],[[],134],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[[214,214],8],[[131,131],8],[[215,215],8],[[216,216],8],[[134,134],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[214,72],[[74,[22,73]]]],[[131,72],[[74,[22,73]]]],[[215,72],[[74,[22,73]]]],[[216,72],[[74,[22,73]]]],[[134,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[214,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[131,21],8],[[134,134],[[62,[109]]]],[131,[[62,[17]]]],[[131,17],[[62,[17]]]],[[131,21],[[62,[17]]]],[[131,21],[[62,[17]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,[-1,[[22,[[217,[],[[193,[-2]],[105,[-3]],[194,[-4]],[195,[-1]]]],[1,[-3]]]]],[],66,[77,107],[55,192]],[[[111,[-1]]],197,[]],[[[111,[-1]]],197,[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],87,66,[77,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],87,66,[77,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[],66,[77,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[],66,[77,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[[34,[-2]]],66,[77,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]]],[[34,[-2]]],66,[77,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],-3,66,[77,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],-3,66,[77,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],51,66,[77,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],-2],[[1,[-2]]],66,[77,107],[55,192],[]],[[[217,[],[[193,[-1]],[105,[-2]],[194,[-3]],[195,[-4]]]],218],[[118,[-2,-3,35]]],66,[77,107],[55,192],[]],0,0,0,0,0,0,0,[[[219,[],[[190,[-1]]]],-1],27,[55,48]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[111,[-1]]],[[111,[-1]]],48],[[-1,-2],22,[],[]],[-1,-2,[],[]],[[],[[111,[-1]]],55],0,0,[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],0,[[[111,[-1]],72],76,77],0,[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,[-1,[[111,[-1]]],[]],0,[[-1,56,-4],[[34,[-2]]],92,101,[[110,[],[[19,[220]]]],101],[[54,[[198,[-2]]],[[19,[-3]]]],101]],[[],[[34,[-1]]],[]],[[-1,-3],[[34,[-2]]],92,[],[[112,[],[[32,[-2]]]],101]],[[-1,-2,-5],[[34,[-3]]],92,101,101,[[110,[],[[19,[[22,[-3,-2]]]]]],101],[[177,[-2],[[19,[-4]]]],101,102]],0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[221,221],[[-1,-2],22,[],[]],[-1,-2,[],[]],0,0,[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[-2,[[1,[-1]]],[],[[100,[221],[[19,[-1]]]],107]],[[221,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,0,[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[52,52],[222,222],[223,223],[224,224],[225,225],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,226,[[227,[],[[190,[4]]]]]],[-1,228,[[229,[],[[190,[4]]]]]],[[],230],0,[[],113],[[],226],[[],231],[[],232],[[],233],[[],223],[[],224],[[],234],[[],235],[[],236],[[],237],[[],238],[[],230],[[],228],[[],225],[[],239],[[],240],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[52,52],8],[[222,222],8],[[52,72],[[74,[22,73]]]],[[222,72],[[74,[22,73]]]],[[222,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,113,[[100,[4],[[19,[25]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[23,232],[-1,232,[[100,[4],[[19,[23]]]]]],[-1,-1,[]],[-1,-1,[]],[224,223],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,237,[[100,[4],[[19,[28]]]]]],[-1,-1,[]],[-1,238,[[100,[4],[[19,[26]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[43,225],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[51,52],222],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[51,52,-1],222,[[54,[52],[[19,[53]]]]]],0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[53,53],[241,241],[242,242],[243,243],[244,244],[245,245],[246,246],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[53,53],8],[[241,241],8],[[242,242],8],[[243,243],8],[[244,244],8],[[245,245],8],[[246,246],8],[[53,72],[[74,[22,73]]]],[[241,72],[[74,[22,73]]]],[[242,72],[[74,[22,73]]]],[[243,72],[[74,[22,73]]]],[[244,72],[[74,[22,73]]]],[[245,72],[[74,[22,73]]]],[[246,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[52,53],[[43,43,43],243],[[43,43],244],[[43,43,43],245],[[43,43,43],246],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[43,43],241],[[43,43],242],0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[247,247],247],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[248,249]],[[248,247],248],[[247,247],247],[[247,249]],[[248,249],22],[[248,247],22],[[247,247],22],[[247,249],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[247,250],[247,250],[247,250],[247,90],[247,30],[247,87],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[248,247],[[62,[248]]]],[[247,247],[[62,[247]]]],[[247,58],[[62,[247]]]],[[248,248],[[62,[247]]]],[[247,58],[[62,[247]]]],[[248,247],[[62,[248]]]],[[247,247],[[62,[247]]]],[248,248],[247,247],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[248,248],109],[[247,247],109],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],247],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,[[74,[247]]],251],[[247,249]],[[247,58],247],[[247,58],22],[[247,247],30],[[247,247],87],[[247,30],247],[[247,87],247],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[248,248],247],[248,247],[[248,252],8],[[248,248],8],[[247,249],8],[[247,247],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[247,[[34,[248]]]],[[248,72],[[74,[22,73]]]],[[247,72],[[74,[22,73]]]],[-1,-1,[]],[253,248],[252,248],[-1,-1,[]],[254,247],[-1,-1,[]],[-1,-1,[]],[90,247],[90,247],[90,247],[90,247],[30,247],[87,247],[-1,-2,[],[]],[-1,-2,[],[]],[[248,-1],22,91],[[247,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[247,8],[[247,58],247],[[247,58],22],[[247,30],247],[[247,87],247],[[90,58],247],[[],248],[[248,252],[[62,[109]]]],[[248,248],[[62,[109]]]],[[247,247],[[62,[109]]]],[[247,249],[[62,[109]]]],[[247,247],247],[[248,248],247],[[247,58],247],[[247,247],247],[[247,-1],74,255],[[248,249]],[[248,247],248],[[248,248],247],[[248,252]],[[247,247],247],[[247,249]],[[248,249],22],[[248,247],22],[[247,249],22],[[247,247],22],[247,58],[247,58],[247,58],[-1,247,[[126,[],[[32,[247]]]]]],[-1,247,[[126,[],[[32,[247]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[249,[[74,[247,256]]]],[-1,[[74,[-2]]],[],[]],[30,[[74,[247,257]]]],[87,[[74,[247,257]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[258,258],[259,259],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[258,258],8],[[259,259],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[258,72],[[74,[22,73]]]],[[259,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[259,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[260,[-1,-2,-3]],36],[[260,[-1,-2,-3]]],[],[],127],[[[261,[-1,-2,-3]],36],[[261,[-1,-2,-3]]],[],[],127],[[[262,[-1,-2,-3]],81],[[262,[-1,-2,-3]]],[],263,127],[[[262,[-1,-2,-3]],80],[[262,[-1,-2,-3]]],[],263,127],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-4,[[264,[-1,-2,-3]]],[],227,127,[[68,[[147,[-1,-2,-3]]]]]],0,[-4,[[265,[-4,-1,-2,-3]]],[],[],266,[[267,[-1,-2,-3]]]],[[268,69],268],[[[262,[-1,-2,-3]]],[[262,[-1,-2,-3]]],[],263,127],[[[262,[-1,-2,-3]]],[[262,[-1,-2,-3]]],[],263,127],0,[[-1,8,-3],[[269,[-2,-4,-5]]],[[68,[51]]],[],[[100,[8],[[19,[-2]]]]],[270,175],168],[[[260,[-1,-2,-3]]],[[3,[125]]],[],[],127],[[[271,[-1,-2,-3]]],[[3,[125]]],48,[],127],[[[261,[-1,-2,-3]]],[[3,[125]]],[],[],127],[[[272,[-1,-2,-3]]],[[3,[125]]],[],[],127],[[[264,[-1,-2,-3]]],[[3,[125]]],48,227,127],[[[273,[-1,-2,-3,-4]]],[[3,[125]]],[78,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]]],[[3,[125]]],[],263,127],[[[275,[-1,-2,-3]]],[[3,[125]]],[],[276,263],127],[[[277,[-1,-2,-3]]],[[3,[125]]],[],229,127],[[[278,[-1,-2,-3]]],[[3,[125]]],[],[263,175],168],[[[279,[-1,-2,-3,-4,-5]]],[[3,[125]]],[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[268,43,43],268],[-4,[[260,[-1,-2,-3]]],[],[],127,[[33,[],[[32,[[147,[-1,-2,-3]]]]]]]],0,0,[[[280,[-1]],120,[62,[-1]],-3],[[273,[-1,-2,-4,-5]]],[78,48],[],[[100,[-1],[[19,[-2]]]]],[274,219],168],[-4,[[147,[-1,-2,-3]]],[],[],127,[[281,[-1,-2,-3]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-4,[[262,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[[[282,[-1]],44],[[282,[-1]]],283],[[[284,[-1]],44],[[284,[-1]]],[]],[[],[[260,[-1,-2]]],[],127],[[],[[261,[-1,-2]]],[],127],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],[104,[286,[83]],212],48,287,[[68,[-1]]]],[[[288,[-1,-2,-3]],-4],[[288,[-1,-2,-3]]],[104,[286,[83]],212],48,287,[[68,[-1]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[260,[-1,-2,-3]],125],22,[],[],127],[[[271,[-1,-2,-3]],125],22,48,[],127],[[[261,[-1,-2,-3]],125],22,[],[],127],[[[272,[-1,-2,-3]],125],22,[],[],127],[[[264,[-1,-2,-3]],125],22,48,227,127],[[[262,[-1,-2,-3]],125],22,[],263,127],[[[275,[-1,-2,-3]],125],22,[],[276,263],127],[[[277,[-1,-2,-3]],125],22,[],229,127],[[[289,[-1,-2,-3]],125],22,48,274,168],[[[278,[-1,-2,-3]],125],22,[],[263,175],168],[[[279,[-1,-2,-3,-4,-5]],125],22,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[277,[-1,-2,-3]],290],[[277,[-1,-2,-3]]],[],229,127],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[260,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[],127],[[[271,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,48,[],127],[[[261,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[],127],[[[272,[-1,-2,-3]],125,-3,-4,130,123,131,21],22,[],[],127,[]],[[[264,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,48,227,127],[[[269,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[270,175],168],[[[273,[-1,-2,-3,-4]],125,-4,-3,130,123,131,21],22,[78,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],263,127],[[[275,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[276,263],127],[[[291,[-1,-2,-3,-4]],125,-4,-3,130,123,131,21],22,[48,292,67],[],[293,229,219,263],168],[[[294,[-1]],125,-2,-1,130,123,131,21],22,295,127],[[[296,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,48,[297,175],168],[[[298,[-1]],125,-2,-1,130,123,131,21],22,299,127],[[[277,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],229,127],[[[285,[-1,-2,-3]],125,-4,-3,130,123,131,21],22,[104,[68,[87]],300],48,287,127],[[[301,[-1,-2,-3,-4]],125,-4,-3,130,123,131,21],22,160,[],302,168],[[[289,[-1,-2,-3]],125,-3,-2,123,131,[62,[303]],21],22,48,274,168],[[[289,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,48,274,168],[[[304,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[305,175],168],[[[278,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[263,175],168],[[[288,[-1,-2,-3]],125,-4,-3,130,123,131,21],22,[104,[68,[87]],300],48,287,127],[[[306,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,-3,-2,130,123,131,21],22,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[307,[-1,-2]],125,-3,-4,130,123,131,21],22,[],[[308,[-1]]],309,[]],[[[282,[-1]],125,-2,-1,130,123,131,21],22,283,154],[[310,125,-1,-2,130,123,131,21],22,127,[]],[[[284,[-1]],125,-2,-3,130,123,131,21],22,[48,92],[[144,[],[[143,[-1]]]]],[]],[[[265,[-4,-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],[],266,[[267,[-1,-2,-3]]]],[[268,125,35,-1,130,123,131,21],22,[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[284,[-1]],63],[[284,[-1]]],[]],[[310,72],[[74,[22,73]]]],[[[284,[-1]],72],[[74,[22,73]]],77],[[[265,[-4,-1,-2,-3]],72],[[74,[22,73]]],77,77,[77,266],[77,[267,[-1,-2,-3]]]],[[268,72],[[74,[22,73]]]],[[],[[1,[-1]]],[]],[[],[[1,[-1]]],[]],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,68],[[[273,[-1,-2,-3,-4]]],[[273,[-1,-2,-3,-4]]],[78,48],[],[274,219],168],[[[291,[-1,-2,-3,-4]],-5],[[291,[-1,-2,-3,-4]]],[292,67],[],[293,229,219,263],168,68],[[[296,[-1,-2,-3]],-4],[[296,[-1,-2,-3]]],48,297,168,68],[[[301,[-1,-2,-3,-4]],-5],[[301,[-1,-2,-3,-4]]],160,[],302,168,68],[[[289,[-1,-2,-3]]],[[289,[-1,-2,-3]]],48,274,168],[[[304,[-1,-2,-3]],-4],[[304,[-1,-2,-3]]],[],305,168,68],[[[278,[-1,-2,-3]],-4],[[278,[-1,-2,-3]]],[],[263,175],168,68],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,[[282,[-2]]],[[68,[311]]],283],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[278,[-1,-2,-3]],-4],[[278,[-1,-2,-3]]],[],[263,175],168,[[68,[47]]]],[[[291,[-1,-2,-3,-4]],312],[[291,[-1,-2,-3,-4]]],[292,67],[],[293,229,219,263],168],[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[45]]]],[[[261,[-1,-2,-3]],-4],[[261,[-1,-2,-3]]],[],[],127,[[68,[45]]]],[[[264,[-1,-2,-3]],-4],[[264,[-1,-2,-3]]],[],227,127,[[68,[45]]]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,[[68,[45]]]],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,[[68,[45]]]],[[[294,[-1]],-2],[[294,[-1]]],295,[[68,[45]]]],[[[277,[-1,-2,-3]],-4],[[277,[-1,-2,-3]]],[],229,127,[[68,[45]]]],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],[104,[286,[83]],212],48,287,[[68,[47]]]],[[[288,[-1,-2,-3]],-4],[[288,[-1,-2,-3]]],[104,[286,[83]],212],48,287,[[68,[45]]]],[[[307,[-1,-2]],-3],[[307,[-1,-2]]],[],[[308,[-1]]],[[68,[45]]]],[[[282,[-1]],-2],[[282,[-1]]],283,[[68,[45]]]],[[[284,[-1]],-2],[[284,[-1]]],[],[[68,[45]]]],[[[265,[-4,-1,-2,-3]],-5],[[265,[-4,-1,-2,-3]]],[],[],266,[[267,[-1,-2,-3]]],[[68,[45]]]],[[[301,[-1,-2,-3,-4]]],[[301,[-5,-2,-3,-4]]],160,[],302,168,160],[-1,[[298,[-2]]],[[68,[47]]],299],[-1,[[298,[-2]]],[[68,[47]]],299],[-1,310,[[68,[45]]]],[[[269,[-1,-2,-3]],313],[[269,[-1,-2,-3]]],[],[270,175],168],[[[273,[-1,-2,-3,-4]],314],[[273,[-1,-2,-3,-4]]],[78,48],[],[274,219],168],[[[289,[-1,-2,-3]],314],[[289,[-1,-2,-3]]],48,274,168],[[[262,[-1,-2,-3]],182],[[262,[-1,-2,-3]]],[],263,127],[[[277,[-1,-2,-3]],181],[[277,[-1,-2,-3]]],[],229,127],[[[289,[-1,-2,-3]],183],[[289,[-1,-2,-3]]],48,274,168],0,[-2,[[284,[-1]]],[],[[68,[-1]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-5,[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[33,[],[[32,[[22,[-1,[147,[-2,-3,-4]]]]]]]]]],0,[[[260,[-1,-2,-3]],125,-3,133],132,[],[],127],[[[271,[-1,-2,-3]],125,-3,133],132,48,[],127],[[[261,[-1,-2,-3]],125,-3,133],132,[],[],127],[[[272,[-1,-2,-3]],125,-3,133],132,[],[],127],[[[264,[-1,-2,-3]],125,-3,133],132,48,227,127],[[[269,[-1,-2,-3]],125,-3,133],132,[],[270,175],168],[[[273,[-1,-2,-3,-4]],125,-4,133],132,[78,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]],125,-3,133],132,[],263,127],[[[275,[-1,-2,-3]],125,-3,133],132,[],[276,263],127],[[[291,[-1,-2,-3,-4]],125,-4,133],132,[48,292,67],[],[293,229,219,263],168],[[[294,[-1]],125,-2,133],132,295,127],[[[296,[-1,-2,-3]],125,-3,133],132,48,[297,175],168],[[[298,[-1]],125,-2,133],132,299,127],[[[277,[-1,-2,-3]],125,-3,133],132,[],229,127],[[[285,[-1,-2,-3]],125,-4,133],132,[104,[68,[87]],300],48,287,127],[[[301,[-1,-2,-3,-4]],125,-4,133],132,160,[],302,168],[[[289,[-1,-2,-3]],125,-3,133],132,48,274,168],[[[289,[-1,-2,-3]],125,-3,133,[62,[303]]],132,48,274,168],[[[304,[-1,-2,-3]],125,-3,133],132,[],[305,175],168],[[[278,[-1,-2,-3]],125,-3,133],132,[],[263,175],168],[[[288,[-1,-2,-3]],125,-4,133],132,[104,[68,[87]],300],48,287,127],[[[306,[-1,-2,-3]],125,-3,133],132,[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,-3,133],132,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[307,[-1,-2]],125,-3,133],132,[],[[308,[-1]]],309],[[[282,[-1]],125,-2,133],132,283,154],[[310,125,-1,133],132,127],[[[284,[-1]],125,-2,133],132,[48,92],[[144,[],[[143,[-1]]]]]],[[[265,[-4,-1,-2,-3]],125,-3,133],132,[],[],266,[[267,[-1,-2,-3]]]],[[268,125,35,133],132],[[-1,-6],[[279,[-2,-3,-4,-1,-5]]],92,[],[],[],[[68,[[147,[-2,-3,-4]]]]],[[100,[-1],[[19,[-5]]]]]],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[78,48],[],[274,219],168,[[68,[171]]]],[[[289,[-1,-2,-3]],-4],[[289,[-1,-2,-3]]],48,274,168,[[68,[171]]]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,[[68,[47]]]],[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[47]]]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,[[68,[47]]]],[-4,[[271,[-1,-2,-3]]],[],[],127,[[68,[[147,[-1,-2,-3]]]]]],[[[260,[-1,-2,-3]],125,123,131,21,-3],134,[],[],127],[[[271,[-1,-2,-3]],125,123,131,21,-3],134,48,[],127],[[[261,[-1,-2,-3]],125,123,131,21,-3],134,[],[],127],[[[272,[-1,-2,-3]],125,123,131,21,-3],134,[],[],127],[[[264,[-1,-2,-3]],125,123,131,21,-3],134,48,227,127],[[[269,[-1,-2,-3]],125,123,131,21,-3],134,[],[270,175],168],[[[273,[-1,-2,-3,-4]],125,123,131,21,-4],134,[78,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]],125,123,131,21,-3],134,[],263,127],[[[275,[-1,-2,-3]],125,123,131,21,-3],134,[],[276,263],127],[[[291,[-1,-2,-3,-4]],125,123,131,21,-4],134,[48,292,67],[],[293,229,219,263],168],[[[296,[-1,-2,-3]],125,123,131,21,-3],134,48,[297,175],168],[[[277,[-1,-2,-3]],125,123,131,21,-3],134,[],229,127],[[[285,[-1,-2,-3]],125,123,131,21,-4],134,[104,[68,[87]],300],48,287,127],[[[301,[-1,-2,-3,-4]],125,123,131,21,-4],134,160,[],302,168],[[[289,[-1,-2,-3]],125,123,131,21,-3],134,48,274,168],[[[304,[-1,-2,-3]],125,123,131,21,-3],134,[],[305,175],168],[[[278,[-1,-2,-3]],125,123,131,21,-3],134,[],[263,175],168],[[[288,[-1,-2,-3]],125,123,131,21,-4],134,[104,[68,[87]],300],48,287,127],[[[306,[-1,-2,-3]],125,123,131,21,-3],134,[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,123,131,21,-3],134,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[307,[-1,-2]],125,123,131,21,-3],134,[],[[308,[-1]]],309],[[[265,[-4,-1,-2,-3]],125,123,131,21,-3],134,[],[],266,[[267,[-1,-2,-3]]]],[[],[[260,[-1,-2,-3]]],[],[],127],[-4,[[271,[-1,-2,-3]]],[],[],[],[[68,[[147,[-1,-2,-3]]]]]],[[],[[261,[-1,-2,-3]]],[],[],127],[[-1,-4],[[272,[-2,-1,-3]]],[],[],127,[[68,[[147,[-2,-1,-3]]]]]],[-4,[[264,[-1,-2,-3]]],[],227,127,[[68,[[147,[-1,-2,-3]]]]]],[[-1,8,-3],[[269,[-2,-4,-5]]],[[68,[51]]],[],[[100,[8],[[19,[-2]]]]],[270,175],168],[[[280,[-1]],120,[62,[-1]],-3],[[273,[-1,-2,-4,-5]]],[78,48],[],[[100,[-1],[[19,[-2]]]]],[274,219],168],[-4,[[262,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[[[316,[-1]],-5],[[275,[-2,-3,-4]]],[],[],[276,263],127,[[100,[317,-1,8],[[19,[[318,[-2,-3,-4]]]]]]]],[[-2,[62,[-1]],-4],[[291,[-1,-3,-5,-6]]],[292,67],[[68,[[99,[[98,[-1]]]]]]],[],[[100,[-1],[[19,[-3]]]]],[293,229,219,263],168],[[[319,[30]],30],[[294,[-1]]],295],[[-1,-2,[62,[-2]],-4],[[296,[-3,-5,-6]]],[[68,[51]]],[320,104],48,[[54,[-2],[[19,[-3]]]]],297,168],[-4,[[277,[-1,-2,-3]]],[],229,127,[[68,[[147,[-1,-2,-3]]]]]],[[[319,[-1]],-1,-3],[[285,[-1,-2,-4]]],[104,[286,[83]],212],48,[[100,[-1],[[19,[-2]]]]],287],[[[321,[-1]]],[[301,[173,-2,-3,-1]]],168,[],302],[[120,120],[[289,[-1,-2,-3]]],48,274,168],[[-1,8,-3],[[304,[-2,-4,-5]]],[[68,[[62,[51]]]]],[],[[100,[8],[[19,[-2]]]]],305,168],[[-4,-5,322],[[278,[-1,-2,-3]]],[],[263,175],168,[[68,[[147,[-1,-2,-3]]]]],[[68,[[99,[120]]]]]],[[[319,[-1]],-1,-3],[[288,[-1,-2,-4]]],[104,[286,[83]],212],48,[[100,[-1],[[19,[-2]]]]],287],[-4,[[306,[-1,-2,-3]]],[],[],127,[[100,[50],[[19,[[147,[-1,-2,-3]]]]]]]],[[-1,-6],[[279,[-2,-3,-4,-1,-5]]],92,[],[],[],[[68,[[147,[-2,-3,-4]]]]],[[100,[-1],[[19,[-5]]]]]],[-2,[[307,[-1,-2]]],[],[[308,[-1]]]],[-1,[[282,[-2]]],[[68,[59]]],283],[[-1,-2],310,[[68,[45]]],[[68,[45]]]],[-2,[[284,[-1]]],[],[[68,[-1]]]],[-4,[[265,[-4,-1,-2,-3]]],[],[],266,[[267,[-1,-2,-3]]]],[323,268],[[[301,[-1,-2,-3,-4]],-5],[[301,[-1,-2,-3,-4]]],160,[],302,168,[[100,[170],[[19,[-2]]]]]],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,[[100,[317],[[19,[-1]]]]]],[[[273,[-1,-2,-3,-4]],-2],[[273,[-1,-2,-3,-4]]],[78,48],[],[274,219],168],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,[[100,[324],[[19,[-1]]]]]],[[[260,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],127],[[[271,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,48,[],127],[[[261,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],127],[[[272,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],127],[[[264,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,48,227,127],[[[269,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[270,175],168],[[[273,[-1,-2,-3,-4]],125,38,123,131,-4,135,[122,[-2]],21],136,[78,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],263,127],[[[275,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[276,263],127],[[[291,[-1,-2,-3,-4]],125,38,123,131,-4,135,[122,[-2]],21],136,[48,292,67],[],[293,229,219,263],168],[[[296,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,48,[297,175],168],[[[277,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],229,127],[[[285,[-1,-2,-3]],125,38,123,131,-4,135,[122,[-2]],21],136,[104,[68,[87]],300],48,287,127],[[[301,[-1,-2,-3,-4]],125,38,123,131,-4,135,[122,[-2]],21],136,160,[],302,168],[[[289,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,48,274,168],[[[304,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[305,175],168],[[[278,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[263,175],168],[[[288,[-1,-2,-3]],125,38,123,131,-4,135,[122,[-2]],21],136,[104,[68,[87]],300],48,287,127],[[[306,[-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[307,[-1,-2]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[[308,[-1]]],309],[[[265,[-4,-1,-2,-3]],125,38,123,131,-3,135,[122,[-1]],21],136,[],[],266,[[267,[-1,-2,-3]]]],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[78,48],[],[274,219],168,[[100,[51],[[19,[-2]]]]]],[[[289,[-1,-2,-3]],-4],[[289,[-1,-2,-3]]],48,274,168,[[100,[51],[[19,[-1]]]]]],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[78,48],[],[274,219],168,[[100,[-1],[[19,[-2]]]]]],[[[289,[-1,-2,-3]],-4],[[289,[-1,-2,-3]]],48,274,168,[[100,[51],[[19,[-1]]]]]],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[264,[-1,-2,-3]],-1],[[264,[-1,-2,-3]]],[],227,127],[[[264,[-1,-2,-3]],[62,[-1]]],[[264,[-1,-2,-3]]],[],227,127],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[285,[-1,-2,-3]],-2],[[285,[-1,-2,-3]]],[104,[286,[83]],212],48,287],[[[288,[-1,-2,-3]],-2],[[288,[-1,-2,-3]]],[104,[286,[83]],212],48,287],[[[275,[-1,-2,-3]],-4,-5],[[275,[-1,-2,-3]]],[],[276,263],127,[[68,[47]]],[[100,[325],[[19,[-1]]]]]],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[271,[-1,-2,-3]],-1],[[271,[-1,-2,-3]]],[],[],[]],[[[277,[-1,-2,-3]],-4],[[277,[-1,-2,-3]]],[],229,127,[[100,[326],[[19,[-1]]]]]],[[[289,[-1,-2,-3]],-1],[[289,[-1,-2,-3]]],48,274,168],[[[260,[-1,-2,-3]],125,123,-3,119],22,[],[],127],[[[271,[-1,-2,-3]],125,123,-3,119],22,48,[],127],[[[261,[-1,-2,-3]],125,123,-3,119],22,[],[],127],[[[272,[-1,-2,-3]],125,123,-3,119],22,[],[],127],[[[264,[-1,-2,-3]],125,123,-3,119],22,48,227,127],[[[262,[-1,-2,-3]],125,123,-3,119],22,[],263,127],[[[275,[-1,-2,-3]],125,123,-3,119],22,[],[276,263],127],[[[277,[-1,-2,-3]],125,123,-3,119],22,[],229,127],[[[289,[-1,-2,-3]],125,123,-3,119],22,48,274,168],[[[281,[],[[327,[-1]],[328,[-2]]]],-1,119],22,55,[]],[[[306,[-1,-2,-3]],125,123,-3,119],22,[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,123,-3,119],22,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],0,[[[260,[-1,-2,-3]],125,123,-3],[[62,[[137,[-1,-2,-3]]]]],[],[],127],[[[271,[-1,-2,-3]],125,123,-3],[[62,[[137,[-1,-2,-3]]]]],48,[],127],[[[261,[-1,-2,-3]],125,123,-3],[[62,[[137,[-1,-2,-3]]]]],[],[],127],[[[272,[-1,-2,-3]],125,123,-3],[[62,[[137,[-1,-4,-3]]]]],[],[],127,[]],[[[264,[-1,-2,-3]],125,123,-3],[[62,[[137,[-1,-2,-3]]]]],48,227,127],[[[273,[-1,-2,-3,-4]],125,123,-4],[[62,[[137,[-2,-3,-4]]]]],[78,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]],125,123,-3],[[62,[[137,[-1,-2,-3]]]]],[],263,127],[[[275,[-1,-2,-3]],125,123,-3],[[62,[[137,[-1,-2,-3]]]]],[],[276,263],127],[[[291,[-1,-2,-3,-4]],125,123,-4],[[62,[[137,[-2,-3,-4]]]]],[48,292,67],[],[293,229,219,263],168],[[[277,[-1,-2,-3]],125,123,-3],[[62,[[137,[-1,-2,-3]]]]],[],229,127],[[[278,[-1,-2,-3]],125,123,-3],[[62,[[137,[-1,-2,-3]]]]],[],[263,175],168],[[[306,[-1,-2,-3]],125,123,-3],[[62,[[137,[-1,-2,-3]]]]],[],[],127],[[[279,[-1,-2,-3,-4,-5]],125,123,-3],[[62,[[137,[-1,-2,-3]]]]],[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[46]]]],[[[261,[-1,-2,-3]],-4],[[261,[-1,-2,-3]]],[],[],127,[[68,[46]]]],[[[264,[-1,-2,-3]],-4],[[264,[-1,-2,-3]]],[],227,127,[[68,[46]]]],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[78,48],[],[274,219],168,[[68,[46]]]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,[[68,[46]]]],[[[291,[-1,-2,-3,-4]],-5],[[291,[-1,-2,-3,-4]]],[292,67],[],[293,229,219,263],168,[[68,[46]]]],[[[301,[-1,-2,-3,-4]],-5],[[301,[-1,-2,-3,-4]]],160,[],302,168,[[68,[46]]]],[[[289,[-1,-2,-3]],-4],[[289,[-1,-2,-3]]],48,274,168,[[68,[46]]]],[[[278,[-1,-2,-3]],-4],[[278,[-1,-2,-3]]],[],[263,175],168,[[68,[47]]]],0,[[[289,[-1,-2,-3]]],[[289,[-1,-2,-3]]],48,274,168],0,[[-2,[62,[-1]],-4],[[291,[-1,-3,-5,-6]]],[292,67],[[68,[[99,[[98,[-1]]]]]]],[],[[100,[-1],[[19,[-3]]]]],[293,229,219,263],168],[[[291,[-1,-2,-3,-4]],-5],[[291,[-1,-2,-3,-4]]],[292,67],[],[293,229,219,263],168,[[68,[51]]]],0,[[[319,[30]],30],[[294,[-1]]],295],[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[[147,[-1,-2,-3]]]]]],[[[261,[-1,-2,-3]],-4],[[261,[-1,-2,-3]]],[],[],127,[[68,[[147,[-1,-2,-3]]]]]],0,0,[[-1,-2,[62,[-2]],-4],[[296,[-3,-5,-6]]],[[68,[51]]],[104,320],48,[[54,[-2],[[19,[-3]]]]],297,168],[-4,[[306,[-1,-2,-3]]],[],[],127,[[100,[50],[[19,[[147,[-1,-2,-3]]]]]]]],[-4,[[261,[-1,-2,-3]]],[],[],127,[[33,[],[[32,[[147,[-1,-2,-3]]]]]]]],0,0,0,[-4,[[277,[-1,-2,-3]]],[],229,127,[[68,[[147,[-1,-2,-3]]]]]],0,[-2,[[307,[-1,-2]]],[],[[308,[-1]]]],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],[104,[286,[83]],212],48,287,[[68,[-1]]]],[[[288,[-1,-2,-3]],-4],[[288,[-1,-2,-3]]],[104,[286,[83]],212],48,287,[[68,[-1]]]],[[[260,[-1,-2,-3]]],[[50,[45]]],[],[],127],[[[271,[-1,-2,-3]]],[[50,[45]]],48,[],127],[[[261,[-1,-2,-3]]],[[50,[45]]],[],[],127],[[[272,[-1,-2,-3]]],[[50,[45]]],[],[],127],[[[264,[-1,-2,-3]]],[[50,[45]]],48,227,127],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,[[68,[47]]]],[[[269,[-1,-2,-3]]],[[50,[45]]],[],[270,175],168],[[[273,[-1,-2,-3,-4]],30],[[273,[-1,-2,-3,-4]]],[78,48],[],[274,219],168],[[[273,[-1,-2,-3,-4]]],[[50,[45]]],[78,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]]],[[50,[45]]],[],263,127],[[[275,[-1,-2,-3]]],[[50,[45]]],[],[276,263],127],[[[291,[-1,-2,-3,-4]]],[[50,[45]]],[48,292,67],[],[293,229,219,263],168],[[[294,[-1]]],[[50,[45]]],295],[[[296,[-1,-2,-3]]],[[50,[45]]],48,[297,175],168],[[[296,[-1,-2,-3]],-4],[[296,[-1,-2,-3]]],48,297,168,[[68,[47]]]],[[[298,[-1]]],[[50,[45]]],299],[[[277,[-1,-2,-3]]],[[50,[45]]],[],229,127],[[[285,[-1,-2,-3]]],[[50,[45]]],[104,[68,[87]],300],48,287],[[[301,[-1,-2,-3,-4]]],[[50,[45]]],160,[],302,168],[[[289,[-1,-2,-3]],-4],[[289,[-1,-2,-3]]],48,274,168,[[68,[47]]]],[[[289,[-1,-2,-3]]],[[50,[45]]],48,274,168],[[[304,[-1,-2,-3]],-4],[[304,[-1,-2,-3]]],[],305,168,[[68,[47]]]],[[[304,[-1,-2,-3]]],[[50,[45]]],[],[305,175],168],[[[278,[-1,-2,-3]],-4],[[278,[-1,-2,-3]]],[],[263,175],168,[[68,[47]]]],[[[278,[-1,-2,-3]]],[[50,[45]]],[],[263,175],168],[[[288,[-1,-2,-3]]],[[50,[45]]],[104,[68,[87]],300],48,287],[[[306,[-1,-2,-3]]],[[50,[45]]],[],[],127],[[[279,[-1,-2,-3,-4,-5]]],[[50,[45]]],[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[307,[-1,-2]]],[[50,[45]]],[],[[308,[-1]]]],[[[282,[-1]]],[[50,[45]]],283],[310,[[50,[45]]]],[[[284,[-1]]],[[50,[45]]],[48,92]],[[[265,[-4,-1,-2,-3]]],[[50,[45]]],[],[],266,[[267,[-1,-2,-3]]]],[268,[[50,[45]]]],[[[279,[-1,-2,-3,-4,-5]]],[[50,[45]]],[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],0,[[[319,[-1]],-1,-3],[[285,[-1,-2,-4]]],[104,[286,[83]],212],48,[[100,[-1],[[19,[-2]]]]],287],[[[278,[-1,-2,-3]],8],[[278,[-1,-2,-3]]],[],[263,175],168],0,[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[47]]]],[[[261,[-1,-2,-3]],-4],[[261,[-1,-2,-3]]],[],[],127,[[68,[47]]]],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,[[68,[47]]]],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,[[68,[47]]]],[[[296,[-1,-2,-3]],-4],[[296,[-1,-2,-3]]],48,297,168,[[68,[47]]]],[[[304,[-1,-2,-3]],-4],[[304,[-1,-2,-3]]],[],305,168,[[68,[47]]]],[[[271,[-1,-2,-3]]],139,48,[],127],[[[272,[-1,-2,-3]]],139,[],[],127],[[[264,[-1,-2,-3]]],139,48,227,127],[[[269,[-1,-2,-3]]],139,[],[270,175],168],[[[273,[-1,-2,-3,-4]]],139,[78,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]]],139,[],263,127],[[[275,[-1,-2,-3]]],139,[],[276,263],127],[[[291,[-1,-2,-3,-4]]],139,[48,292,67],[],[293,229,219,263],168],[[[296,[-1,-2,-3]]],139,48,[297,175],168],[[[277,[-1,-2,-3]]],139,[],229,127],[[[285,[-1,-2,-3]]],139,[104,[68,[87]],300],48,287],[[[301,[-1,-2,-3,-4]]],139,160,[],302,168],[[[289,[-1,-2,-3]]],139,48,274,168],[[[304,[-1,-2,-3]]],139,[],[305,175],168],[[[278,[-1,-2,-3]]],139,[],[263,175],168],[[[288,[-1,-2,-3]]],139,[104,[68,[87]],300],48,287],[[[306,[-1,-2,-3]]],139,[],[],127],[[[279,[-1,-2,-3,-4,-5]]],139,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[307,[-1,-2]]],139,[],[[308,[-1]]]],[[[265,[-4,-1,-2,-3]]],139,[],[],266,[[267,[-1,-2,-3]]]],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],[104,[286,[83]],212],48,287,[[68,[-1]]]],[[[288,[-1,-2,-3]],-1],[[288,[-1,-2,-3]]],[104,[286,[83]],212],48,287],[[[264,[-1,-2,-3]],-4],[[264,[-1,-2,-3]]],[],227,127,68],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,68],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[78,48],[],[274,219],168,[68,68,48]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,68],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,68],[[[291,[-1,-2,-3,-4]],-5],[[291,[-1,-2,-3,-4]]],[292,67],[],[293,229,219,263],168,68],[[[294,[-1]],-2],[[294,[-1]]],295,68],[[[296,[-1,-2,-3]],-4],[[296,[-1,-2,-3]]],48,297,168,68],[[[298,[-1]],-2],[[298,[-1]]],299,68],[[[277,[-1,-2,-3]],-4],[[277,[-1,-2,-3]]],[],229,127,68],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],[104,[286,[83]],212],48,287,68],[[[301,[-1,-2,-3,-4]],-5],[[301,[-1,-2,-3,-4]]],160,[],302,168,68],[[[289,[-1,-2,-3]],-4],[[289,[-1,-2,-3]]],48,274,168,68],[[[304,[-1,-2,-3]],-4],[[304,[-1,-2,-3]]],[],305,168,68],[[[278,[-1,-2,-3]],-4],[[278,[-1,-2,-3]]],[],[263,175],168,68],[[[288,[-1,-2,-3]],-4],[[288,[-1,-2,-3]]],[104,[286,[83]],212],48,287,68],[[[282,[-1]],-2],[[282,[-1]]],283,68],0,[-1,[[282,[-2]]],[[68,[59]]],283],[[[271,[-1,-2,-3]]],140,48,[],127],[[[272,[-1,-2,-3]]],140,[],[],127],[[[264,[-1,-2,-3]]],140,48,227,127],[[[269,[-1,-2,-3]]],140,[],[270,175],168],[[[273,[-1,-2,-3,-4]]],140,[78,48],48,[263,274,229,219],168],[[[262,[-1,-2,-3]]],140,[],263,127],[[[275,[-1,-2,-3]]],140,[],[276,263],127],[[[291,[-1,-2,-3,-4]]],140,[48,292,67],[],[293,229,219,263],168],[[[296,[-1,-2,-3]]],140,48,[297,175],168],[[[277,[-1,-2,-3]]],140,[],229,127],[[[285,[-1,-2,-3]]],140,[104,[68,[87]],300],48,287],[[[301,[-1,-2,-3,-4]]],140,160,[],302,168],[[[289,[-1,-2,-3]]],140,48,274,168],[[[304,[-1,-2,-3]]],140,[],[305,175],168],[[[278,[-1,-2,-3]]],140,[],[263,175],168],[[[288,[-1,-2,-3]]],140,[104,[68,[87]],300],48,287],[[[306,[-1,-2,-3]]],140,[],[],127],[[[279,[-1,-2,-3,-4,-5]]],140,[],[],127,92,[[68,[[147,[-1,-2,-3]]]]]],[[[307,[-1,-2]]],140,[],[[308,[-1]]]],[[[265,[-4,-1,-2,-3]]],140,[],[],266,[[267,[-1,-2,-3]]]],0,[-1,[[174,[-2,-3]]],292,175,168],[[[304,[-1,-2,-3]],81],[[304,[-1,-2,-3]]],[],305,168],0,[[[321,[-1]]],[[301,[173,-2,-3,-1]]],168,48,302],0,[[120,120],[[289,[-1,-2,-3]]],48,274,168],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[78,48],[],[274,219],168,[68,48]],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,[[68,[171]]]],[[[291,[-1,-2,-3,-4]],-5],[[291,[-1,-2,-3,-4]]],[292,67],[],[293,229,219,263],168,[[68,[171]]]],[[[296,[-1,-2,-3]],-4],[[296,[-1,-2,-3]]],48,297,168,[[68,[171]]]],[[[304,[-1,-2,-3]],-4],[[304,[-1,-2,-3]]],[],305,168,[[68,[171]]]],[[[269,[-1,-2,-3]],185],[[269,[-1,-2,-3]]],[],[270,175],168],[[[291,[-1,-2,-3,-4]],185],[[291,[-1,-2,-3,-4]]],[292,67],[],[293,229,219,263],168],[[[296,[-1,-2,-3]],185],[[296,[-1,-2,-3]]],48,297,168],[[[304,[-1,-2,-3]],185],[[304,[-1,-2,-3]]],[],305,168],[[[278,[-1,-2,-3]],185],[[278,[-1,-2,-3]]],[],[263,175],168],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,[[68,[47]]]],[[[291,[-1,-2,-3,-4]],-5],[[291,[-1,-2,-3,-4]]],[292,67],[],[293,229,219,263],168,[[68,[47]]]],[[[296,[-1,-2,-3]],-4],[[296,[-1,-2,-3]]],48,297,168,[[68,[47]]]],[[[304,[-1,-2,-3]],-4],[[304,[-1,-2,-3]]],[],305,168,[[68,[47]]]],0,[[-1,-4],[[272,[-2,-1,-3]]],[],[],127,[[68,[[147,[-2,-1,-3]]]]]],0,[[-1,8,-3],[[304,[-2,-4,-5]]],[[68,[[62,[51]]]]],[],[[100,[8],[[19,[-2]]]]],305,168],0,[[-4,-5,322],[[278,[-1,-2,-3]]],[],[263,175],168,[[68,[[147,[-1,-2,-3]]]]],292],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[281,[],[[327,[-1]],[328,[-2]]]],-1,-2],[[62,[-3]]],55,[],[]],[-1,[[298,[-2]]],[[68,[47]]],299],[-1,[[298,[-2]]],[[68,[47]]],299],0,[[[319,[-1]],-1,-3],[[288,[-1,-2,-4]]],[104,[286,[83]],212],48,[[100,[-1],[[19,[-2]]]]],287],[-1,310,[[68,[45]]]],[[[281,[],[[327,[-1]],[328,[-2]]]],-1],[[147,[-2,-3,-4]]],55,[],[],[]],[[[260,[-1,-2,-3]],-4],[[260,[-1,-2,-3]]],[],[],127,[[68,[45]]]],[[[261,[-1,-2,-3]],-4],[[261,[-1,-2,-3]]],[],[],127,[[68,[45]]]],[[[264,[-1,-2,-3]],-4],[[264,[-1,-2,-3]]],[],227,127,[[68,[45]]]],[[[269,[-1,-2,-3]],-4],[[269,[-1,-2,-3]]],[],[270,175],168,[[68,[45]]]],[[[273,[-1,-2,-3,-4]],-5],[[273,[-1,-2,-3,-4]]],[78,48],[],[274,219],168,[[68,[45]]]],[[[262,[-1,-2,-3]],-4],[[262,[-1,-2,-3]]],[],263,127,[[68,[45]]]],[[[275,[-1,-2,-3]],-4],[[275,[-1,-2,-3]]],[],[276,263],127,[[68,[45]]]],[[[291,[-1,-2,-3,-4]],-5],[[291,[-1,-2,-3,-4]]],[292,67],[],[293,229,219,263],168,[[68,[45]]]],[[[294,[-1]],-2],[[294,[-1]]],295,[[68,[45]]]],[[[296,[-1,-2,-3]],-4],[[296,[-1,-2,-3]]],48,297,168,[[68,[45]]]],[[[277,[-1,-2,-3]],-4],[[277,[-1,-2,-3]]],[],229,127,[[68,[45]]]],[[[285,[-1,-2,-3]],-4],[[285,[-1,-2,-3]]],[104,[286,[83]],212],48,287,[[68,[45]]]],[[[289,[-1,-2,-3]],-4],[[289,[-1,-2,-3]]],48,274,168,[[68,[45]]]],[[[304,[-1,-2,-3]],-4],[[304,[-1,-2,-3]]],[],305,168,[[68,[45]]]],[[[288,[-1,-2,-3]],-4],[[288,[-1,-2,-3]]],[104,[286,[83]],212],48,287,[[68,[47]]]],[[[307,[-1,-2]],-3],[[307,[-1,-2]]],[],[[308,[-1]]],[[68,[45]]]],[[[282,[-1]],-2],[[282,[-1]]],283,[[68,[45]]]],[[[284,[-1]],-2],[[284,[-1]]],[],[[68,[45]]]],[[[265,[-4,-1,-2,-3]],-5],[[265,[-4,-1,-2,-3]]],[],[],266,[[267,[-1,-2,-3]]],[[68,[45]]]],[-4,[[260,[-1,-2,-3]]],[],[],127,[[33,[],[[32,[[147,[-1,-2,-3]]]]]]]],[-4,[[261,[-1,-2,-3]]],[],[],127,[[33,[],[[32,[[147,[-1,-2,-3]]]]]]]],[-1,310,[[68,[45]]]],[-1,310,[[68,[45]]]],0,0,0,0,0,[[[227,[],[[190,[-1]]]],-1],13,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[13,13],[329,329],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],13],[[],329],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[227,[],[[190,[-1]]]],-1],13,55],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,21,131,8,-2,-3],13,127,227,[[54,[],[[19,[329]]]]]],[56,22],[56,22],[[329,329],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[13,72],[[74,[22,73]]]],[[329,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[227,[],[[190,[-1]]]],-1],13,55],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[133,45,45,46,-1],132,[[54,[133],[[19,[132]]]]]],[[123,131,8],134],[[],329],[[[227,[],[[190,[-1]]]],-1],13,55],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[38,123,131,[122,[-1]],[62,[-1]],-2],136,48,[[54,[],[[19,[329]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[330,17],[[17,30],331],[332,22],[333,333],[334,334],[331,331],[335,335],[336,336],[337,337],[338,338],[339,339],[340,340],[341,341],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],332],[[],334],[[],335],[[],336],[[],337],[[],338],[[],340],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[266,[],[[342,[-1]]]],[3,[-1]]],22,[]],[[[267,[],[[327,[-1]]]],-1,-2,-3,21,131],3,55,266,[]],[[332,35,50,-1],343,[[54,[330]]]],[[340,-1],22,[[177,[331,43]]]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[333,333],8],[[339,339],8],[[341,341],8],0,0,[[330,331,-1],22,[[68,[334]]]],[[330,17,50,-1],22,[[68,[334]]]],[[330,-1],22,[[68,[340]]]],[[332,72],[[74,[22,73]]]],[[333,72],[[74,[22,73]]]],[[334,72],[[74,[22,73]]]],[[331,72],[[74,[22,73]]]],[[335,72],[[74,[22,73]]]],[[336,72],[[74,[22,73]]]],[[337,72],[[74,[22,73]]]],[[338,72],[[74,[22,73]]]],[[339,72],[[74,[22,73]]]],[[340,72],[[74,[22,73]]]],[[341,72],[[74,[22,73]]]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[344,333],[-1,-1,[]],[344,334],[43,334],[-1,-1,[]],[333,334],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[43,339],[-1,-1,[]],[333,339],[-1,-1,[]],[120,340],[51,340],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[330,30],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[330,343],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[17,17],331],0,0,0,0,[[[267,[],[[327,[-1]]]],-1,21,131],134,55],[[35,50],330],[[],332],[-1,331,[[54,[345]]]],0,[333,346],0,0,[331,347],[[17,50],331],[[330,30],22],0,[[330,-1],22,[[68,[30]]]],[[330,-1],22,[[68,[18]]]],0,0,[330,50],0,0,[[330,331,-1],22,[[68,[335]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[331,[349,[30,348,348]]],331],[[330,18],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[267,[],[[327,[-1]]]],-1,341,21,131],[[22,[136,[62,[-2]]]]],55,[]],0,[330,30],0,[[330,21,-2],-1,[],[[54,[330],[[19,[-1]]]]]],[[335,43],335],[[335,336],335],[[335,337],335],[[330,-2],-1,[],[[54,[330],[[19,[-1]]]]]],[[335,30],335],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[136,136],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[136,136],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[136,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[136,136],136],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[350,350],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[350,350],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[350,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[344,30,43],344],[[344,-1],344,[[33,[],[[32,[206]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[344,344],[346,346],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],0,[[344,344],8],[[346,346],8],[[344,72],[[74,[22,73]]]],[[346,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,8,[]],[[17,17],344],[[40,21],346],[344,346],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[[345,351],22],[[345,17,17,30],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[345,17,17,17],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[345,331],0,[[345,17,30],22],[351,351],[[-1,-2],22,[],[]],[345,22],[-1,-2,[],[]],[-1,-2,[],[]],[[],345],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[345,352],22],0,[[351,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[345,17],22],[[345,17],22],[[],345],[[345,17,17],22],0,[[345,17,50],22],0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[352,352],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],0,0,[[352,72],[[74,[22,73]]]],[351,352],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[353,354],[347,355],[356,357],[[347,358],[[98,[30]]]],[[355,358],[[98,[30]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],359],[[],[[361,[360]]]],[356,362],[56,363],[356,22],[364,364],[353,353],[354,354],[[[365,[-1,-2]]],[[365,[-1,-2]]],48,48],[347,347],[355,355],[356,356],[357,357],[[[366,[-1]]],[[366,[-1]]],48],[367,367],[368,368],[369,369],[370,370],[371,371],[372,372],[373,373],[358,358],[374,374],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],364],[[],347],[[],356],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[364,364],8],[[[365,[-1,-2]],[365,[-1,-2]]],8,67,67],[[368,368],8],[[369,369],8],[[370,370],8],[[371,371],8],[[372,372],8],[[373,373],8],[[358,358],8],[[374,374],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[353,374],[[365,[358,373]]]],[[354,374],[[365,[358,373]]]],[[[366,[-1]],374],[[365,[-1,22]]],[]],[[367,374],[[365,[358,373]]]],[[353,[98,[-1]],[98,[-2]]],[[375,[-1,-2]]],[],[]],[347,[[62,[[22,[[376,[30,348]],[98,[30]]]]]]]],[355,[[62,[[22,[[376,[30,348]],[98,[30]]]]]]]],[[364,72],[[74,[22,73]]]],[[353,72],[[74,[22,73]]]],[[354,72],[[74,[22,73]]]],[[[365,[-1,-2]],72],[[74,[22,73]]],77,77],[[347,72],[[74,[22,73]]]],[[355,72],[[74,[22,73]]]],[[356,72],[[74,[22,73]]]],[[357,72],[[74,[22,73]]]],[[368,72],[[74,[22,73]]]],[[369,72],[[74,[22,73]]]],[[370,72],[[74,[22,73]]]],[[371,72],[[74,[22,73]]]],[[372,72],[[74,[22,73]]]],[[373,72],[[74,[22,73]]]],[[358,72],[[74,[22,73]]]],[[374,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[353,354],[[[365,[-1,-2]]],-1,48,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[347,355],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,347,[[33,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]]],[-1,356,[[33,[],[[32,[355]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,373],[56,358],[[377,358],[[98,[30]]]],[[378,358],[[98,[30]]]],[[347,358],[[98,[30]]]],[[355,358],[[98,[30]]]],[[356,56],355],[[357,56],355],[[379,373],[[376,[30,348]]]],[[347,373],[[376,[30,348]]]],[[355,373],[[376,[30,348]]]],[[[366,[-1]],373],[[376,[30,348]]],380],[[379,358],[[376,[30,348]]]],[[347,358],[[376,[30,348]]]],[[355,358],[[376,[30,348]]]],[[[366,[-1]],358],[[376,[30,348]]],380],[[[365,[-1,-2]],-3],22,92,92,91],[[372,-1],22,91],[[373,-1],22,91],[[358,-1],22,91],[[374,-1],22,91],[347,381],[355,381],[[[366,[-1]]],382,[]],[[347,358],[[376,[30,348]]]],[[347,373],[[376,[30,348]]]],[[355,358],[[376,[30,348]]]],[[355,373],[[376,[30,348]]]],[[[366,[-1]],358],-1,[]],[356,[[161,[56]]]],[357,[[161,[56]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[353,383],[347,384],[355,384],[355,384],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[365,[-1,-2]]],8,[],[]],[355,8],[356,8],[357,8],[[371,385],8],[370,8],[[371,385],8],[370,8],[353,383],[354,383],[347,384],[355,384],[356,386],[357,386],[[[366,[-1]]],[[387,[-1]]],[]],[367,388],[347,389],[355,389],0,0,[347,[[62,[[22,[[376,[30,348]],[98,[30]]]]]]]],[355,[[62,[[22,[[376,[30,348]],[98,[30]]]]]]]],[356,56],[357,56],0,[[[98,[30]],56],378],[[],347],[[],356],[[353,374],[[62,[374]]]],[[354,374],[[62,[374]]]],[[353,374],374],[[354,374],374],[377,56],[378,56],[347,56],[355,56],[373,56],[358,56],[370,370],0,0,[[[366,[-1]]],[[390,[-1]]],380],[[353,[98,[-1]],[98,[-2]]],[[391,[-1,-2]]],[],[]],0,0,0,[380,[[376,[30,348]]]],[[356,56,56,56],22],[347,[[393,[392]]]],[355,[[393,[392]]]],[[],[[394,[360]]]],0,[[[365,[-1,-2]]],-1,48,[]],[370,30],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[373,56],[358,56],[374,56],0,[[[365,[[376,[30,348]],[376,[30,348]]]],-1],[[365,[[376,[30,348]],[376,[30,348]]]]],[[395,[30]]]],[[347,-1],347,[[395,[30]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[56,347],[[56,56,56],356],[[[365,[-1,-2]]],[[365,[[376,[30,348]],[376,[30,348]]]]],380,380],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[396,[376,[30,348]],30,372,[98,[30]]],22],[[[361,[-1]],[376,[30,348]],30,372],22,396],[[396,[376,[30,348]],[397,[30,348]],[398,[30]],372,[98,[30]]],22],[[[361,[-1]],[376,[30,348]],[397,[30,348]],[398,[30]],372],22,396],[[396,[399,[30]],[98,[30]]],[[22,[358,358]]]],[[[361,[-1]],[399,[30]]],[[22,[358,358]]],396],[[396,[376,[30,348]],[98,[30]]],358],[[[361,[-1]],[376,[30,348]]],358,396],[[396,[366,[[376,[30,348]]]],[98,[30]]],22],[[400,[366,[[376,[30,348]]]]],22],[[[361,[-1]],[366,[[376,[30,348]]]]],22,396],[[396,[401,[30,348]],372,[98,[30]]],22],[[[361,[-1]],[401,[30,348]],372],22,396],[[396,[401,[30,348]],402,372,[98,[30]]],22],[[[361,[-1]],[401,[30,348]],402,372],22,396],[[[394,[-1]],[376,[30,348]],[397,[30,348]],[398,[30]],[398,[30]]],22,396],[[400,[397,[30,348]],[398,[30]],364,[376,[30,348]]],22],[[[394,[-1]],[397,[30,348]],[398,[30]],364,[376,[30,348]]],22,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[396,[376,[30,348]],[98,[30]]],358],[[[403,[-1]],[376,[30,348]],[98,[30]]],358,396],[[[404,[-1,-2]],[376,[30,348]],[98,[30]]],358,396,[[395,[30]]]],[[[361,[-1]],[376,[30,348]]],358,396],[[[361,[-1]],[376,[30,348]],[98,[30]]],358,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[[406,[],[[405,[-1]]]]],-1,[]],[[[403,[-1]]],[],[406,396]],[[[403,[-1]]],[],406],[[[404,[-1,-2]]],[],406,[]],[[[394,[-1]]],[],[406,396]],[[[394,[-1]]],[],[396,406]],[[[361,[-1]]],[],[396,406]],[[[361,[-2]]],-1,[],[[406,[],[[405,[-1]]]],396]],[402,402],[[[361,[-1]]],[[361,[-1]]],[48,396]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[400,22],[396,22],[[[394,[-1]]],22,396],[[[394,[-1]]],22,396],[[[361,[-1]]],22,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[396,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]],[376,[30,348]],[376,[30,348]]],22],[[[403,[-1]],[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396],[[[404,[-1,-2]],[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396,[[395,[30]]]],[[[394,[-1]],[376,[30,348]],[376,[30,348]],[376,[30,348]]],358,396],[[[394,[-1]],[376,[30,348]],[376,[30,348]],[376,[30,348]]],22,396],[[[361,[-1]],[376,[30,348]],[376,[30,348]],[376,[30,348]]],358,396],[[[361,[-1]],[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396],[[[394,[-1]]],[[376,[30,348]]],396],[[],402],[[],[[361,[-1]]],[396,55]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[[396,8],22],[[[403,[-1]],8],22,396],[[[404,[-1,-2]],8],22,396,[[395,[30]]]],[[[361,[-1]],8],22,396],[[[361,[-1]],8],22,396],[[402,402],8],[[[361,[-1]],[361,[-1]]],8,[67,396]],[[396,[365,[[22,[[376,[30,348]],[98,[30]]]],[376,[30,348]]]]],22],[[[361,[360]],[98,[355]]],22],[[396,30],[[403,[396]]]],[[[394,[-1]],30],[[394,[[403,[-1]]]]],396],[[[361,[-1]],30],[[361,[[403,[-1]]]]],396],[[402,72],[[74,[22,73]]]],[[402,72],[[74,[22,73]]]],[[[361,[-1]],72],[[74,[22,73]]],[77,396]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[361,[-1]],-2],22,[92,396],91],[[400,30],22],[[[394,[-1]],30],22,396],[[],56],[[],56],[[],56],[[],56],[[],56],[[[361,[-1]]],-1,396],[[[361,[-1]]],-1,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[361,[-1]]],-1,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[396,[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]]],22],[[[403,[-1]],[376,[30,348]],[98,[30]]],358,396],[[[404,[-1,-2]],[376,[30,348]],[98,[30]]],358,396,[[395,[30]]]],[[[394,[-1]],[376,[30,348]]],358,396],[[[394,[-1]],[376,[30,348]]],22,396],[[[361,[-1]],[376,[30,348]]],358,396],[[[361,[-1]],[376,[30,348]],[98,[30]]],358,396],[[400,[376,[30,348]]],22],[[[394,[-1]],[376,[30,348]]],358,396],[[[394,[-1]],[376,[30,348]]],22,396],[[-1,30],[[403,[-1]]],396],[[-1,-2],[[404,[-1,-2]]],[],[]],[-1,[[394,[-1]]],396],[30,402],[[],[[361,[-1]]],[55,396]],[396,56],[[[403,[-1]]],56,396],[[[404,[-1,-2]]],56,396,[[395,[30]]]],[[[361,[-1]]],56,396],[[402,402],[[62,[109]]]],[[396,[365,[[376,[30,348]],[376,[30,348]]]],[98,[30]]],22],[[[361,[-1]],[365,[[376,[30,348]],[376,[30,348]]]]],22,396],[[396,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]],[376,[30,348]]],22],[[[403,[-1]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396],[[[404,[-1,-2]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396,[[395,[30]]]],[[[394,[-1]],[376,[30,348]],[376,[30,348]]],22,396],[[[394,[-1]],[376,[30,348]],[376,[30,348]]],358,396],[[[361,[-1]],[376,[30,348]],[376,[30,348]]],358,396],[[[361,[-1]],[376,[30,348]],[376,[30,348]],[98,[30]]],358,396],[[400,[397,[30,348]],[398,[30]],364,[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]],[398,[30]],364,[397,[30,348]]],22,396],[[400,[397,[30,348]],[397,[30,348]],[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]],[397,[30,348]],[397,[30,348]]],22,396],[[400,30],22],[[[394,[-1]],30],22,396],[[400,[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]]],22,396],[[400,[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]]],22,396],[[400,[397,[30,348]],[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]],[397,[30,348]]],22,396],[[400,30],22],[[[394,[-1]],30],22,396],[[396,56,56],22],[[400,56,56],22],[[[403,[-1]],56,56],22,396],[[[404,[-1,-2]],56,56],22,396,[[395,[30]]]],[[[394,[-1]],56,56],22,396],[[[394,[-1]],56,56],22,396],[[[361,[-1]],56,56],22,396],[[[361,[-1]],56,56],22,396],[[[403,[-1]],30],22,396],[[[404,[-1,-2]],-2],22,[],[]],[[[394,[[404,[-1,-2]]]],-2],22,396,[[395,[30]]]],[[400,[376,[30,348]],[376,[30,348]]],22],[[[394,[-1]],[376,[30,348]],[376,[30,348]]],22,396],[[400,[376,[30,348]]],22],[[[394,[-1]],[376,[30,348]]],22,396],[[400,[397,[30,348]],[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]],[397,[30,348]]],22,396],[[400,[397,[30,348]]],22],[[[394,[-1]],[397,[30,348]]],22,396],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],0,0,[[396,-1],[[404,[396,-1]]],[[395,[30]]]],[[[394,[-1]],-2],[[394,[[404,[-1,-2]]]]],396,[[395,[30]]]],[[[361,[-1]],-2],[[361,[[404,[-1,-2]]]]],396,[[395,[30]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[400,30],22],[[[394,[-1]],30],22,396],[[56,56],[[361,[-1]]],[55,396]],[396,[[394,[396]]]],[[[361,[-1]]],[[394,[-1]]],396],[-1,[[361,[-1]]],396],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[359,358],374],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[359,353],[[[391,[-1,-2]]],[[391,[-1,-2]]],48,48],[359,359],[[[375,[-1,-2]]],[[375,[-1,-2]]],48,48],[383,383],[[[407,[-1,-2]]],[[407,[-1,-2]]],48,48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[359,373,373,358],374],[[],359],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[[359,8],[[62,[374]]]],[[[391,[-1,-2]]],[[375,[-1,-2]]],[],[]],[[[391,[-1,-2]],72],[[74,[22,73]]],77,77],[[359,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[391,[-1,-2]],373],[[376,[30,348]]],380,380],[[[391,[-1,-2]],358],[[376,[30,348]]],380,380],[[[391,[-1,-2]],358],-1,[],[]],[[[391,[-1,-2]],373],-2,[],[]],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[391,[-1,-2]]],383,[],[]],[[359,358],374],[[],359],[[[375,[-1,-2]]],[[62,[[365,[-1,-2]]]]],[],[]],[383,[[62,[[365,[358,373]]]]]],[[[407,[-1,-2]]],[[62,[[365,[[376,[30,348]],[376,[30,348]]]]]]],380,380],[[[375,[-1,-2]]],[[407,[-1,-2]]],380,380],[[359,373,358],374],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[56,359],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[408,[-1]]],-1,409],0,[[[410,[-1]]],[[399,[-1]]],409],[[[410,[-1]]],[[399,[-1]]],409],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[398,[-1]],[398,[-1]]],[[398,[-1]]],[[20,[],[[19,[]]]]]],[[[398,[-1]],[398,[-1]]],[[398,[-1]]],[104,[20,[],[[19,[]]]]]],[[[398,[-1]],[398,[-1]]],22,411],[[[413,[],[[412,[-1]]]],-1],[[413,[],[[412,[-1]]]]],409],[[[414,[-1]],-1],[[414,[-1]]],409],[[[414,[-1]],-1],[[414,[-1]]],409],[[[415,[-1]],-1],[[415,[-1]]],409],[[[415,[-1]],-1],[[415,[-1]]],409],[[[399,[-1]],-1],[[399,[-1]]],409],[[[399,[-1]],-1],[[399,[-1]]],409],[[[416,[-1]],-1],[[416,[-1]]],409],[[[416,[-1]],-1],[[416,[-1]]],409],0,[[[398,[-1]],[398,[-1]]],[[398,[-1]]],[[417,[],[[19,[]]]],[114,[],[[19,[]]]],[20,[],[[19,[]]]],[103,[],[[19,[]]]],418,419,104]],[[],-1,420],[[[398,[-1]],[398,[-1]],-1],8,[]],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[408,[-1]]],-1,409],0,[[[410,[-1]]],[[399,[-1]]],409],[[[415,[-1]]],[[399,[-1]]],409],[[[416,[-1]]],[[399,[-1]]],409],[[[410,[-1]]],[[399,[-1]]],409],[[[413,[],[[412,[-1]]]],-1],[[413,[],[[412,[-1]]]]],409],[[[414,[-1]],-1],[[414,[-1]]],409],[[[414,[-1]],-1],[[414,[-1]]],409],[[[415,[-1]],-1],[[415,[-1]]],409],[[[415,[-1]],-1],[[415,[-1]]],409],[[[399,[-1]],-1],[[399,[-1]]],409],[[[399,[-1]],-1],[[399,[-1]]],409],[[[416,[-1]],-1],[[416,[-1]]],409],[[[416,[-1]],-1],[[416,[-1]]],409],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[414,[-1]]],[[401,[-1,348]]],409],[[[415,[-1]]],[[401,[-1,348]]],409],[[[399,[-1]]],[[401,[-1,348]]],409],[[[416,[-1]]],[[401,[-1,348]]],409],[[[410,[-1]]],[[401,[-1,348]]],409],[[[414,[-1]]],[[22,[-1,-1]]],409],[[[415,[-1]]],[[22,[-1,-1]]],409],[[[416,[-1]]],[[22,[-1,-1]]],409],[[[410,[-1]]],[[22,[-1,-1]]],409],[[[414,[-1]]],[[22,[-1,-1]]],409],[[[415,[-1]]],[[22,[-1,-1]]],409],[[[416,[-1]]],[[22,[-1,-1]]],409],[[[410,[-1]]],[[22,[-1,-1]]],409],[[[416,[-1]]],[[410,[-1]]],409],[[[408,[-1]]],-1,409],0,[[[410,[-1]]],[[399,[-1]]],409],[[[398,[-1]]],[[398,[-2]]],[421,104],421],[[[410,[-1]]],[[399,[-1]]],409],0,[[[376,[-1,348]],-1],[[414,[-1]]],409],[[[399,[-1]],[401,[-1,348]]],[[62,[[399,[-1]]]]],409],[[[399,[-1]],[161,[-1]]],[[62,[[399,[-1]]]]],409],[[[399,[-1]],[161,[-1]]],[[62,[[399,[-1]]]]],409],[[[414,[-1]]],[[414,[-1]]],48],[[[422,[-1]]],[[422,[-1]]],48],[[[415,[-1]]],[[415,[-1]]],48],[[[399,[-1]]],[[399,[-1]]],48],[[[423,[-1]]],[[423,[-1]]],48],[[[408,[-1]]],[[408,[-1]]],48],[[[416,[-1]]],[[416,[-1]]],48],[[[410,[-1]]],[[410,[-1]]],48],[[[398,[-1]]],[[398,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[399,[-1]],[376,[-1,348]]],[[376,[-1,348]]],409],[[[416,[-1]],[376,[-1,348]]],-1,409],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[410,[-1]],[376,[-1,348]]],8,409],[[[399,[-1]],[399,[-1]]],8,409],0,0,0,0,[[[415,[-1]],[415,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[415,[-1]],[415,[-1]]],[[424,[[22,[-1,-1]]]]],409],[[],[[398,[-1]]],55],[-1,[[398,[-1]]],425],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[413,[],[[412,[-1]]]],-1],[[397,[-1,348]]],409],[[[414,[-1]],-1],[[397,[-1,348]]],409],[[[415,[-1]],-1],[[397,[-1,348]]],409],[[[415,[-1]],-1],[[397,[-1,348]]],409],[[[399,[-1]],-1],[[397,[-1,348]]],409],[[[416,[-1]],-1],[[397,[-1,348]]],409],[[[416,[-1]],-1],[[397,[-1,348]]],409],[[[399,[-1]],[376,[-1,348]]],-1,409],[[[423,[-1]],[376,[-1,348]]],-1,409],[[[408,[-1]],[376,[-1,348]]],-1,409],[[[416,[-1]],[376,[-1,348]]],-1,409],[[[398,[-1]],-1],[[398,[-1]]],[[426,[],[[19,[]]]]]],[[[398,[-1]],[398,[-1]]],-1,[[426,[],[[19,[]]]]]],[[[398,[-1]],-1],22,427],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[415,[-1]],-1,[376,[-1,348]]],[[415,[-1]]],409],[[[416,[-1]],-1,[376,[-1,348]]],[[416,[-1]]],409],[[[415,[-1]],-1,[376,[-1,348]],-1],[[415,[-1]]],409],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[414,[-1]]],[[398,[-1]]],409],[409,409],[[[414,[-1]],[414,[-1]]],8,67],[[[422,[-1]],[422,[-1]]],8,67],[[[415,[-1]],[415,[-1]]],8,67],[[[399,[-1]],[399,[-1]]],8,67],[[[408,[-1]],[408,[-1]]],8,67],[[[416,[-1]],[416,[-1]]],8,67],[[[410,[-1]],[410,[-1]]],8,67],[[[398,[-1]],[398,[-1]]],8,67],[[[423,[-1]]],[[408,[-1]]],409],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[[414,[-1]]],[[401,[-1,348]]],409],[[[415,[-1]]],[[401,[-1,348]]],409],[[[416,[-1]]],[[401,[-1,348]]],409],[[[414,[-1]]],[[22,[-1,-1]]],409],[[[415,[-1]]],[[22,[-1,-1]]],409],[[[416,[-1]]],[[22,[-1,-1]]],409],[[[414,[-1]]],[[22,[-1,-1]]],409],[[[415,[-1]]],[[22,[-1,-1]]],409],[[[416,[-1]]],[[22,[-1,-1]]],409],[[[415,[-1]]],[[22,[[408,[-1]],[408,[-1]]]]],409],[[[416,[-1]]],[[22,[[408,[-1]],[408,[-1]]]]],409],0,[[[414,[-1]],-1],[[428,[-1]]],409],[[[415,[-1]],-1],[[429,[-1]]],409],[[[416,[-1]],-1],[[430,[-1]]],409],[[[416,[-1]],-1],[[431,[-1]]],409],[[[416,[-1]],-1],-1,409],[[[413,[],[[412,[-1]]]]],[[413,[],[[412,[-1]]]]],409],[[[414,[-1]]],[[414,[-1]]],409],[[[414,[-1]]],[[414,[-1]]],409],[[[415,[-1]]],[[415,[-1]]],409],[[[415,[-1]]],[[415,[-1]]],409],[[[399,[-1]]],[[399,[-1]]],409],[[[399,[-1]]],[[399,[-1]]],409],[[[416,[-1]]],[[416,[-1]]],409],[[[416,[-1]]],[[416,[-1]]],409],[[[414,[-1]],72],[[74,[22,73]]],77],[[[422,[-1]],72],[[74,[22,73]]],77],[[[415,[-1]],72],[[74,[22,73]]],77],[[[399,[-1]],72],[[74,[22,73]]],77],[[[423,[-1]],72],[[74,[22,73]]],77],[[[408,[-1]],72],[[74,[22,73]]],77],[[[416,[-1]],72],[[74,[22,73]]],77],[[[410,[-1]],72],[[74,[22,73]]],77],[[[398,[-1]],72],[[74,[22,73]]],77],[[[414,[-1]],-2],22,409,[[177,[[415,[-1]]]]]],[[[422,[-1]],-2],22,409,[[177,[[415,[-1]]]]]],[[[414,[-1]],-1,-2],22,409,[[177,[[399,[-1]]]]]],[[[422,[-1]],-1,-2],22,409,[[177,[[399,[-1]]]]]],[[[415,[-1]],-1,-2],22,409,[[177,[[399,[-1]]]]]],[[[416,[-1]],-1,-2],22,409,[[177,[[399,[-1]]]]]],[[[413,[],[[412,[-1]]]],-1,177],22,409],[[[414,[-1]],177],22,409],[[[414,[-1]],-1,-2],22,409,[[177,[[399,[-1]],[161,[-1]]]]]],[[[422,[-1]],-1,-2],22,409,[[177,[[399,[-1]],[161,[-1]]]]]],[[[415,[-1]],177],22,409],[[[415,[-1]],-1,-2],22,409,[[177,[[399,[-1]],[161,[-1]]]]]],[[[399,[-1]],177],22,409],[[[416,[-1]],177],22,409],[[[416,[-1]],-1,-2],22,409,[[177,[[399,[-1]],[161,[-1]]]]]],[[[415,[-1]],-2],22,409,[[177,[-1]]]],[[[414,[-1]],-2],22,409,[[177,[-1]]]],[[[415,[-1]],-2],22,409,[[177,[-1]]]],[[[414,[-1]],-2],22,409,[[177,[-1]]]],[[[415,[-1]],-2],22,409,[[177,[-1]]]],[[[415,[-1]],-2],22,409,[[177,[[415,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[416,[-1]]]]]],[[[415,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[[414,[-1]],-2],22,409,[[177,[[416,[-1]]]]]],[[[422,[-1]],-2],22,409,[[177,[[416,[-1]]]]]],[[[415,[-1]],-1,-2],22,409,[[177,[[416,[-1]]]]]],[[[414,[-1]],-2],22,409,[[177,[[416,[-1]],[161,[-1]]]]]],[[[422,[-1]],-2],22,409,[[177,[[416,[-1]],[161,[-1]]]]]],[[[415,[-1]],-1,-2],22,409,[[177,[[416,[-1]],[161,[-1]]]]]],[[[415,[-1]],-2],22,409,[[177,[[415,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[416,[-1]]]]]],[[[415,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[[415,[-1]],-2],22,409,[[177,[[415,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[416,[-1]]]]]],[[[415,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[[416,[-1]],-2],22,409,[[177,[[161,[-1]]]]]],[[],[[398,[-1]]],[419,[20,[],[[19,[]]]]]],[[],[[398,[-1]]],[419,[20,[],[[19,[]]]]]],[[],[[398,[-1]]],[419,[20,[],[[19,[]]]]]],[[[413,[],[[412,[-1]]]]],[[376,[-1,348]]],409],[[[414,[-1]]],[[376,[-1,348]]],409],[[[414,[-1]]],[[376,[-1,348]]],409],[[[422,[-1]]],[[414,[-1]]],409],[-1,-1,[]],[-1,-1,[]],[[[415,[-1]]],[[376,[-1,348]]],409],[[[415,[-1]]],[[376,[-1,348]]],409],[-1,-1,[]],[[[399,[-1]]],[[376,[-1,348]]],409],[[[399,[-1]]],[[376,[-1,348]]],409],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[416,[-1]]],[[376,[-1,348]]],409],[-1,-1,[]],[[[416,[-1]]],[[376,[-1,348]]],409],[-1,-1,[]],[-1,-1,[]],0,0,0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[422,[-1]]],[[414,[-1]]],409],[[[398,[-1]]],-1,[]],[[[414,[-1]],-1],[[398,[-1]]],409],[[[398,[-1]],-2],22,92,91],0,[[[399,[-1]],-1],[[62,[[376,[-1,348]]]]],409],[[[399,[-1]],-1],[[62,[-1]]],409],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[[399,[-1]],[399,[-1]]],[[62,[[376,[-1,348]]]]],409],[[[423,[-1]],[423,[-1]]],[[62,[[376,[-1,348]]]]],409],[[[399,[-1]],[399,[-1]]],[[62,[[22,[-1,-1]]]]],409],[[[399,[-1]],[399,[-1]]],8,409],[[[410,[-1]],[410,[-1]]],8,409],[[[423,[-1]],[401,[-1,348]]],8,409],[[[399,[-1]],[423,[-1]]],8,409],[[[410,[-1]],[399,[-1]]],8,409],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[408,[-1]]],[[408,[-1]]],409],[[[416,[-1]],-1],8,409],[[[398,[-1]]],8,60],[[[408,[-1]]],8,409],[[[415,[-1]],-1],8,409],[[[416,[-1]],-1],8,409],[[[415,[-1]]],8,409],[[[416,[-1]]],8,409],[[[415,[-1]],-1],8,409],[[[422,[-1]]],8,409],[[[408,[-1]]],8,409],[[[415,[-1]]],8,409],[[[416,[-1]]],8,409],[[[415,[-1]]],8,409],[[[416,[-1]]],8,409],0,[[[399,[-1]]],-1,409],[[[416,[-1]]],-1,409],[[[398,[-1]],[398,[-1]],-1],[[398,[-1]]],[[417,[],[[19,[]]]],[114,[],[[19,[]]]],[20,[],[[19,[]]]],[103,[],[[19,[]]]],418,419,104]],[[[399,[-1]],[423,[-1]]],[[62,[[376,[-1,348]]]]],409],[[[399,[-1]],[423,[-1]]],[[62,[-1]]],409],[[[415,[-1]],[423,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[416,[-1]],[423,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[415,[-1]],[423,[-1]]],[[424,[-1]]],409],[[[416,[-1]],[423,[-1]]],[[424,[-1]]],409],[[[415,[-1]],[399,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[416,[-1]],[399,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[415,[-1]],[399,[-1]]],[[424,[[22,[-1,-1]]]]],409],[[[416,[-1]],[399,[-1]]],[[424,[[22,[-1,-1]]]]],409],[[[416,[-1]]],[[62,[-1]]],409],[[[416,[-1]]],[[62,[-1]]],409],0,0,0,0,0,0,0,[[[399,[-1]]],[[376,[-1,348]]],409],0,[[[398,[-1]],-1],[[398,[-1]]],[[103,[],[[19,[]]]]]],[[[398,[-1]],-1],22,432],[[[398,[-1]]],[[398,[-1]]],[[433,[],[[19,[]]]]]],[[-1,-1,-1],[[408,[-1]]],409],[[[408,[-1]]],[[397,[-1,348]]],409],[[[415,[-1]],-1],58,409],[[[408,[-1]],-1],[[408,[-1]]],409],[[[399,[-1]],[423,[-1]]],8,409],[[[399,[-1]],[399,[-1]]],8,409],[[[408,[-1]],[376,[-1,348]]],[[408,[-1]]],409],[[[398,[-1]],[398,[-1]]],[[62,[109]]],212],[[],[[398,[-1]]],[419,[20,[],[[19,[]]]]]],[[-1,-1],[[376,[-1,348]]],[]],0,[[[398,[-1]]],[[398,[-1]]],[[114,[],[[19,[]]]],[417,[],[[19,[]]]],[20,[],[[19,[]]]],434,419,212,104]],[[[408,[-1]],[376,[-1,348]]],[[376,[-1,348]]],409],0,[[[415,[-1]],[416,[-1]]],[[424,[[376,[-1,348]]]]],409],[[[415,[-1]],[416,[-1]]],[[424,[[22,[-1,-1]]]]],409],[-1,[[398,[-1]]],[]],0,0,0,[[[413,[],[[412,[-1]]]],-1],[[376,[-1,348]]],409],[[[414,[-1]],-1],[[376,[-1,348]]],409],[[[414,[-1]],-1],[[376,[-1,348]]],409],[[[415,[-1]],-1],[[376,[-1,348]]],409],[[[415,[-1]],-1],[[376,[-1,348]]],409],[[[399,[-1]],-1],[[376,[-1,348]]],409],[[[399,[-1]],-1],[[376,[-1,348]]],409],[[[416,[-1]],-1],[[376,[-1,348]]],409],[[[416,[-1]],-1],[[376,[-1,348]]],409],[[[414,[-1]],-1],[[397,[-1,348]]],409],[[[399,[-1]],-1],22,409],[[[398,[-1]]],[[398,[-1]]],[[114,[],[[19,[]]]],[417,[],[[19,[]]]],[20,[],[[19,[]]]],434,419,212,104]],[[[423,[-1]],[376,[-1,348]]],-1,409],[[[408,[-1]],[376,[-1,348]]],-1,409],[[[398,[-1]]],[[22,[-1,-1]]],435],[[-1,-1],[[436,[-1,348]]],[]],[[[415,[-1]],-1],[[424,[-1]]],409],[[[399,[-1]],-1],-1,409],[[[415,[-1]],-1],[[424,[-1]]],409],[[[399,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[408,[-1]],-1],[[62,[-1]]],409],[[[399,[-1]],-1],-1,409],[[[408,[-1]],-1],[[62,[-1]]],409],[[[413,[],[[412,[-1]]]],-1],[[22,[[413,[],[[412,[-1]]]],[413,[],[[412,[-1]]]]]]],409],[[[414,[-1]],-1],[[22,[[414,[-1]],[414,[-1]]]]],409],[[[414,[-1]],-1],[[22,[[414,[-1]],[414,[-1]]]]],409],[[[415,[-1]],-1],[[22,[[415,[-1]],[415,[-1]]]]],409],[[[415,[-1]],-1],[[22,[[415,[-1]],[415,[-1]]]]],409],[[[399,[-1]],-1],[[22,[[399,[-1]],[399,[-1]]]]],409],[[[399,[-1]],-1],[[22,[[399,[-1]],[399,[-1]]]]],409],[[[416,[-1]],-1],[[22,[[416,[-1]],[416,[-1]]]]],409],[[[416,[-1]],-1],[[22,[[416,[-1]],[416,[-1]]]]],409],[[[399,[-1]],-1],[[22,[[399,[-1]],[399,[-1]]]]],409],[[[413,[],[[412,[-1]]]],[161,[-1]]],[[413,[],[[412,[-1]]]]],409],[[[414,[-1]],[161,[-1]]],[[414,[-1]]],409],[[[414,[-1]],[161,[-1]]],[[414,[-1]]],409],[[[415,[-1]],[161,[-1]]],[[415,[-1]]],409],[[[415,[-1]],[161,[-1]]],[[415,[-1]]],409],[[[399,[-1]],[161,[-1]]],[[399,[-1]]],409],[[[399,[-1]],[161,[-1]]],[[399,[-1]]],409],[[[416,[-1]],[161,[-1]]],[[416,[-1]]],409],[[[416,[-1]],[161,[-1]]],[[416,[-1]]],409],[[[399,[-1]],[376,[-1,348]]],-1,409],[[[423,[-1]],[376,[-1,348]]],-1,409],[[[416,[-1]],[376,[-1,348]]],-1,409],[[[399,[-1]]],-1,409],0,[[[398,[-1]],[398,[-1]]],[],[[114,[],[[19,[]]]]]],[[[398,[-1]],[398,[-1]]],22,437],[-2,[[398,[-1]]],[20,434],[[126,[],[[32,[[398,[-1]]]]]]]],[-2,[[398,[-1]]],[20,104,434],[[126,[],[[32,[[398,[-1]]]]]]]],0,0,[[[408,[-1]]],[[397,[-1,348]]],409],[[[413,[],[[412,[-1]]]]],[[376,[-1,348]]],409],[[[414,[-1]]],[[376,[-1,348]]],409],[[[414,[-1]]],[[376,[-1,348]]],409],[[[415,[-1]]],[[376,[-1,348]]],409],[[[415,[-1]]],[[376,[-1,348]]],409],[[[399,[-1]]],[[376,[-1,348]]],409],[[[399,[-1]]],[[376,[-1,348]]],409],[[[416,[-1]]],[[376,[-1,348]]],409],[[[416,[-1]]],[[376,[-1,348]]],409],0,0,0,0,[[[422,[-1]]],[[414,[-1]]],409],[[[416,[-1]]],[[415,[-1]]],409],[[[398,[-1]]],-1,425],[[[415,[-1]]],[[415,[30]]],409],[[[399,[-1]]],[[399,[30]]],409],[[[423,[-1]]],[[423,[30]]],409],[[[416,[-1]]],[[416,[30]]],409],[[[398,[-1]]],[[398,[30]]],[421,104]],[[[415,[-1]]],[[415,[87]]],409],[[[399,[-1]]],[[399,[87]]],409],[[[423,[-1]]],[[423,[87]]],409],[[[416,[-1]]],[[416,[87]]],409],[[[398,[-1]]],[[398,[87]]],[421,104]],[[[399,[-1]]],[[423,[-1]]],409],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[415,[-1]]],[[416,[-1]]],409],[[[415,[-1]]],-1,409],[[[414,[-1]]],[[422,[-1]]],409],[[[399,[-1]]],[[397,[-1,348]]],409],0,[[[410,[-1]],-2],[[410,[-1]]],409,[[395,[-1]]]],[[[415,[-1]],-2],[[415,[-1]]],409,[[395,[-1]]]],[[[399,[-1]],-2],[[399,[-1]]],409,[[395,[-1]]]],[[[416,[-1]],-2],[[416,[-1]]],409,[[395,[-1]]]],[[[399,[-1]],[397,[-1,348]]],[[399,[-1]]],409],[[[398,[-1]]],[[62,[[398,[-2]]]]],[421,104],421],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[[],[[398,[-1]]],[419,[20,[],[[19,[]]]]]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,[30,409],[[-1,-1],[[397,[-1,348]]],[]],0,[[[399,[-1]],-1],[[62,[[376,[-1,348]]]]],409],[[[399,[-1]],-1],[[62,[-1]]],409],0,[[[413,[],[[412,[-1]]]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],0,0,0,[[[415,[-1]]],-1,409],[[[416,[-1]]],-1,409],[[[415,[-1]]],-1,409],[[[416,[-1]]],-1,409],0,0,[[[413,[],[[412,[-1]]]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[414,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[415,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[399,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],[[[416,[-1]],-1],-1,409],0,0,0,[[[415,[-1]]],-1,409],[[[416,[-1]]],-1,409],[[[415,[-1]]],-1,409],[[[416,[-1]]],-1,409],[[],[[398,[-1]]],434],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],0,[-1,-1,[]],0,[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[428,[-1]]],[[62,[[376,[-1,348]]]]],409],0,0,0,0,0,0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[424,[-1]]],[[98,[-1]]],[]],[[[424,[-1]]],[],[]],[[[424,[-1]]],[[98,[-1]]],[]],[438,120],[[[424,[-1]]],[],[]],[[[424,[-1]]],[[98,[-1]]],[]],[438,120],[[[424,[-1]]],[[98,[-1]]],[]],[438,120],[-1,-2,[],[]],[[[424,[-1]]],[[98,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[438,120],[-1,-2,[],[]],[-1,-2,[],[]],[[[424,[-1]]],[[98,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[438,120],[-1,-2,[],[]],[[[424,[-1]]],56,[]],[438,56],[[[424,[-1]]],22,[]],[438,22],[[[424,[-1]]],[[424,[-1]]],48],[[[439,[-1]]],[[439,[-1]]],48],[438,438],[[[440,[-1]]],[[440,[-1]]],48],[[[424,[-1]],[424,[-1]]],22,48],[[438,438],22],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[424,[-1]],[424,[-1]]],109,211],[[438,438],109],[[[440,[-1]],[440,[-1]]],109,211],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[424,[-1]]],[]],[[],438],[[[424,[-1]]],[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[438,120],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[424,[-1]]],[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[438,120],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[424,[-1]],-2],[[441,[-1]]],[],[[442,[56]]]],[[[424,[-1]]],22,[]],[56,22],[56,22],[[[439,[-1]]],22,[]],[56,22],[[[441,[-1]]],22,[]],[56,22],[56,22],[[[440,[-1]]],-1,[]],[[[424,[-1]],[424,[-1]]],8,67],[[[424,[-1]],[98,[-1]]],8,67],[[438,438],8],[[438,120],8],[[[440,[-1]],[440,[-1]]],8,67],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[[424,[-1]],-2],22,[],[[33,[],[[32,[-1]]]]]],[[[424,[83]]],[[74,[22,108]]]],[[[424,[-1]],72],[[74,[22,73]]],77],[[[439,[-1]],72],[[74,[22,73]]],77],[[438,72],[[74,[22,73]]]],[[438,72],[[74,[22,73]]]],[[[440,[-1]],72],[[74,[22,73]]],[]],[[[440,[-1]],72],[[74,[22,73]]],[]],[[[84,[-1]]],[[424,[-1]]],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[120,[[74,[438,[440,[120]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[84,[83]]],[[74,[438,443]]]],[-2,[[424,[-1]]],[],[[33,[],[[32,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[120,[[74,[438]]]],[[[424,[-1]],[424,[-1]]],8,212],[[438,438],8],[[438,120],8],[[[424,[-1]],[424,[-1]]],8,212],[[438,120],8],[[438,438],8],[[[424,[-1]],-2],22,92,91],[[438,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[[424,[-1]],56,-1],22,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[424,[-1]]],[[74,[[84,[-1]],[424,[-1]]]]],[]],[[[424,[-1]]],[[84,[-1]]],[]],[[[424,[-1]]],[[439,[-1]]],[]],[[[424,[-1]]],[],[]],[[[424,[-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[424,[-1]]],8,[]],[438,8],[[[424,[-1]]],8,[]],[438,8],[[[424,[-1]],[424,[-1]]],8,212],[[438,438],8],[[438,120],8],[[[424,[-1]]],56,[]],[438,56],[-1,56,[]],[-1,83,[]],[[[424,[-1]],[424,[-1]]],8,212],[[438,438],8],[[438,120],8],[[],[[424,[-1]]],[]],[[],438],[-1,[[440,[-1]]],[]],[[],[[424,[-1]]],[]],[[],438],[[[439,[-1]]],62,[]],[[[441,[-1]]],62,[]],[[[439,[-1]]],62,[]],[[[441,[-1]]],62,[]],[[[424,[-1]],[424,[-1]]],[[62,[109]]],212],[[438,438],[[62,[109]]]],[[438,120],[[62,[109]]]],[[[440,[-1]],[440,[-1]]],[[62,[109]]],212],[[[424,[-1]]],[[62,[-1]]],[]],[438,[[62,[444]]]],[[[424,[-1]],56],[[62,[-1]]],[]],[[[424,[-1]],-1],22,[]],[[438,444],22],[[438,120],22],[[[424,[-1]],-1],22,[]],[[[424,[-1]]],56,[]],[438,56],[[[424,[-1]],56],-1,[]],[[438,56],444],[[[424,[-1]],-2],22,[],[[177,[-1],[[19,[8]]]]]],[[[424,[-1]],56],22,[]],[[438,56],22],[[[440,[-1]]],440,[]],[[[439,[-1]]],[[22,[56,[62,[56]]]]],[]],[[[441,[-1]]],[[22,[56,[62,[56]]]]],[]],[-1,83,[]],[[[424,[-1]],56],[[62,[-1]]],[]],[[[424,[-1]],56],-1,[]],[[[424,[-1]]],[[424,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[[[424,[-1]],56],22,[]],[[438,56],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[[[424,[-1]],[98,[-1]]],[[74,[22,440]]],104],[-1,[[74,[-2]]],[],[]],[[[98,[-1]]],[[74,[[424,[-1]]]]],48],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[120,[[74,[438]]]],[445,[[74,[438]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[[[424,[-1]],56,-1],[[74,[22,[440,[-1]]]]],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[[[424,[-1]],-1],[[74,[22,[440,[-1]]]]],[]],[[438,444],[[74,[22,[440,[444]]]]]],[[438,120],[[74,[22,[440,[120]]]]]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[424,[83]],[98,[83]]],[[74,[56,108]]]],[[-1,83],[[74,[22,108]]],[]],[[-1,446],[[74,[22,108]]],[]],[[-1,447],[[74,[22,108]]],[]],[[-1,[98,[385]]],[[74,[22,108]]],[]],[[-1,[98,[447]]],[[74,[22,108]]],[]],[[-1,385],[[74,[22,108]]],[]],[[-1,250],[[74,[22,108]]],[]],[[-1,88],[[74,[22,108]]],[]],[[-1,[98,[87]]],[[74,[22,108]]],[]],[[-1,30],[[74,[22,108]]],[]],[[-1,[98,[90]]],[[74,[22,108]]],[]],[[-1,[98,[446]]],[[74,[22,108]]],[]],[[-1,58],[[74,[22,108]]],[]],[[-1,[98,[58]]],[[74,[22,108]]],[]],[[-1,[98,[69]]],[[74,[22,108]]],[]],[[-1,[98,[448]]],[[74,[22,108]]],[]],[[-1,[98,[250]]],[[74,[22,108]]],[]],[[-1,87],[[74,[22,108]]],[]],[[-1,90],[[74,[22,108]]],[]],[[-1,[98,[88]]],[[74,[22,108]]],[]],[[-1,[98,[30]]],[[74,[22,108]]],[]],[[-1,[98,[83]]],[[74,[22,108]]],[]],[[-1,69],[[74,[22,108]]],[]],[[-1,448],[[74,[22,108]]],[]],[[-1,[98,[448]]],[[74,[22,108]]],[]],[[-1,250],[[74,[22,108]]],[]],[[-1,[98,[88]]],[[74,[22,108]]],[]],[[-1,448],[[74,[22,108]]],[]],[[-1,[98,[447]]],[[74,[22,108]]],[]],[[-1,90],[[74,[22,108]]],[]],[[-1,[98,[69]]],[[74,[22,108]]],[]],[[-1,30],[[74,[22,108]]],[]],[[-1,[98,[90]]],[[74,[22,108]]],[]],[[-1,[98,[87]]],[[74,[22,108]]],[]],[[-1,58],[[74,[22,108]]],[]],[[-1,[98,[30]]],[[74,[22,108]]],[]],[[-1,88],[[74,[22,108]]],[]],[[-1,69],[[74,[22,108]]],[]],[[-1,83],[[74,[22,108]]],[]],[[-1,[98,[385]]],[[74,[22,108]]],[]],[[-1,446],[[74,[22,108]]],[]],[[-1,[98,[83]]],[[74,[22,108]]],[]],[[-1,447],[[74,[22,108]]],[]],[[-1,87],[[74,[22,108]]],[]],[[-1,[98,[58]]],[[74,[22,108]]],[]],[[-1,[98,[250]]],[[74,[22,108]]],[]],[[-1,385],[[74,[22,108]]],[]],[[-1,[98,[446]]],[[74,[22,108]]],[]],[[438,444],[[74,[22,73]]]],[[438,120],[[74,[22,73]]]],[[],438],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[-1,-1,[]],0,[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[429,[-1]]],[[62,[[376,[-1,348]]]]],409],[[[429,[-1]]],[[22,[56,[62,[56]]]]],409],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[436,[-1,-2]]],[[436,[-1,-2]]],449,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],449,[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],449,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],449,[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[],20,[]],[[[452,[-1,-2]],[452,[-1,-2]]],[],[20,104],[]],[[[376,[-1,-2]],[397,[-1,-2]]],[],20,[]],[[[376,[-1,-2]],[436,[-1,-2]]],[],20,[]],[[[453,[-1,-2]],[451,[-1,-2]]],[],20,[]],[[[453,[-1,-2]],[450,[-1,-2]]],[],20,[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[],20,[],[]],[[[455,[-1,-2]],[455,[-1,-2]]],[[455,[-1,-2]]],[[20,[],[[19,[]]]]],[]],[[[436,[-1,-2]],[436,[-1,-2]]],[[436,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[436,[-1,-2]],[436,[-1,-2]]],[],20,[]],[[[450,[-1,-2]],[450,[-1,-2]]],[],20,[]],[[[450,[-1,-2]],[450,[-1,-2]]],[[450,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[456,[-1,-2,-3]],[456,[-1,-3,-4]]],[],20,[],[],[]],[[[457,[-1,-2,-3]],[457,[-1,-3,-4]]],[],20,[],[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[],20,[]],[[[397,[-1,-2]],[397,[-1,-2]]],[],[20,104],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[],[20,104],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[],20,[]],[[[452,[-1,-2]],[452,[-1,-2]]],22,411,[]],[[[376,[-1,-2]],[436,[-1,-2]]],22,411,[]],[[[376,[-1,-2]],[397,[-1,-2]]],22,[104,[20,[],[[19,[]]]]],[]],[[[453,[-1,-2]],[450,[-1,-2]]],22,411,[]],[[[453,[-1,-2]],[451,[-1,-2]]],22,[104,[20,[],[[19,[]]]]],[]],[[[455,[-1,-2]],[455,[-1,-2]]],22,411,[]],[[[436,[-1,-2]],[436,[-1,-2]]],22,411,[]],[[[450,[-1,-2]],[450,[-1,-2]]],22,411,[]],[[[456,[-1,-2,-3]],[456,[-1,-3,-3]]],22,411,[],[]],[[[457,[-1,-2,-3]],[457,[-1,-3,-3]]],22,411,[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],22,[104,[20,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],22,[104,[20,[],[[19,[]]]]],[]],[[[376,[-1,-2]],[436,[-1,-2]]],[[376,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[453,[-1,-2]],[450,[-1,-2]]],[[453,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[458,8],[459,8],[[458,458],458],[[459,459],459],0,[[[397,[-1,-2]]],[[398,[-1]]],[425,104],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[398,[-1]]],[[114,[],[[19,[]]]],425,104,[103,[],[[19,[]]]],[20,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[398,[-1]]],[425,435],[]],[458,8],[459,8],[[],-1,420],[[],[[376,[-1,-2]]],[],[]],[[],[[453,[-1,-2]]],[],[]],[[],-1,[]],[[],-1,420],[[],-1,420],[[],[[397,[-1,-2]]],[],[]],[[],[[451,[-1,-2]]],[],[]],[[[349,[-1,-2,-3]],[349,[-1,-2,-3]]],8,[],[],[]],[[[460,[-1,-2,-3]],[460,[-1,-2,-3]]],8,[],[],[]],[[[452,[-1,-2]],[452,[-1,-2]],-1],8,[],[]],[[[376,[-1,-2]],[376,[-1,-2]],[376,[-1,-2]]],8,[],[]],[[[453,[-1,-2]],[453,[-1,-2]],[453,[-1,-2]]],8,[],[]],[[[461,[-1,-2,-3]],[461,[-1,-2,-3]],-1],8,[],[],[]],[[[349,[-1,-2,-3]],[349,[-1,-2,-3]],-1],8,[],[],[]],[[[349,[-1,-2,-3]],[349,[-1,-2,-3]],-1],8,[],[],[]],[[[460,[-1,-2,-3]],[460,[-1,-2,-3]],-1],8,[],[],[]],[[[460,[-1,-2,-3]],[460,[-1,-2,-3]],-1],8,[],[],[]],[[[397,[-1,-2]],[397,[-1,-2]],[397,[-1,-2]]],8,[],[]],[[[451,[-1,-2]],[451,[-1,-2]],[451,[-1,-2]]],8,[],[]],0,0,[[[401,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],-1,[104,[103,[],[[19,[]]]]],[]],[[[436,[-1,-2]]],[],[103,104],[]],[[[451,[-1,-2]],[398,[-1]]],[[461,[-1,-2,-3]]],435,[],[]],[[[398,[-1]]],[[461,[-1,-2,-3]]],435,[],[]],[[[398,[-1]]],[[461,[-1,-2,-3]]],435,[],[]],[[[398,[-1]]],[[461,[-1,-2,-3]]],435,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-1,-1,-1,-1,-1],[[463,[-1,-2]]],104,[]],[[8,8],458],[[8,8,8],459],[[[401,[-1,-2]]],[[401,[-3,-2]]],[421,104],[],421],[[[463,[-1,-2]]],[[463,[-3,-2]]],[421,104],[],421],[[[452,[-1,-2]]],[[452,[-3,-2]]],[421,48],[],421],[[[376,[-1,-2]]],[[376,[-3,-2]]],[421,104],[],421],[[[453,[-1,-2]]],[[453,[-3,-2]]],[421,104],[],421],[[[462,[-1,-2]]],[[462,[-3,-2]]],[421,104],[],421],[[[454,[-1,-2,-3]]],[[454,[-4,-2,-3]]],421,[],[],421],[[[436,[-1,-2]]],[[436,[-3,-2]]],[421,104],[],421],[[[450,[-1,-2]]],[[450,[-3,-2]]],[421,104],[],421],[[[349,[-1,-2,-3]]],[[349,[-4,-2,-3]]],[421,104],[],[],421],[[[460,[-1,-2,-3]]],[[460,[-4,-2,-3]]],[421,104],[],[],421],[[[397,[-1,-2]]],[[397,[-3,-2]]],[421,104],[],421],[[[451,[-1,-2]]],[[451,[-3,-2]]],[421,104],[],421],[[[401,[-1,-2]]],[[401,[-1,-3]]],104,[],[]],[[[463,[-1,-2]]],[[463,[-1,-3]]],104,[],[]],[[[452,[-1,-2]]],[[452,[-1,-3]]],48,[],[]],[[[376,[-1,-2]]],[[376,[-1,-3]]],104,[],[]],[[[453,[-1,-2]]],[[453,[-1,-3]]],104,[],[]],[[[462,[-1,-2]]],[[462,[-1,-3]]],104,[],[]],[[[464,[-1,-2,-3]]],[[464,[-1,-4,-5]]],104,[],[],[],[]],[[[461,[-1,-2,-3]]],[[461,[-1,-4,-5]]],104,[],[],[],[]],[[[436,[-1,-2]]],[[436,[-1,-3]]],104,[],[]],[[[450,[-1,-2]]],[[450,[-1,-3]]],104,[],[]],[[[397,[-1,-2]]],[[397,[-1,-3]]],104,[],[]],[[[451,[-1,-2]]],[[451,[-1,-3]]],104,[],[]],[[[465,[-1,-2,-3]]],[[465,[-1,-4,-5]]],104,[],[],[],[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],466,[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],[466,104],[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],[466,104],[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],466,[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],[466,104],[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],466,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],[466,104],[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],466,[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],[466,104],[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],466,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],466,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],[466,104],[]],[[[401,[-1,-2]]],[[376,[-1,-2]]],[104,467,[20,[],[[19,[]]]],[426,[],[[19,[]]]]],[]],[[[463,[-1,-2]]],[[453,[-1,-2]]],[104,467,[20,[],[[19,[]]]],[426,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],[[376,[-1,-2]]],[104,467,[20,[],[[19,[]]]],[426,[],[[19,[]]]]],[]],[[[376,[-1,-2]],[376,[-1,-2]],[376,[-1,-2]]],[[376,[-1,-2]]],[104,212],[]],[[[453,[-1,-2]],[453,[-1,-2]],[453,[-1,-2]]],[[453,[-1,-2]]],[104,212],[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[[454,[-1,-2,-3]]],[104,212],[],[]],[[[436,[-1,-2]],[436,[-1,-2]],[436,[-1,-2]]],[[436,[-1,-2]]],[104,212],[]],[[[450,[-1,-2]],[450,[-1,-2]],[450,[-1,-2]]],[[450,[-1,-2]]],[104,212],[]],[[[397,[-1,-2]],[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[104,212],[]],[[[451,[-1,-2]],[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[104,212],[]],[[[397,[-1,-2]],-1,-1],[[397,[-1,-2]]],435,[]],[[[451,[-1,-2]],-1,-1],[[451,[-1,-2]]],435,[]],[[[401,[-1,-2]]],[[401,[-1,-2]]],48,[]],[[[463,[-1,-2]]],[[463,[-1,-2]]],48,[]],[[[468,[-1,-2]]],[[468,[-1,-2]]],48,[]],[[[452,[-1,-2]]],[[452,[-1,-2]]],48,[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],48,[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],48,[]],[[[462,[-1,-2]]],[[462,[-1,-2]]],48,[]],[[[464,[-1,-2,-3]]],[[464,[-1,-2,-3]]],48,[],[]],[[[461,[-1,-2,-3]]],[[461,[-1,-2,-3]]],48,[],[]],[[[454,[-1,-2,-3]]],[[454,[-1,-2,-3]]],48,[],[]],[[[455,[-1,-2]]],[[455,[-1,-2]]],48,[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],48,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],48,[]],[[[349,[-1,-2,-3]]],[[349,[-1,-2,-3]]],48,[],[]],[[[460,[-1,-2,-3]]],[[460,[-1,-2,-3]]],48,[],[]],[[[456,[-1,-2,-3]]],[[456,[-1,-2,-3]]],48,[],[]],[[[457,[-1,-2,-3]]],[[457,[-1,-2,-3]]],48,[],[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],48,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],48,[]],[[[465,[-1,-2,-3]]],[[465,[-1,-2,-3]]],48,[],[]],[458,458],[459,459],[348,348],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[452,[-1,-2]],[452,[-1,-2]]],109,211,[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],109,211,[],[]],[[348,348],109],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[[426,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[[426,[],[[19,[]]]],104],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[[103,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[[103,[],[[19,[]]]],104],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[401,[-1,-2]],[376,[-1,-2]]],8,212,[]],[[[463,[-1,-2]],[453,[-1,-2]]],8,212,[]],[[[462,[-1,-2]],[376,[-1,-2]]],8,[104,212,[20,[],[[19,[]]]]],[]],[[[436,[-1,-2]],[436,[-1,-2]]],8,212,[]],[[[450,[-1,-2]],[450,[-1,-2]]],8,212,[]],[[[401,[-1,-2]],[401,[-1,-2]]],8,212,[]],[[[463,[-1,-2]],[463,[-1,-2]]],8,212,[]],[[[462,[-1,-2]],[462,[-1,-2]]],8,[104,469,212,[20,[],[[19,[]]]]],[]],[425,425],[[[397,[-1,-2]],[397,[-1,-2]]],-1,[[114,[],[[19,[]]]],[103,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[465,[-1,-2,-3]]],[[22,[[451,[-1,-2]],[461,[-1,-2,-3]]]]],[],[],[]],0,[[],[[401,[-1,-2]]],55,[]],[[],[[463,[-1,-2]]],55,[]],[[],[[452,[-1,-2]]],55,[]],[[],[[376,[-1,-2]]],55,[]],[[],[[453,[-1,-2]]],55,[]],[[],[[462,[-1,-2]]],55,[]],[[],[[454,[-1,-2,-3]]],55,[],[]],[[],[[455,[-1,-2]]],55,[]],[[],[[436,[-1,-2]]],55,[]],[[],[[450,[-1,-2]]],55,[]],[[],[[349,[-1,-2,-3]]],[469,467],[],[]],[[],[[460,[-1,-2,-3]]],[469,467],[],[]],[[],[[456,[-1,-2,-3]]],469,[],[]],[[],[[457,[-1,-2,-3]]],469,[],[]],[[],[[397,[-1,-2]]],55,[]],[[],[[451,[-1,-2]]],55,[]],[[],348],[425,425],[[[463,[-1,-2]]],-1,[104,[114,[],[[19,[]]]]],[]],0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[349,[-1,-2,-3]]],-1,[104,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],67,469,467],[],[]],[[[460,[-1,-2,-3]]],-1,[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[376,[-1,-2]],[376,[-1,-2]]],-1,[[435,[],[[19,[]]]],114],[]],[[[453,[-1,-2]],[453,[-1,-2]]],-1,[[435,[],[[19,[]]]],114],[]],[[[401,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[401,[-1,-2]],-1],[],[104,426],[]],[[[463,[-1,-2]],-1],[],[104,426],[]],[[[463,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[452,[-1,-2]],[454,[-1,-3,-2]]],[],426,[],[]],[[[452,[-1,-2]],-1],[],426,[]],[[[452,[-1,-2]],[452,[-1,-3]]],[],426,[],[]],[[[376,[-1,-2]],-1],[],[104,426],[]],[[[376,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[453,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[453,[-1,-2]],-1],[],[104,426],[]],[[[462,[-1,-2]],-1],[],[104,426],[]],[[[462,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[455,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[455,[-1,-2]],-1],[],[104,426],[]],[[[436,[-1,-2]],-1],[],[104,426],[]],[[[436,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[450,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[450,[-1,-2]],-1],[],[104,426],[]],[[[397,[-1,-2]],-1],[],[104,426],[]],[[[397,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[451,[-1,-2]],[454,[-1,-3,-2]]],[],[104,426],[],[]],[[[451,[-1,-2]],-1],[],[104,426],[]],[[[401,[-1,-2]],-1],22,[104,427],[]],[[[401,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[463,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[463,[-1,-2]],-1],22,[104,427],[]],[[[452,[-1,-2]],-1],22,[104,[426,[],[[19,[]]]]],[]],[[[376,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[376,[-1,-2]],-1],22,[104,[426,[],[[19,[]]]]],[]],[[[453,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[453,[-1,-2]],-1],22,[104,427],[]],[[[462,[-1,-2]],-1],22,[104,427],[]],[[[462,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[455,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[455,[-1,-2]],-1],22,[104,427],[]],[[[436,[-1,-2]],-1],22,[104,427],[]],[[[436,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[450,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[450,[-1,-2]],-1],22,[104,427],[]],[[[397,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[397,[-1,-2]],-1],22,[104,[426,[],[[19,[]]]]],[]],[[[451,[-1,-2]],-1],22,[104,[426,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[454,[-1,-2,-2]]],22,[104,427],[]],[[[376,[-1,-2]],[436,[-1,-2]]],[[376,[-1,-2]]],470,[]],[[[453,[-1,-2]],[450,[-1,-2]]],[[453,[-1,-2]]],470,[]],[[[397,[-1,-2]],[397,[-1,-2]]],-1,[[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],-1,[[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[401,[-1,-2]],[401,[-1,-2]]],8,67,[]],[[[463,[-1,-2]],[463,[-1,-2]]],8,67,[]],[[[468,[-1,-2]],[468,[-1,-2]]],8,67,[]],[[[452,[-1,-2]],[452,[-1,-2]]],8,67,[]],[[[376,[-1,-2]],[376,[-1,-2]]],8,67,[]],[[[453,[-1,-2]],[453,[-1,-2]]],8,67,[]],[[[462,[-1,-2]],[462,[-1,-2]]],8,67,[]],[[[464,[-1,-2,-3]],[464,[-1,-2,-3]]],8,67,[],[]],[[[461,[-1,-2,-3]],[461,[-1,-2,-3]]],8,67,[],[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],8,67,[],[]],[[[455,[-1,-2]],[455,[-1,-2]]],8,67,[]],[[[436,[-1,-2]],[436,[-1,-2]]],8,67,[]],[[[450,[-1,-2]],[450,[-1,-2]]],8,67,[]],[[[349,[-1,-2,-3]],[349,[-1,-2,-3]]],8,67,[],[]],[[[460,[-1,-2,-3]],[460,[-1,-2,-3]]],8,67,[],[]],[[[456,[-1,-2,-3]],[456,[-1,-2,-3]]],8,67,[],[]],[[[457,[-1,-2,-3]],[457,[-1,-2,-3]]],8,67,[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],8,67,[]],[[[451,[-1,-2]],[451,[-1,-2]]],8,67,[]],[[[465,[-1,-2,-3]],[465,[-1,-2,-3]]],8,67,67,67],[[458,458],8],[[459,459],8],[[348,348],8],[[[436,[-1,-2]],[436,[-1,-2]]],458,67,[]],[[[450,[-1,-2]],[450,[-1,-2]]],459,67,[]],[[[397,[-1,-2]],[397,[-1,-2]]],458,67,[]],[[[451,[-1,-2]],[451,[-1,-2]]],459,67,[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[[398,[-1]],[398,[-1]],[398,[-1]]],[[461,[-1,-2,-3]]],435,[],[]],[[[376,[-1,-2]],-1],[[453,[-1,-2]]],104,[]],[[[397,[-1,-2]],-1],[[451,[-1,-2]]],104,[]],[[425,425],425],[[[376,[-1,-2]]],[[376,[-1,-2]]],[471,104],[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],471,[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],471,[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],[471,104],[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],[471,104],[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],471,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],471,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],[471,104],[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],471,[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],[471,104],[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],471,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],[471,104],[]],[[[401,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[463,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[468,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[452,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[376,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[453,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[462,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[461,[-1,-2,-3]],72],[[74,[22,73]]],77,[],[]],[[[454,[-1,-2,-3]],72],[[74,[22,73]]],77,[],[]],[[[455,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[436,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[450,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[349,[-1,-2,-3]],72],[[74,[22,73]]],[104,77,67,467,469],[],[]],[[[460,[-1,-2,-3]],72],[[74,[22,73]]],[104,77,67,467,469],[],[]],[[[456,[-1,-2,-3]],72],[[74,[22,73]]],77,[],[]],[[[457,[-1,-2,-3]],72],[[74,[22,73]]],77,[],[]],[[[397,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[451,[-1,-2]],72],[[74,[22,73]]],77,[]],[[[465,[-1,-2,-3]],72],[[74,[22,73]]],77,77,77],[[458,72],[[74,[22,73]]]],[[459,72],[[74,[22,73]]]],[[348,72],[[74,[22,73]]]],[[[436,[-1,-2]]],[[401,[-1,-2]]],[104,469,212],[]],[-1,-1,[]],[[[450,[-1,-2]]],[[463,[-1,-2]]],[104,469,212],[]],[-1,-1,[]],[[[453,[-1,-2]]],[[468,[-1,-2]]],467,[]],[[[397,[-1,-2]]],[[468,[-1,-2]]],469,[]],[-1,-1,[]],[[[451,[-1,-2]]],[[468,[-1,-2]]],469,[]],[[[376,[-1,-2]]],[[468,[-1,-2]]],[469,467],[]],[-1,-1,[]],[[[22,[-1,-1]]],[[376,[-1,-2]]],[],[]],[-1,-1,[]],[[[84,[-1]]],[[376,[-1,-2]]],[],[]],[[[84,[-1]]],[[453,[-1,-2]]],[],[]],[-1,-1,[]],[[[22,[-1,-1,-1]]],[[453,[-1,-2]]],[],[]],[[[436,[-1,-2]]],[[462,[-1,-2]]],469,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[22,[-1,-1]]],[[436,[-1,-2]]],[],[]],[-1,-1,[]],[[[397,[-1,-2]]],[[436,[-1,-2]]],[],[]],[[[84,[-1]]],[[436,[-1,-2]]],[],[]],[[[84,[-1]]],[[450,[-1,-2]]],[],[]],[-1,-1,[]],[[[22,[-1,-1,-1]]],[[450,[-1,-2]]],[],[]],[[[451,[-1,-2]]],[[450,[-1,-2]]],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[397,[-1,-2]]],[[456,[-1,-2,-3]]],[],[],[]],[-1,-1,[]],[[[451,[-1,-2]]],[[457,[-1,-2,-3]]],[],[],[]],[-1,-1,[]],[[[84,[-1]]],[[397,[-1,-2]]],[],[]],[[[22,[-1,-1]]],[[397,[-1,-2]]],[],[]],[[[436,[-1,-2]]],[[397,[-1,-2]]],[],[]],[[[22,[-1,-1,-1]]],[[451,[-1,-2]]],[],[]],[-1,-1,[]],[[[84,[-1]]],[[451,[-1,-2]]],[],[]],[[[461,[-1,-2,-3]]],[[465,[-1,-2,-3]]],[],[],[]],[[[451,[-1,-2]]],[[465,[-1,-3,-2]]],[],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[398,[-1]],-1],[[397,[-1,-2]]],[425,[103,[],[[19,[]]]],104],[]],[[[84,[-1]]],[[349,[-1,-2,-3]]],104,[],[]],[[[84,[-1]]],[[460,[-1,-2,-3]]],104,[],[]],[[[84,[[84,[-1]]]]],[[349,[-1,-2,-3]]],104,[],[]],[[[84,[[84,[-1]]]]],[[460,[-1,-2,-3]]],104,[],[]],[[[452,[-1,-2]]],[[455,[-1,-2]]],104,[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[376,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]],[452,[-1,-2]]],[[453,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]],[452,[-1,-2]],[452,[-1,-2]]],[[455,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[436,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]],[452,[-1,-2]]],[[450,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[397,[-1,-2]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]],[452,[-1,-2]]],[[451,[-1,-2]]],[],[]],[[[376,[-1,-2]],[436,[-1,-2]]],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[-1,[[401,[-2,-3]]],33,[104,469,212],[]],[-1,[[463,[-2,-3]]],33,[104,469,212],[]],[-1,[[462,[-2,-3]]],33,[104,469,212,[114,[],[[19,[]]]]],[]],[[[461,[-1,-2,-3]]],[[465,[-1,-2,-3]]],[],[],[]],[[[454,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[436,[-1,-2]]],[[401,[-1,-2]]],469,[]],[[[450,[-1,-2]]],[[463,[-1,-2]]],469,[]],[[[436,[-1,-2]]],[[462,[-1,-2]]],469,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[451,[-1,-2]]],[[465,[-1,-3,-2]]],[],[],[]],[[[401,[-1,348]]],[[401,[-1,-2]]],104,[]],[[[463,[-1,348]]],[[463,[-1,-2]]],104,[]],[[[376,[-1,348]]],[[376,[-1,-2]]],[],[]],[[[453,[-1,348]]],[[453,[-1,-2]]],[],[]],[[[462,[-1,348]]],[[462,[-1,-2]]],104,[]],[[[464,[-1,348,348]]],[[464,[-1,-2,-3]]],104,[],[]],[[[461,[-1,348,348]]],[[461,[-1,-2,-3]]],104,[],[]],[[[436,[-1,348]]],[[436,[-1,-2]]],[],[]],[[[450,[-1,348]]],[[450,[-1,-2]]],[],[]],[[[349,[-1,348,348]]],[[349,[-1,-2,-3]]],104,[],[]],[[[460,[-1,348,348]]],[[460,[-1,-2,-3]]],104,[],[]],[[[456,[-1,348,348]]],[[456,[-1,-2,-3]]],104,[],[]],[[[457,[-1,348,348]]],[[457,[-1,-2,-3]]],104,[],[]],[[[397,[-1,348]]],[[397,[-1,-2]]],[],[]],[[[451,[-1,348]]],[[451,[-1,-2]]],[],[]],[[[465,[-1,348,348]]],[[465,[-1,-2,-3]]],[],[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[455,[-1,-2]]],[[433,[],[[19,[]]]]],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[455,[-1,-2]]],[[433,[],[[19,[]]]]],[]],[[[452,[-1,-2]]],-1,48,[]],[[[454,[-1,-2,-3]]],-1,[],[],[]],[[[464,[-1,-2,-3]]],[[398,[-1]]],104,[],[]],[[[436,[-1,-2]],[436,[-1,-2]]],458,212,[]],[[[450,[-1,-2]],[450,[-1,-2]]],459,212,[]],[[[397,[-1,-2]],[397,[-1,-2]]],458,212,[]],[[[451,[-1,-2]],[451,[-1,-2]]],459,212,[]],[[[401,[-1,-2]],-3],22,92,[],91],[[[463,[-1,-2]],-3],22,92,[],91],[[[468,[-1,-2]],-3],22,92,[],91],[[[452,[-1,-2]],-3],22,92,[],91],[[[376,[-1,-2]],-3],22,92,[],91],[[[453,[-1,-2]],-3],22,92,[],91],[[[462,[-1,-2]],-3],22,92,[],91],[[[464,[-1,-2,-3]],-4],22,92,[],[],91],[[[461,[-1,-2,-3]],-4],22,92,[],[],91],[[[454,[-1,-2,-3]],-4],22,92,[],[],91],[[[455,[-1,-2]],-3],22,92,[],91],[[[436,[-1,-2]],-3],22,92,[],91],[[[450,[-1,-2]],-3],22,92,[],91],[[[349,[-1,-2,-3]],-4],22,92,[],[],91],[[[460,[-1,-2,-3]],-4],22,92,[],[],91],[[[456,[-1,-2,-3]],-4],22,92,[],[],91],[[[457,[-1,-2,-3]],-4],22,92,[],[],91],[[[397,[-1,-2]],-3],22,92,[],91],[[[451,[-1,-2]],-3],22,92,[],91],[[[465,[-1,-2,-3]],-4],22,92,92,92,91],[[458,-1],22,91],[[459,-1],22,91],[[348,-1],22,91],[[[401,[-1,-2]]],-1,[104,[114,[],[[19,[]]]]],[]],[[[463,[-1,-2]]],-1,[104,[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],0,0,[[[455,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],0,[[],[[464,[-1,-2,-3]]],434,[],[]],[[],[[461,[-1,-2,-3]]],[434,418],[],[]],[[],[[454,[-1,-2,-3]]],467,[],[]],[[],[[349,[-1,-2,-3]]],[469,467],[],[]],[[],[[460,[-1,-2,-3]]],[469,467],[],[]],[[],[[456,[-1,-2,-3]]],469,[],[]],[[],[[457,[-1,-2,-3]]],469,[],[]],[[],[[465,[-1,-2,-3]]],[],[],[]],[[[401,[-1,-2]],-1,-1],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[463,[-1,-2]],-1,-1,-1],[[463,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]],-1,-1],[[462,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[[401,[-1,-2]],[455,[-1,-2]]],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]],[455,[-1,-2]]],[[462,[-1,-2]]],[104,469,212,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[401,[-1,-2]],[401,[-1,-2]]],[[62,[[401,[-1,-2]]]]],[104,212],[]],[[[463,[-1,-2]],[463,[-1,-2]]],[[62,[[463,[-1,-2]]]]],[104,212],[]],[[[462,[-1,-2]],[462,[-1,-2]]],[[62,[[462,[-1,-2]]]]],[104,212,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[401,[-1,-2]],[401,[-1,-2]]],[[401,[-1,-2]]],[104,212],[]],[[[463,[-1,-2]],[463,[-1,-2]]],[[463,[-1,-2]]],[104,212],[]],[[[401,[-1,-2]],[401,[-1,-2]]],8,212,[]],[[[463,[-1,-2]],[463,[-1,-2]]],8,212,[]],[[[462,[-1,-2]],[462,[-1,-2]]],8,[104,212,[20,[],[[19,[]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[376,[-1,-2]]],[[84,[-1]]],[],[]],[[[376,[-1,-2]]],[[22,[-1,-1]]],[],[]],[-1,-2,[],[]],[[[453,[-1,-2]]],[[84,[-1]]],[],[]],[[[453,[-1,-2]]],[[22,[-1,-1,-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[436,[-1,-2]]],[[84,[-1]]],[],[]],[-1,-2,[],[]],[[[436,[-1,-2]]],[[22,[-1,-1]]],[],[]],[[[450,[-1,-2]]],[[22,[-1,-1,-1]]],[],[]],[-1,-2,[],[]],[[[450,[-1,-2]]],[[84,[-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[456,[-1,-2,-3]]],[[349,[-1,-2,-3]]],[469,467],[],[]],[[[456,[-1,-2,-3]]],[[397,[-1,-2]]],[],[],[]],[-1,-2,[],[]],[[[457,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[469,467],[],[]],[-1,-2,[],[]],[[[457,[-1,-2,-3]]],[[451,[-1,-2]]],[],[],[]],[[[397,[-1,-2]]],[[22,[-1,-1]]],[],[]],[-1,-2,[],[]],[[[397,[-1,-2]]],[[84,[-1]]],[],[]],[[[451,[-1,-2]]],[[22,[-1,-1,-1]]],[],[]],[-1,-2,[],[]],[[[451,[-1,-2]]],[[84,[-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[464,[-1,-2,-3]]],[[464,[-1,-3,-2]]],435,[],[]],[[[461,[-1,-2,-3]]],[[461,[-1,-3,-2]]],435,[],[]],[[[454,[-1,-2,-3]]],[[454,[-3,-2]]],[467,426],[],[]],[[[349,[-1,-2,-3]]],[[62,[[349,[-1,-3,-2]]]]],[104,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],67,469,467],[],[]],[[[460,[-1,-2,-3]]],[[62,[[460,[-1,-3,-2]]]]],[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[456,[-1,-2,-3]]],[[456,[-3,-2]]],[433,104],[],[]],[[[457,[-1,-2,-3]]],[[457,[-3,-2]]],[433,104],[],[]],[[[465,[-1,-2,-3]]],[[465,[-1,-3,-2]]],[],[],[]],[[[460,[-1,-2,-3]]],8,[469,467,67],[],[]],[[[460,[-1,-2,-3]]],8,[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[401,[-1,-2]]],8,212,[]],[[[463,[-1,-2]]],8,212,[]],[[[462,[-1,-2]]],8,[104,469,212],[]],[[[436,[-1,-2]]],8,[469,212],[]],[[[450,[-1,-2]]],8,[469,212],[]],[[[401,[-1,-2]]],8,60,[]],[[[463,[-1,-2]]],8,60,[]],[[[376,[-1,-2]]],8,60,[]],[[[453,[-1,-2]]],8,60,[]],[[[462,[-1,-2]]],8,60,[]],[[[436,[-1,-2]]],8,60,[]],[[[450,[-1,-2]]],8,60,[]],[[[397,[-1,-2]]],8,60,[]],[[[451,[-1,-2]]],8,60,[]],[[[454,[-1,-2,-3]]],8,[67,467],[],[]],[[[456,[-1,-2,-3]]],8,[469,67],[],[]],[[[457,[-1,-2,-3]]],8,[469,67],[],[]],[[[349,[-1,-2,-3]]],8,[104,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],67,469,467],[],[]],[[[460,[-1,-2,-3]]],8,[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[401,[-1,-2]]],8,212,[]],[[[463,[-1,-2]]],8,212,[]],[[[461,[-1,-2,-3]]],8,[],[],[]],[[[436,[-1,-2]]],8,449,[]],[[[450,[-1,-2]]],8,449,[]],[[[455,[-1,-2]]],8,[469,67],[]],0,0,0,[[[397,[-1,-2]]],-1,435,[]],[[[451,[-1,-2]]],-1,435,[]],[[[401,[-1,-2]],[401,[-1,-2]],-1],[[401,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[463,[-1,-2]],[463,[-1,-2]],-1],[[463,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[452,[-1,-2]],[452,[-1,-2]],-1],[[452,[-1,-2]]],[467,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[20,[],[[19,[]]]],48],[]],[[[376,[-1,-2]],[376,[-1,-2]],-1],[[376,[-1,-2]]],[467,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[20,[],[[19,[]]]],104],[]],[[[453,[-1,-2]],[453,[-1,-2]],-1],[[453,[-1,-2]]],[467,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[20,[],[[19,[]]]],104],[]],[[[462,[-1,-2]],[462,[-1,-2]],-1],[[462,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[461,[-1,-2,-3]],[461,[-1,-2,-3]],-1],[[461,[-1,-2,-3]]],435,[],[]],[[[436,[-1,-2]],[436,[-1,-2]],-1],[[436,[-1,-2]]],[467,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[20,[],[[19,[]]]],104],[]],[[[450,[-1,-2]],[450,[-1,-2]],-1],[[450,[-1,-2]]],[467,[114,[],[[19,[]]]],[103,[],[[19,[]]]],[20,[],[[19,[]]]],104],[]],[[[397,[-1,-2]],[397,[-1,-2]],-1],[[397,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[451,[-1,-2]],[451,[-1,-2]],-1],[[451,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[436,[-1,-2]],[436,[-1,-2]]],458,212,[]],[[[450,[-1,-2]],[450,[-1,-2]]],459,212,[]],[[[397,[-1,-2]],[397,[-1,-2]]],458,212,[]],[[[451,[-1,-2]],[451,[-1,-2]]],459,212,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[452,[-1,-2]],[452,[-1,-2]]],[[452,[-1,-2]]],212,[]],[[[376,[-1,-2]],[376,[-1,-2]]],[[376,[-1,-2]]],212,[]],[[[453,[-1,-2]],[453,[-1,-2]]],[[453,[-1,-2]]],212,[]],[[[462,[-1,-2]]],[[376,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[[454,[-1,-2,-3]]],212,[],[]],[[[436,[-1,-2]],[436,[-1,-2]]],[[436,[-1,-2]]],212,[]],[[[450,[-1,-2]],[450,[-1,-2]]],[[450,[-1,-2]]],212,[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],212,[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],212,[]],0,0,[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[452,[-1,-2]]],212,[]],[[[376,[-1,-2]],[376,[-1,-2]]],[[376,[-1,-2]]],212,[]],[[[453,[-1,-2]],[453,[-1,-2]]],[[453,[-1,-2]]],212,[]],[[[462,[-1,-2]]],[[376,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[[454,[-1,-2,-3]]],212,[],[]],[[[436,[-1,-2]],[436,[-1,-2]]],[[436,[-1,-2]]],212,[]],[[[450,[-1,-2]],[450,[-1,-2]]],[[450,[-1,-2]]],212,[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],212,[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],212,[]],0,0,[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],[[[401,[-1,-2]],-1],[],[104,103],[]],[[[401,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[463,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[463,[-1,-2]],-1],[],[104,103],[]],[[[452,[-1,-2]],[454,[-1,-2,-3]]],[],103,[],[]],[[[452,[-1,-2]],-1],[],103,[]],[[[376,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[376,[-1,-2]],-1],[],[104,103],[]],[[[453,[-1,-2]],-1],[],[104,103],[]],[[[453,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[462,[-1,-2]],-1],[],[104,103],[]],[[[462,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[454,[-1,-2,-3]],[454,[-1,-3,-4]]],[],103,[],[],[]],[[[455,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[455,[-1,-2]],-1],[],[104,103],[]],[[[436,[-1,-2]],-1],[],[104,103],[]],[[[436,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[450,[-1,-2]],-1],[],[104,103],[]],[[[450,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[397,[-1,-2]],-1],[],[104,103],[]],[[[397,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[451,[-1,-2]],[454,[-1,-2,-3]]],[],[104,103],[],[]],[[[451,[-1,-2]],-1],[],[104,103],[]],[[[401,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[401,[-1,-2]],-1],22,[104,432],[]],[[[463,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[463,[-1,-2]],-1],22,[104,432],[]],[[[452,[-1,-2]],-1],22,[104,[103,[],[[19,[]]]]],[]],[[[376,[-1,-2]],-1],22,[104,[103,[],[[19,[]]]]],[]],[[[376,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[453,[-1,-2]],-1],22,[104,432],[]],[[[453,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[462,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[462,[-1,-2]],-1],22,[104,432],[]],[[[455,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[455,[-1,-2]],-1],22,[104,432],[]],[[[436,[-1,-2]],-1],22,[104,432],[]],[[[436,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[450,[-1,-2]],-1],22,[104,432],[]],[[[450,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[397,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[397,[-1,-2]],-1],22,[104,[103,[],[[19,[]]]]],[]],[[[451,[-1,-2]],-1],22,[104,[103,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[454,[-1,-2,-2]]],22,[104,432],[]],[[[460,[-1,-2,-3]],-1],[[460,[-1,-2,-3]]],[[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,[433,[],[[19,[]]]],[20,[],[[19,[]]]],212,467,469],[],[]],[[[452,[-1,-2]]],[],433,[]],[[[376,[-1,-2]]],[],433,[]],[[[453,[-1,-2]]],[],433,[]],[[[455,[-1,-2]]],[[455,[-1,-2]]],[[433,[],[[19,[]]]]],[]],[[[436,[-1,-2]]],[],433,[]],[[[450,[-1,-2]]],[],433,[]],[[[397,[-1,-2]]],[],433,[]],[[[451,[-1,-2]]],[],433,[]],[[[376,[-1,-2]],[376,[-1,-2]]],[[401,[-1,-2]]],[],[]],[[[453,[-1,-2]],[453,[-1,-2]]],[[463,[-1,-2]]],[],[]],[[-1,-1,-1,-1],[[468,[-1,-2]]],[],[]],[-1,[[452,[-1,-2]]],[],[]],[[-1,-1],[[376,[-1,-2]]],[],[]],[[-1,-1,-1],[[453,[-1,-2]]],[],[]],[[[376,[-1,-2]],[436,[-1,-2]]],[[462,[-1,-2]]],[],[]],[[[398,[-1]]],[[464,[-1,-2,-3]]],[],[],[]],[-1,[[454,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1],[[455,[-1,-2]]],[],[]],[[-1,-1],[[436,[-1,-2]]],[],[]],[[-1,-1,-1],[[450,[-1,-2]]],[],[]],[[-1,-1,-1,-1,-1,-1],[[349,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1],[[460,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[456,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1],[[457,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[397,[-1,-2]]],[],[]],[[-1,-1,-1],[[451,[-1,-2]]],[],[]],[[[461,[-1,-2,-3]],[451,[-1,-3]]],[[465,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1,-1,-1],[[460,[-1,-2,-3]]],[469,467],[],[]],[-1,[[455,[-1,-2]]],104,[]],[[[451,[-1,-2]],[461,[-1,-2,-3]]],[[465,[-1,-2,-3]]],[],[],[]],[458,8],[459,8],[[[461,[-1,-2,-3]]],-1,435,[],[]],[[[461,[-1,-2,-3]]],[[461,[-1,-2,-3]]],435,[],[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],435,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],435,[]],[458,458],[459,459],[[[436,[-1,-2]],[436,[-1,-2]]],458,67,[]],[[[450,[-1,-2]],[450,[-1,-2]]],459,67,[]],[[[397,[-1,-2]],[397,[-1,-2]]],458,67,[]],[[[451,[-1,-2]],[451,[-1,-2]]],459,67,[]],0,[[],[[454,[-1,-2,-3]]],467,[],[]],[[],[[397,[-1,-2]]],467,[]],[[],[[451,[-1,-2]]],467,[]],[[458,458],458],[[459,459],459],[[],[[376,[-1,-2]]],469,[]],[[],[[453,[-1,-2]]],469,[]],0,[[-1,-1,-1,-1,-1,-1],[[460,[-1,-2,-3]]],[],[],[]],[[[401,[-1,-2]],[455,[-1,-2]]],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]],[455,[-1,-2]]],[[462,[-1,-2]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[349,[-1,-2,-3]],[401,[-1,-2]]],[[401,[-1,-3]]],[[114,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[460,[-1,-2,-3]],[401,[-1,-2]]],[[62,[[401,[-1,-3]]]]],[[114,[],[[19,[]]]],[426,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[460,[-1,-2,-3]],[463,[-1,-2]]],[[62,[[463,[-1,-3]]]]],[[114,[],[[19,[]]]],[426,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[349,[-1,-2,-3]],[462,[-1,-2]]],[[462,[-1,-3]]],[[114,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[460,[-1,-2,-3]],[462,[-1,-2]]],[[62,[[462,[-1,-3]]]]],[[114,[],[[19,[]]]],[426,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[62,[109]]],212,[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[[62,[109]]],212,[],[]],[[348,348],[[62,[109]]]],[-1,[[460,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[376,[-1,-2]]],[],[]],[[-1,-1,-1],[[453,[-1,-2]]],[],[]],[[[376,[30,-1]]],[[376,[30,348]]],[]],[[[349,[-1,-2,-3]],[398,[-1]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],469,425],[],[]],[[[460,[-1,-2,-3]],-1,-1,-1,[398,[-1]]],[[460,[-1,-2,-3]]],[[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,469,467,425],[],[]],[[[349,[-1,-2,-3]],-1,-1],[[349,[-1,-2,-3]]],[104,[103,[],[[19,[]]]]],[],[]],[[[460,[-1,-2,-3]],-1,-1,-1],[[460,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[349,[-1,-2,-3]],[397,[-1,-2]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[460,[-1,-2,-3]],[451,[-1,-2]]],[[460,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[[114,[],[[19,[]]]],[426,[],[[19,[]]]],104,[103,[],[[19,[]]]],[20,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[[114,[],[[19,[]]]],[426,[],[[19,[]]]],104,[103,[],[[19,[]]]],[20,[],[[19,[]]]]],[]],[[[460,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[104,[103,[],[[19,[]]]],[426,[],[[19,[]]]],469,467,67],[],[]],[[-1,-1,-1,-1],[[461,[-1,-2,-3]]],[],[],[]],0,[-1,[[464,[-1,-2,-3]]],[],[],[]],0,[425,425],[[-1,-1,-1,-1],[[462,[-1,-2]]],[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[467,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],104],[]],[[[376,[-1,-2]],[436,[-1,-2]]],[[376,[-1,-2]]],470,[]],[[[453,[-1,-2]],[450,[-1,-2]]],[[453,[-1,-2]]],470,[]],0,[[[397,[-1,-2]]],[[397,[-1,-2]]],60,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],60,[]],[[[398,[-1]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],469,425],[],[]],[[-1,-1,-1,[398,[-1]]],[[460,[-1,-2,-3]]],[],[],[]],0,[[[401,[-1,-2]]],[[401,[-1,-2]]],472,[]],[[[463,[-1,-2]]],[[463,[-1,-2]]],472,[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],[472,104],[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],472,[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],[472,104],[]],[[[453,[-1,-2]]],[[453,[-1,-2]]],472,[]],[[[462,[-1,-2]]],[[462,[-1,-2]]],[471,466,472,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],[472,104],[]],[[[436,[-1,-2]]],[[436,[-1,-2]]],472,[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],[472,104],[]],[[[450,[-1,-2]]],[[450,[-1,-2]]],472,[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],472,[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],[472,104],[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],472,[]],[[[451,[-1,-2]]],[[451,[-1,-2]]],[472,104],[]],[[[401,[-1,-2]]],[[401,[-1,-2]]],[471,466],[]],[[[463,[-1,-2]]],[[463,[-1,-2]]],[471,466],[]],[[[462,[-1,-2]]],[[462,[-1,-2]]],[471,466,472,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[401,[-1,-2]]],[[401,[-1,-2]]],[471,466],[]],[[[463,[-1,-2]]],[[463,[-1,-2]]],[471,466],[]],[[[462,[-1,-2]]],[[462,[-1,-2]]],[471,466,472,[20,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[452,[-1,-2]]],473,[]],[[[452,[-1,-2]],[452,[-1,-2]]],[[452,[-1,-2]]],473,[]],[[[401,[-2,-3]],-1,-1],[[401,[-2,-3]]],104,[[103,[-1],[[19,[]]]],104],[]],[[[463,[-2,-3]],-1,-1,-1],[[463,[-2,-3]]],104,[[103,[-1],[[19,[]]]],104],[]],[[[462,[-2,-3]],-1,-1],[[462,[-2,-3]]],104,[104,[103,[-1],[[19,[]]]]],[]],[[-1,-1],[[349,[-1,-2,-3]]],469,[],[]],[[-1,-1,-1],[[460,[-1,-2,-3]]],[469,467],[],[]],[[458,[376,[-1,-2]],[376,[-1,-2]]],[[376,[-1,-2]]],[],[]],[[459,[453,[-1,-2]],[453,[-1,-2]]],[[453,[-1,-2]]],[],[]],[[458,[436,[-1,-2]],[436,[-1,-2]]],[[436,[-1,-2]]],[],[]],[[459,[450,[-1,-2]],[450,[-1,-2]]],[[450,[-1,-2]]],[],[]],[[458,[397,[-1,-2]],[397,[-1,-2]]],[[397,[-1,-2]]],[],[]],[[459,[451,[-1,-2]],[451,[-1,-2]]],[[451,[-1,-2]]],[],[]],[[[401,[-1,-2]],[436,[-1,-2]]],22,[104,[114,[],[[19,[]]]]],[]],[425,425],[[[401,[-1,-2]]],[[436,[-1,-2]]],[104,[114,[],[[19,[]]]]],[]],[[[463,[-1,-2]]],[[450,[-1,-2]]],[104,[114,[],[[19,[]]]]],[]],0,[[-1,-1],[[436,[-1,-2]]],[],[]],[[-1,-1,-1],[[450,[-1,-2]]],[],[]],[[[398,[-1]],[398,[-1]]],[[460,[-1,-2,-3]]],[425,469,467],[],[]],[[[461,[-1,-2,-3]],[461,[-1,-2,-3]],-1],[[461,[-1,-2,-3]]],[],[],[]],[-1,[[376,[-1,-2]]],48,[]],[-1,[[453,[-1,-2]]],48,[]],[-1,[[436,[-1,-2]]],48,[]],[-1,[[450,[-1,-2]]],48,[]],[-1,[[456,[-1,-2,-3]]],48,[],[]],[-1,[[457,[-1,-2,-3]]],48,[],[]],[-1,[[397,[-1,-2]]],48,[]],[-1,[[451,[-1,-2]]],48,[]],[[[397,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[20,[],[[19,[]]]]],[]],[[[451,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[20,[],[[19,[]]]]],[]],[[[461,[-1,-2,-3]]],-1,435,[],[]],[[[452,[-1,-2]],[452,[-1,-2]]],[],114,[]],[[[376,[-1,-2]],[376,[-1,-2]]],[],114,[]],[[[376,[-1,-2]],[397,[-1,-2]]],[],114,[]],[[[376,[-1,-2]],[436,[-1,-2]]],[],114,[]],[[[453,[-1,-2]],[451,[-1,-2]]],[],114,[]],[[[453,[-1,-2]],[453,[-1,-2]]],[],114,[]],[[[453,[-1,-2]],[450,[-1,-2]]],[],114,[]],[[[454,[-1,-2,-3]],[454,[-1,-2,-3]]],[],114,[],[]],[[[455,[-1,-2]],[455,[-1,-2]]],[[455,[-1,-2]]],[[114,[],[[19,[]]]]],[]],[[[436,[-1,-2]],[436,[-1,-2]]],[],114,[]],[[[450,[-1,-2]],[450,[-1,-2]]],[],114,[]],[[[456,[-1,-2,-3]],[456,[-1,-4,-3]]],[],114,[],[],[]],[[[457,[-1,-2,-3]],[457,[-1,-4,-3]]],[],114,[],[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],[],114,[]],[[[451,[-1,-2]],[451,[-1,-2]]],[],114,[]],[[[452,[-1,-2]],[452,[-1,-2]]],22,437,[]],[[[376,[-1,-2]],[397,[-1,-2]]],22,[104,[114,[],[[19,[]]]]],[]],[[[376,[-1,-2]],[436,[-1,-2]]],22,437,[]],[[[453,[-1,-2]],[451,[-1,-2]]],22,[104,[114,[],[[19,[]]]]],[]],[[[453,[-1,-2]],[450,[-1,-2]]],22,437,[]],[[[455,[-1,-2]],[455,[-1,-2]]],22,437,[]],[[[436,[-1,-2]],[436,[-1,-2]]],22,437,[]],[[[450,[-1,-2]],[450,[-1,-2]]],22,437,[]],[[[456,[-1,-2,-3]],[456,[-1,-3,-3]]],22,437,[],[]],[[[457,[-1,-2,-3]],[457,[-1,-3,-3]]],22,437,[],[]],[[[397,[-1,-2]],[397,[-1,-2]]],22,[104,[114,[],[[19,[]]]]],[]],[[[451,[-1,-2]],[451,[-1,-2]]],22,[104,[114,[],[[19,[]]]]],[]],[-3,[[452,[-1,-2]]],[[20,[],[[19,[]]]],104,469],[],[[126,[],[[32,[[452,[-1,-2]]]]]]]],[-3,[[452,[-1,-2]]],[[20,[],[[19,[]]]],469],[],[[126,[],[[32,[[452,[-1,-2]]]]]]]],[-3,[[436,[-1,-2]]],[[20,[],[[19,[]]]],469],[],[[126,[],[[32,[[436,[-1,-2]]]]]]]],[-3,[[436,[-1,-2]]],[[20,[],[[19,[]]]],104,469],[],[[126,[],[[32,[[436,[-1,-2]]]]]]]],[-3,[[450,[-1,-2]]],[[20,[],[[19,[]]]],469],[],[[126,[],[[32,[[450,[-1,-2]]]]]]]],[-3,[[450,[-1,-2]]],[[20,[],[[19,[]]]],104,469],[],[[126,[],[[32,[[450,[-1,-2]]]]]]]],[-3,[[397,[-1,-2]]],[[20,[],[[19,[]]]],469],[],[[126,[],[[32,[[397,[-1,-2]]]]]]]],[-3,[[397,[-1,-2]]],[[20,[],[[19,[]]]],104,469],[],[[126,[],[[32,[[397,[-1,-2]]]]]]]],[-3,[[451,[-1,-2]]],[[20,[],[[19,[]]]],469],[],[[126,[],[[32,[[451,[-1,-2]]]]]]]],[-3,[[451,[-1,-2]]],[[20,[],[[19,[]]]],104,469],[],[[126,[],[[32,[[451,[-1,-2]]]]]]]],[425,425],[[[464,[-1,-2,-3]],[464,[-1,-4,-2]]],[[464,[-1,-4,-3]]],435,[],[],[]],[[[461,[-1,-2,-3]],[461,[-1,-3,-4]]],[[461,[-1,-2,-4]]],[],[],[],[]],[[[349,[-1,-2,-3]],[349,[-1,-3,-4]]],[[349,[-1,-2,-4]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[],[]],[[[460,[-1,-2,-3]],[460,[-1,-3,-4]]],[[460,[-1,-2,-4]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[],[]],[[[465,[-1,-2,-3]],[465,[-1,-3,-4]]],[[465,[-1,-2,-4]]],[],[],[],[]],[[[349,[-1,-2,-3]],[398,[-1]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],469,425],[],[]],[[[460,[-1,-2,-3]],-1,-1,-1,[398,[-1]]],[[460,[-1,-2,-3]]],[[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],[426,[],[[19,[]]]],104,469,467,425],[],[]],[[[349,[-1,-2,-3]],-1,-1],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469],[],[]],[[[460,[-1,-2,-3]],-1,-1,-1],[[460,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[349,[-1,-2,-3]],[397,[-1,-3]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[460,[-1,-2,-3]],[451,[-1,-3]]],[[460,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]],469,467],[],[]],[[[453,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[460,[-1,-2,-3]]],[[349,[-1,-2,-3]]],104,[],[]],[[[451,[-1,-2]]],[[397,[-1,-2]]],104,[]],[[[376,[-1,-2]]],[[453,[-1,-2]]],[469,104],[]],[[[464,[-1,-2,-3]]],[[461,[-1,-2,-3]]],435,[],[]],[[[349,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[469,467,104],[],[]],[[[397,[-1,-2]]],[[451,[-1,-2]]],[469,104],[]],[[[376,[-1,-2]]],[[84,[-1]]],104,[]],[[[453,[-1,-2]]],[[84,[-1]]],104,[]],[[[436,[-1,-2]]],[[84,[-1]]],104,[]],[[[450,[-1,-2]]],[[84,[-1]]],104,[]],[[[349,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[460,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[456,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[457,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[397,[-1,-2]]],[[84,[-1]]],104,[]],[[[451,[-1,-2]]],[[84,[-1]]],104,[]],[[[453,[-1,-2]]],[[84,[-1]]],[467,104],[]],[[[451,[-1,-2]]],[[84,[-1]]],[469,104],[]],[[[349,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[460,[-1,-2,-3]]],[[84,[-1]]],104,[],[]],[[[349,[-1,-2,-3]]],[[84,[[84,[-1]]]]],104,[],[]],[[[460,[-1,-2,-3]]],[[84,[[84,[-1]]]]],104,[],[]],[[[460,[-1,-2,-3]]],[[84,[[84,[-1]]]]],104,[],[]],[[[462,[-1,-2]]],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[401,[-1,-2]]],[[401,[30,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[30,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[30,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[30,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[30,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[30,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[30,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[30,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[30,-2]]],[421,104],[]],[[[401,[-1,-2]]],[[401,[87,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[87,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[87,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[87,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[87,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[87,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[87,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[87,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[87,-2]]],[421,104],[]],[[[401,[-1,-2]]],[[401,[448,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[448,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[448,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[448,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[448,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[448,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[448,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[448,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[448,-2]]],[421,104],[]],[[[401,[-1,-2]]],[[401,[88,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[88,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[88,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[88,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[88,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[88,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[88,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[88,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[88,-2]]],[421,104],[]],[[[401,[-1,-2]]],[[62,[[401,[-1,-2]]]]],[104,212],[]],[[[463,[-1,-2]]],[[62,[[463,[-1,-2]]]]],[104,212],[]],[[[462,[-1,-2]]],[[62,[[462,[-1,-2]]]]],[104,469,212],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[397,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[451,[-1,-2]]],[[453,[-1,-2]]],104,[]],[[[468,[-1,-2]]],[[62,[[376,[-1,-2]]]]],[104,[426,[],[[19,[]]]],469,212],[]],[[[468,[-1,-2]]],[[62,[[453,[-1,-2]]]]],[104,[426,[],[[19,[]]]],469,212],[]],[[[401,[-1,-2]]],[[462,[-1,-2]]],[104,[114,[],[[19,[]]]]],[]],[[[397,[-1,-2]]],[[436,[-1,-2]]],104,[]],[[[464,[-1,-2,-3]]],[[349,[-1,-2,-3]]],[104,[20,[],[[19,[]]]],[114,[],[[19,[]]]],[103,[],[[19,[]]]],434,425],[],[]],[[[461,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[],[],[]],[[[456,[-1,-2,-3]]],[[349,[-1,-2,-3]]],[469,467,104],[],[]],[[[457,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[469,467,104],[],[]],[[[397,[-1,-2]]],[[349,[-1,-2,-2]]],[469,467,104],[]],[[[451,[-1,-2]]],[[460,[-1,-2,-2]]],[469,467,104],[]],[[[465,[-1,-2,-3]]],[[460,[-1,-2,-3]]],[],[],[]],[[[376,[-1,-2]]],[[22,[-1,-1]]],104,[]],[[[453,[-1,-2]]],[[22,[-1,-1,-1]]],104,[]],[[[436,[-1,-2]]],[[22,[-1,-1]]],104,[]],[[[450,[-1,-2]]],[[22,[-1,-1,-1]]],104,[]],[[[456,[-1,-2,-3]]],[[22,[-1,-1]]],104,[],[]],[[[457,[-1,-2,-3]]],[[22,[-1,-1,-1]]],104,[],[]],[[[397,[-1,-2]]],[[22,[-1,-1]]],104,[]],[[[451,[-1,-2]]],[[22,[-1,-1,-1]]],104,[]],[[[453,[-1,-2]]],[[22,[-1,-1,-1,-1]]],[467,104],[]],[[[451,[-1,-2]]],[[22,[-1,-1,-1,-1]]],[469,104],[]],[[[401,[-1,-2]]],[[401,[58,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[58,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[58,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[58,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[58,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[58,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[58,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[58,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[58,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[90,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[90,-2]]],[421,104],[]],[[[401,[-1,-2]]],[[401,[-1,348]]],104,[]],[[[463,[-1,-2]]],[[463,[-1,348]]],104,[]],[[[376,[-1,-2]]],[[376,[-1,348]]],104,[]],[[[453,[-1,-2]]],[[453,[-1,348]]],104,[]],[[[462,[-1,-2]]],[[462,[-1,348]]],104,[]],[[[464,[-1,-2,-3]]],[[464,[-1,348,348]]],104,[],[]],[[[461,[-1,-2,-3]]],[[461,[-1,348,348]]],104,[],[]],[[[436,[-1,-2]]],[[436,[-1,348]]],104,[]],[[[450,[-1,-2]]],[[450,[-1,348]]],104,[]],[[[349,[-1,-2,-3]]],[[349,[-1,348,348]]],104,[],[]],[[[460,[-1,-2,-3]]],[[460,[-1,348,348]]],104,[],[]],[[[456,[-1,-2,-3]]],[[456,[-1,348,348]]],104,[],[]],[[[457,[-1,-2,-3]]],[[457,[-1,348,348]]],104,[],[]],[[[397,[-1,-2]]],[[397,[-1,348]]],104,[]],[[[451,[-1,-2]]],[[451,[-1,348]]],104,[]],[[[465,[-1,-2,-3]]],[[465,[-1,348,348]]],[],[],[]],[[[401,[-1,-2]]],[[401,[56,-2]]],[421,104],[]],[[[463,[-1,-2]]],[[463,[56,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[376,[56,-2]]],[421,104],[]],[[[453,[-1,-2]]],[[453,[56,-2]]],[421,104],[]],[[[462,[-1,-2]]],[[462,[56,-2]]],[421,104],[]],[[[436,[-1,-2]]],[[436,[56,-2]]],[421,104],[]],[[[450,[-1,-2]]],[[450,[56,-2]]],[421,104],[]],[[[397,[-1,-2]]],[[397,[56,-2]]],[421,104],[]],[[[451,[-1,-2]]],[[451,[56,-2]]],[421,104],[]],[[[376,[-1,-2]]],[[397,[-1,-2]]],104,[]],[[[453,[-1,-2]]],[[451,[-1,-2]]],104,[]],[[[436,[-1,-2]]],[[397,[-1,-2]]],104,[]],[[[450,[-1,-2]]],[[451,[-1,-2]]],104,[]],[[[456,[-1,-2,-3]]],[[397,[-1,-2]]],104,[],[]],[[[457,[-1,-2,-3]]],[[451,[-1,-2]]],104,[],[]],0,[[[456,[-1,-2,-3]],[401,[-1,-2]]],[[401,[-3]]],[20,104],[],[]],[[[454,[-1,-2,-3]],[401,[-1,-2]]],[[401,[-3]]],[104,103],[],[]],[[[457,[-1,-2,-3]],[401,[-1,-2]]],[[401,[-3]]],[20,104],[],[]],[[[454,[-1,-2,-3]],[463,[-1,-2]]],[[463,[-3]]],[104,103],[],[]],[[[457,[-1,-2,-3]],[463,[-1,-2]]],[[463,[-3]]],[20,104],[],[]],[[[464,[-1,348,348]],[376,[-1,348]]],[[376,[-1,348]]],409],[[[464,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-1,-3]]],435,[],[]],[[[454,[-1,348,348]],[376,[-1,348]]],[[376,[-1,348]]],409],[[[454,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-3]]],[104,103],[],[]],[[[349,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[349,[-1,348,348]],[376,[-1,348]]],[[376,[-1,348]]],409],[[[456,[-1,348,348]],[376,[-1,348]]],[[376,[-1,348]]],409],[[[456,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-3]]],[20,104],[],[]],[[[461,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-1,-3]]],[],[],[]],[[[460,[-1,-2,-3]],[376,[-1,-2]]],[[62,[[376,[-1,-3]]]]],[[426,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[457,[-1,-2,-3]],[376,[-1,-2]]],[[376,[-3]]],[20,104],[],[]],[[[460,[-1,-2,-3]],[376,[-1,-2]]],[[468,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[461,[-1,-2,-3]],[453,[-1,-2]]],[[453,[-1,-3]]],[],[],[]],[[[454,[-1,-2,-3]],[453,[-1,-2]]],[[453,[-3]]],[104,103],[],[]],[[[460,[-1,-2,-3]],[453,[-1,-2]]],[[62,[[453,[-1,-3]]]]],[[426,[],[[19,[]]]],469,212,104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[457,[-1,-2,-3]],[453,[-1,-2]]],[[453,[-3]]],[20,104],[],[]],[[[460,[-1,-2,-3]],[453,[-1,-2]]],[[468,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[454,[-1,-2,-3]],[462,[-1,-2]]],[[462,[-3]]],[104,103],[],[]],[[[456,[-1,-2,-3]],[462,[-1,-2]]],[[462,[-3]]],[[20,[],[[19,[]]]],104],[],[]],[[[457,[-1,-2,-3]],[462,[-1,-2]]],[[462,[-1,-3]]],[[20,[],[[19,[]]]],104],[],[]],[[[454,[-1,-2,-3]],[436,[-1,-2]]],[[436,[-3]]],[104,103],[],[]],[[[456,[-1,-2,-3]],[436,[-1,-2]]],[[436,[-1,-3]]],[],[],[]],[[[457,[-1,-2,-3]],[436,[-1,-2]]],[[436,[-1,-3]]],[],[],[]],[[[464,[-1,348,348]],[397,[-1,348]]],[[397,[-1,348]]],409],[[[464,[-1,-2,-3]],[397,[-1,-2]]],[[397,[-1,-3]]],435,[],[]],[[[454,[-1,-2,-3]],[397,[-1,-2]]],[[397,[-3]]],[104,103],[],[]],[[[454,[-1,348,348]],[397,[-1,348]]],[[397,[-1,348]]],409],[[[349,[-1,348,348]],[397,[-1,348]]],[[397,[-1,348]]],409],[[[349,[-1,-2,-3]],[397,[-1,-2]]],[[397,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[456,[-1,348,348]],[397,[-1,348]]],[[397,[-1,348]]],409],[[[461,[-1,-2,-3]],[397,[-1,-2]]],[[397,[-1,-3]]],[],[],[]],[[[460,[-1,-2,-3]],[397,[-1,-2]]],[[397,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[461,[-1,-2,-3]],[451,[-1,-2]]],[[451,[-1,-3]]],[],[],[]],[[[460,[-1,-2,-3]],[451,[-1,-2]]],[[451,[-1,-3]]],[104,[20,[],[[19,[]]]],[103,[],[[19,[]]]]],[],[]],[[[401,[-1,-2]],[397,[-1,-2]]],[[401,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[463,[-1,-2]],[451,[-1,-2]]],[[463,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[[462,[-1,-2]],[397,[-1,-2]]],[[462,[-1,-2]]],[104,[20,[],[[19,[]]]]],[]],[[-1,-1],[[349,[-1,-2,-3]]],[469,467],[],[]],[[-1,-1,-1],[[460,[-1,-2,-3]]],[469,467],[],[]],0,[[[401,[-1,-2]]],[[62,[[401,[-3,-2]]]]],[421,104],[],421],[[[463,[-1,-2]]],[[62,[[463,[-3,-2]]]]],[421,104],[],421],[[[452,[-1,-2]]],[[62,[[452,[-3,-2]]]]],[421,48],[],421],[[[376,[-1,-2]]],[[62,[[376,[-3,-2]]]]],[421,104],[],421],[[[453,[-1,-2]]],[[62,[[453,[-3,-2]]]]],[421,104],[],421],[[[462,[-1,-2]]],[[62,[[462,[-3,-2]]]]],[421,104],[],421],[[[454,[-1,-2,-3]]],[[62,[[454,[-4,-2,-3]]]]],421,[],[],421],[[[436,[-1,-2]]],[[62,[[436,[-3,-2]]]]],[421,104],[],421],[[[450,[-1,-2]]],[[62,[[450,[-3,-2]]]]],[421,104],[],421],[[[349,[-1,-2,-3]]],[[62,[[349,[-4,-2,-3]]]]],[421,104],[],[],421],[[[460,[-1,-2,-3]]],[[62,[[460,[-4,-2,-3]]]]],[421,104],[],[],421],[[[397,[-1,-2]]],[[62,[[397,[-3,-2]]]]],[421,104],[],421],[[[451,[-1,-2]]],[[62,[[451,[-3,-2]]]]],[421,104],[],421],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[[[397,[-1,-2]]],[[62,[[397,[-1,-2]]]]],435,[]],[[[451,[-1,-2]]],[[62,[[451,[-1,-2]]]]],435,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[401,[-1,-2]],[401,[-1,-2]]],[[401,[-1,-2]]],[104,212],[]],[[[463,[-1,-2]],[463,[-1,-2]]],[[463,[-1,-2]]],[104,212],[]],[[[462,[-1,-2]],[462,[-1,-2]]],[[462,[-1,-2]]],[104,212,[20,[],[[19,[]]]],[114,[],[[19,[]]]],469],[]],[[-1,-1,-1,-1],[[461,[-1,-2,-3]]],435,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[-1,-1],[[397,[-1,-2]]],[],[]],[[-1,-1,-1],[[451,[-1,-2]]],[],[]],[[[461,[-1,-2,-3]]],[[451,[-1,348]]],104,[],[]],[[[455,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],[[[463,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[450,[-1,-2]]],-1,[[103,[],[[19,[]]]],104],[]],0,[[[401,[-1,-2]]],-1,[104,[114,[],[[19,[]]]]],[]],[[[463,[-1,-2]]],-1,[104,[114,[],[[19,[]]]]],[]],[[[462,[-1,-2]]],-1,[104,[20,[],[[19,[]]]]],[]],0,0,[[[349,[-1,-2,-3]]],[[349,[-1,-2,-4]]],104,[],[],[]],[[[460,[-1,-2,-3]]],[[460,[-1,-2,-4]]],104,[],[],[]],[[[397,[-1,-2]],-1],[[397,[-1,-2]]],435,[]],[[[397,[-1,-2]],-1],[[397,[-1,-2]]],435,[]],[[[451,[-1,-2]],-1],[[451,[-1,-2]]],435,[]],[[[397,[-1,-2]],-1],[[397,[-1,-2]]],435,[]],[[[451,[-1,-2]],-1],[[451,[-1,-2]]],435,[]],[[[349,[-1,-2,-3]]],[[349,[-1,-4,-3]]],104,[],[],[]],[[[460,[-1,-2,-3]]],[[460,[-1,-4,-3]]],104,[],[],[]],0,0,0,0,0,0,0,0,0,[[[401,[-1,-2]]],[[161,[-1]]],104,[]],[[[463,[-1,-2]]],[[161,[-1]]],104,[]],[[[462,[-1,-2]]],[[161,[-1]]],[104,[20,[],[[19,[]]]]],[]],[[[453,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[451,[-1,-2]]],[[397,[-1,-2]]],104,[]],[459,458],[[[463,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],[[[453,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[451,[-1,-2]]],[[397,[-1,-2]]],104,[]],[459,458],[[[463,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],0,0,0,0,0,0,0,0,0,[[[401,[-1,-2]]],[[161,[-1]]],104,[]],[[[463,[-1,-2]]],[[161,[-1]]],104,[]],[[[462,[-1,-2]]],[[161,[-1]]],[104,[20,[],[[19,[]]]]],[]],[[[376,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[397,[-1,-2]]],[[397,[-1,-2]]],104,[]],[[[453,[-1,-2]]],[[376,[-1,-2]]],104,[]],[[[451,[-1,-2]]],[[397,[-1,-2]]],104,[]],[459,458],[[[463,[-1,-2]]],-1,[104,[103,[],[[19,[]]]],[114,[],[[19,[]]]]],[]],0,0,0,0,0,[[[463,[-1,-2]]],[[161,[-1]]],104,[]],[[],[[401,[-1,-2]]],469,[]],[[],[[463,[-1,-2]]],469,[]],[[],[[452,[-1,-2]]],469,[]],[[],[[376,[-1,-2]]],469,[]],[[],[[376,[-1,-2]]],469,[]],[[],[[453,[-1,-2]]],469,[]],[[],[[453,[-1,-2]]],469,[]],[[],[[462,[-1,-2]]],469,[]],[[],[[455,[-1,-2]]],469,[]],[[],[[436,[-1,-2]]],469,[]],[[],[[436,[-1,-2]]],469,[]],[[],[[450,[-1,-2]]],469,[]],[[],[[450,[-1,-2]]],469,[]],[[],[[397,[-1,-2]]],469,[]],[[],[[397,[-1,-2]]],469,[]],[[],[[451,[-1,-2]]],469,[]],[[],[[451,[-1,-2]]],469,[]],0,[[],-1,[]],[[420,420],8],[[420,420,-1],8,[]],[[-1,-1],-1,212],[[-1,-1],-1,212],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[466,466],[471,471],[[],467],[472,472],[[],469],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[416,[-1]],-1],[[474,[-1]]],409],[[[430,[-1]]],[[62,[[376,[-1,348]]]]],409],[[[431,[-1]]],[[62,[-1]]],409],[[[430,[-1]]],[[22,[56,[62,[56]]]]],409],[[[431,[-1]]],[[22,[56,[62,[56]]]]],409],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,[[[413,[],[[412,[-1]]]],-1],[[413,[],[[412,[-1]]]]],409],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[413,[],[[412,[-1]]]],-1],[[413,[],[[412,[-1]]]]],409],[[[413,[],[[412,[-1]]]],-1],[[397,[-1,348]]],409],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[413,[],[[412,[-1]]]]],[[413,[],[[412,[-1]]]]],409],[[[413,[],[[412,[-1]]]],-1,177],22,409],[[[413,[],[[412,[-1]]]]],[[376,[-1,348]]],409],[[[413,[],[[412,[-1]]]],-1],[[376,[-1,348]]],409],[[[413,[],[[412,[-1]]]],-1],[[22,[[413,[],[[412,[-1]]]],[413,[],[[412,[-1]]]]]]],409],[[[413,[],[[412,[-1]]]],[161,[-1]]],[[413,[],[[412,[-1]]]]],409],[[[413,[],[[412,[-1]]]]],[[376,[-1,348]]],409],[[395,[376,[-1,348]]],[[376,[-1,348]]],[]],[[395,[397,[-1,348]]],[[397,[-1,348]]],[]],[[[413,[],[[412,[-1]]]],-1],-1,409],[[[413,[],[[412,[-1]]]],-1],-1,409],[[-1,-1,-1,-1],[[424,[-1]]],409],[[[397,[-1,348]],[397,[-1,348]]],-1,409],[[[376,[-1,348]],[376,[-1,348]],[376,[-1,348]]],-1,409],[[-1,-1],[[22,[-1,-1]]],60],[[[397,[-1,348]]],[[397,[-1,348]]],409],[[[397,[-1,348]]],[[397,[-1,348]]],60],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[475,[-1]]],[[126,[],[[32,[[376,[30,348]]]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[[476,30],[[477,[476]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[30,-1],[[477,[-1]]],[[126,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]]],[[-1,-2],[[478,[-2,-1]]],[[395,[30]]],[[126,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]]],[[8,-1],[[475,[-1]]],[[126,[],[[32,[[376,[30,348]]]]]]]],[[[393,[-1]]],[[62,[[365,[[376,[30,348]],[376,[30,348]]]]]]],[[126,[],[[32,[[365,[[22,[[376,[30,348]],[98,[30]]]],[376,[30,348]]]]]]]]]],[[[477,[-1]]],[[62,[[365,[[376,[30,348]],[376,[30,348]]]]]]],[[126,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]]],[[[478,[-1,-2]]],[[62,[[365,[[376,[30,348]],[376,[30,348]]]]]]],[[126,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]],[[395,[30]]]],[[[475,[-1]]],[[62,[[365,[[376,[30,348]],[376,[30,348]]]]]]],[[126,[],[[32,[[376,[30,348]]]]]]]],[-1,[[475,[-1]]],[[126,[],[[32,[[376,[30,348]]]]]]]],[[[477,[-1]]],[[22,[56,[62,[56]]]]],[[126,[],[[32,[[365,[[376,[30,348]],[376,[30,348]]]]]]]]]],[[476,-1],[[478,[476,-1]]],[[395,[30]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[393,[-1]]],-1,[[126,[],[[32,[[365,[[22,[[376,[30,348]],[98,[30]]]],[376,[30,348]]]]]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[30,30],[[376,[30,348]]]],0,[[30,30],[[436,[30,348]]]],[[30,30],[[397,[30,348]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[360,[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[98,[30]]],358],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[360,347],[363,347],[363,347],[360,360],[363,363],[384,384],[389,389],[381,381],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[360,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[],360],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[360,8],22],[[363,8],22],[[363,8],22],[[360,[98,[355]]],22],[[363,[98,[355]]],22],[[381,72],[[74,[22,73]]]],[[389,30,-1],22,[[177,[[365,[[22,[[376,[30,348]],[98,[30]]]],[376,[30,348]]]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[392,347],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[360,[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[98,[30]]],358],[[],360],[56,363],[392,62],[384,[[62,[[365,[[376,[30,348]],[376,[30,348]]]]]]]],[389,62],[381,[[62,[[365,[358,373]]]]]],[360,56],[363,56],[363,56],[389,384],[[360,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[363,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[360,56,56],22],[[363,56,56],22],[[363,56,56],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[56,56],360],[360,[[394,[360]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[362,[376,[30,348]]],358],[[362,[376,[30,348]],[98,[30]]],358],[[479,[376,[30,348]],[98,[30]]],358],[[479,[376,[30,348]],[98,[30]]],358],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[362,56],[362,56],[479,56],[479,56],[386,386],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[362,[376,[30,348]],[376,[30,348]],[376,[30,348]]],358],[[362,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[479,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[479,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[[362,8],22],[[362,8],22],[[479,8],22],[[479,8],22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[362,[376,[30,348]],[98,[30]]],358],[[362,[376,[30,348]]],358],[[479,[376,[30,348]],[98,[30]]],358],[[479,[376,[30,348]],[98,[30]]],358],[[356,56],479],[386,[[62,[355]]]],[386,[[62,[355]]]],[362,56],[479,56],[[362,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[362,[376,[30,348]],[376,[30,348]]],358],[[479,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[479,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[362,56,56],22],[[362,56,56],22],[[479,56,56],22],[[479,56,56],22],[386,[[22,[56,[62,[56]]]]]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[362,56],479],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[388,388],[[[387,[-1]]],[[387,[-1]]],48],[[[390,[-1]]],[[390,[-1]]],48],[382,382],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[161,[58]],8],382],[388,[[62,[[365,[358,373]]]]]],[[[387,[-1]]],[[62,[[365,[-1,22]]]]],[]],[[[390,[-1]]],[[62,[[365,[[376,[30,348]],[376,[30,348]]]]]]],380],[382,[[62,[[365,[358,373]]]]]],[-1,[[480,[-2]]],[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,[[396,[376,[30,348]],30,372,[98,[30]]],22],[[396,[376,[30,348]],[397,[30,348]],[398,[30]],372,[98,[30]]],22],[[396,[399,[30]],[98,[30]]],[[22,[358,358]]]],[[396,[376,[30,348]],[98,[30]]],358],[[396,[366,[[376,[30,348]]]],[98,[30]]],22],[[400,[366,[[376,[30,348]]]]],22],[[396,[401,[30,348]],372,[98,[30]]],22],[[396,[401,[30,348]],402,372,[98,[30]]],22],[[400,[397,[30,348]],[398,[30]],364,[376,[30,348]]],22],[[396,[376,[30,348]],[98,[30]]],358],[[[406,[],[[405,[-1]]]]],-1,[]],[400,22],[396,22],[[396,[376,[30,348]],[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]],[376,[30,348]],[376,[30,348]]],22],[[396,8],22],[[396,[365,[[22,[[376,[30,348]],[98,[30]]]],[376,[30,348]]]]],22],[[396,30],[[403,[396]]]],[[476,30],[[477,[476]]]],[[400,30],22],[[396,[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]]],22],[[400,[376,[30,348]]],22],[396,56],[[396,[365,[[376,[30,348]],[376,[30,348]]]],[98,[30]]],22],[[396,[376,[30,348]],[376,[30,348]],[98,[30]]],358],[[400,[376,[30,348]],[376,[30,348]]],22],[[400,[397,[30,348]],[398,[30]],364,[397,[30,348]]],22],[[400,[397,[30,348]],[397,[30,348]],[397,[30,348]]],22],[[400,30],22],[[400,[397,[30,348]]],22],[[400,[397,[30,348]]],22],[[400,[397,[30,348]],[397,[30,348]]],22],[[400,30],22],[[396,56,56],22],[[400,56,56],22],[[400,[376,[30,348]],[376,[30,348]]],22],[[400,[376,[30,348]]],22],[[400,[397,[30,348]],[397,[30,348]]],22],[[400,[397,[30,348]]],22],[[396,-1],[[404,[396,-1]]],[[395,[30]]]],[[476,-1],[[478,[476,-1]]],[[395,[30]]]],[[400,30],22],[396,[[394,[396]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[270,[],[[190,[-1]]]],-1,8],14,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,14],[[[313,[-1]]],[[313,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[[313,[-1]],[313,[-1]]],8,67],[[14,72],[[74,[22,73]]]],[[[313,[-1]],72],[[74,[22,73]]],77],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[270,[],[[190,[-1]]]],-1,8],14,55],0,[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-2,[[3,[51]]],78,[[33,[],[[32,[-1]]]]]],[[[280,[-1]]],[[280,[-1]]],48],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[[280,[-1]],72],[[74,[22,73]]],77],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[3,[-1]]],[[280,[-1]]],[78,48]],[[-2,-4,120],[[0,[[126,[],[[32,[-1]]]]]]],[],[[33,[],[[32,[-1]]]]],[[145,[120]]],[[33,[],[[32,[-3]]]]]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[[[3,[-1]],[62,[-1]]],[[280,[-1]]],[78,48]],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[263,[],[[190,[-1]]]],-1],23,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[23,23],[182,182],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],23],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,23,21],22,127],[56,22],[56,22],[[182,182],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[23,72],[[74,[22,73]]]],[[182,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[182,-1],22,91],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[133,45,45,30,30,46,81,80,-1],132,[[54,[133],[[19,[132]]]]]],[-1,182,[[68,[[99,[120]]]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],182],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[182,[[1,[[62,[21]]]]]],[[23,-1],23,[[68,[42]]]],[[23,-1,-2],23,[[68,[43]]],[[68,[47]]]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[57,57],[63,63],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[57,142],[[],63],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,123,-1,44,63],22,[48,92],[[144,[],[[143,[-1]]]]]],[[[481,[-1]],125,-2,-3,130,123,131,21],22,[48,92],[[144,[],[[143,[-1]]]]],[]],[56,22],[56,22],[56,22],[[57,57],8],[[63,63],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[57,72],[[74,[22,73]]]],[[63,72],[[74,[22,73]]]],[-1,-1,[]],[-1,57,[[68,[311]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,57,[[145,[[98,[83]]]],107,102]],[-1,57,[[68,[311]]]],[[58,58,-1],57,[[145,[[98,[83]]]],107,102]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[57,-1],22,91],[[63,-1],22,91],[[[481,[-1]],-2],[[481,[-1]]],[],[[68,[45]]]],[57,90],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,133,-1,45,45,44],132,[],[[144,[],[[143,[-1]]]]]],[[[481,[-1]],125,-2,133],132,[48,92],[[144,[],[[143,[-1]]]]]],[[[481,[-1]],30],[[481,[-1]]],[]],[[[481,[-1]],30],[[481,[-1]]],[]],[[[481,[-1]],125,123,131,21,-2],134,[48,92],[[144,[],[[143,[-1]]]]]],[-1,[[481,[-1]]],[]],[[[481,[-1]],125,38,123,131,-2,135,[122,[-3]],21],136,[48,92],[[144,[],[[143,[-1]]]]],[]],[[[481,[-1]],-2],[[481,[-1]]],[],[[68,[47]]]],[[[481,[-1]],30],[[481,[-1]]],[]],[[[481,[-1]]],[[50,[45]]],[48,92]],[[[481,[-1]]],139,[48,92]],[[[481,[-1]]],140,[48,92]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,[-1,[[481,[-1]]],[]],[[[481,[-1]],-2],[[481,[-1]]],[],[[68,[45]]]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[482,482],[[-1,-2],22,[],[]],[-1,-2,[],[]],[[],482],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[482,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[-1,482,50],50,144],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[482,8],[[],482],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[315,[-1,-2,-3,-4]],36],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[315,[-1,-2,-3,-4]]],[[3,[125]]],[104,67],[],[],127],0,[-1,-2,[],[]],[[],[[315,[-1,-2,-3]]],[104,67],[],127],[56,-1,[]],[56,-1,[]],[[[315,[-1,-2,-3,-4]],125],22,[104,67],[],[],127],[-1,-2,[],[]],[[[315,[-1,-2,-3,-4]],125,-4,-3,130,123,131,21],22,[104,67],[],[],127],[56,22],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[315,[-1,-2,-3,-4]],-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[45]]]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[315,[-1,-2,-3,-4]],125,-4,133],132,[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[47]]]],[[[315,[-1,-2,-3,-4]],125,123,131,21,-4],134,[104,67],[],[],127],[[],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],125,38,123,131,-4,135,[122,[-2]],21],136,[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],125,123,-4,119],22,[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],125,123,-4],[[62,[[137,[-2,-3,-4]]]]],[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[46]]]],[[[315,[-1,-2,-3,-4]],-1,-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[[147,[-2,-3,-4]]]]]],[[[315,[-1,-2,-3,-4]]],[[50,[45]]],[104,67],[],[],127],[[[315,[-1,-2,-3,-4]],-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[47]]]],[[[315,[-1,-2,-3,-4]]],139,[104,67],[],[],127],[[[315,[-1,-2,-3,-4]]],140,[104,67],[],[],127],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[[[315,[-1,-2,-3,-4]],-5],[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[68,[45]]]],[-5,[[315,[-1,-2,-3,-4]]],[104,67],[],[],127,[[33,[],[[32,[[22,[-1,[147,[-2,-3,-4]]]]]]]]]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[219,[],[[190,[-1]]]],-1],27,[55,48]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[27,27],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],483],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[[27,72],[[74,[22,73]]]],[[483,72],[[74,[22,73]]]],[[[484,[-1,-2,-3,-4]],-5],[[484,[-1,-2,-3,-4]]],[292,48],[],[219,263,229],168,68],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[483,[98,[-1]],[62,[56]],-3,[62,[100]]],[[484,[-1,-2,-4,-5]]],[292,48],[],[[177,[-1],[[19,[-2]]]]],[219,263,229],168],[[],483],[[[484,[-1,-2,-3,-4]],17,30],[[137,[-2,-3,-4]]],[292,48],[],[219,263,229],168],[[[484,[-1,-2,-3,-4]],-5],[[484,[-1,-2,-3,-4]]],[292,48],[],[219,263,229],168,[[68,[46]]]],0,0,[[[484,[-1,-2,-3,-4]],-5],[[484,[-1,-2,-3,-4]]],[292,48],[],[219,263,229],168,68],0,[[[484,[-1,-2,-3,-4]],-5],[[484,[-1,-2,-3,-4]]],[292,48],[],[219,263,229],168,[[68,[171]]]],[[[484,[-1,-2,-3,-4]],185],[[484,[-1,-2,-3,-4]]],[292,48],[],[219,263,229],168],[[[484,[-1,-2,-3,-4]],-5],[[484,[-1,-2,-3,-4]]],[292,48],[],[219,263,229],168,[[68,[47]]]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[484,[-1,-2,-3,-4]],30],[[484,[-1,-2,-3,-4]]],[292,48],[],[219,263,229],168],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[316,[-1]],317,485],[[62,[317]]],[]],[[[486,[-1,-2,-3]]],[[486,[-1,-2,-3]]],[],263,127],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[487,123,17],8],[[[318,[-1,-2,-3]],123,17],8,[],263,127],[93,93],[94,94],[488,488],[[[489,[-1]]],[[489,[-1]]],48],[485,485],[490,490],[317,317],[491,491],[[[316,[-1]]],[[316,[-1]]],48],[324,324],[492,492],[493,493],[494,494],[325,325],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[316,[-1]],317],[[62,[[22,[-1,317]]]]],[]],[[317,317],109],[[491,491],109],0,[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[486,[-1,-2,-3]],-4],[[486,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[[],493],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[495,490,123,131,-1,-2,130,21,30,[62,[30]],-4,-5],22,127,276,[],[[126,[],[[32,[[22,[317,-3]]]]]]],[[100,[-3,-1,130,123,131,21]]]],[[[318,[-1,-2,-3]],125,-3,-2,130,123,131,21],22,[],263,127],[[[486,[-1,-2,-3]],125,-3,-2,130,123,131,21,8],22,[],263,127],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[316,[-1]],317,492],22,[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[94,94],8],[[488,488],8],[[485,485],8],[[317,317],8],[[491,491],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[93,72],[[74,[22,73]]]],[[94,72],[[74,[22,73]]]],[[488,72],[[74,[22,73]]]],[[[489,[-1]],72],[[74,[22,73]]],77],[[485,72],[[74,[22,73]]]],[[490,72],[[74,[22,73]]]],[[317,72],[[74,[22,73]]]],[[491,72],[[74,[22,73]]]],[[[316,[-1]],72],[[74,[22,73]]],77],[[324,72],[[74,[22,73]]]],[[492,72],[[74,[22,73]]]],[[493,72],[[74,[22,73]]]],[[494,72],[[74,[22,73]]]],[[325,72],[[74,[22,73]]]],[[[496,[-1]],72],[[74,[22,73]]],77],[-1,-1,[]],[-1,-1,[]],[-4,[[318,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[316,[-1]],317],[[62,[-1]]],[]],[[[316,[-1]],317],[[62,[-1]]],[]],[[488,-1],22,91],[[490,-1],22,91],[[317,-1],22,91],[[491,-1],22,91],[[[276,[],[[190,[-1]]]],-1],93,55],[[[276,[],[[190,[-1]]]],-1],[[62,[94]]],55],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[316,[-1]]],8,[]],[[[486,[-1,-2,-3]],123,17],8,[],263,127],[[[316,[-1]]],[[0,[[126,[],[[32,[[22,[317,-1]]]]]]]]],[]],[[[496,[-1]]],[[95,[126]]],[]],[[[316,[-1]]],[[0,[[126,[],[[32,[[22,[317,-1]]]]]]]]],[]],[[125,-1,133,490,45,45,30,-3,-4],132,[],[],[[126,[],[[32,[[22,[317,-2]]]]]]],[[100,[-2,125,-1,133],[[19,[132]]]]]],[[[316,[-1]]],490,[]],[[[496,[-1]]],490,[]],[[[316,[-1]]],56,[]],[[[316,[-1]],317],22,[]],[[[316,[-1]]],[[62,[317]]],[]],[[495,490,123,131,30,[62,[30]]],[[62,[134]]]],[[[316,[-1]],317,494],22,[]],[-4,[[318,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[-4,[[486,[-1,-2,-3]]],[],263,127,[[68,[[147,[-1,-2,-3]]]]]],[-1,[[22,[[316,[-1]],317]]],[]],[[[486,[-1,-2,-3]],-4],[[486,[-1,-2,-3]]],[],263,127,[[68,[46]]]],[[490,30,50],[[497,[317,21]]]],0,[[317,317],[[62,[109]]]],[[491,491],[[62,[109]]]],[[[276,[],[[190,[-1]]]],-1],[[62,[94]]],55],0,[[[316,[-1]],491,30],22,[]],[[[316,[-1]]],22,[]],[[488,21,30,30],[[22,[21,21]]]],[[[316,[-1]],488,317,-1],[[62,[[22,[317,491]]]]],[]],0,[[488,21,30,30],21],[[490,30,50],[[497,[491,[22,[488,21,30]]]]]],[[[316,[-1]],317,317,493],22,[]],[490,[[0,[[126,[],[[32,[491]]]]]]]],0,[[[318,[-1,-2,-3]],-4],[[318,[-1,-2,-3]]],[],263,127,68],[[[486,[-1,-2,-3]],-4],[[486,[-1,-2,-3]]],[],263,127,68],[[[316,[-1]],317,317],22,[]],[[[318,[-1,-2,-3]],[486,[-1,-2,-3]]],[[318,[-1,-2,-3]]],[],263,127],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[495,490,38,123,131,[122,[-1]],30,-3,[62,[[95,[100]]]],[62,[[95,[100]]]],[62,[[22,[30,[95,[100]]]]]]],136,[],487,[[126,[],[[32,[[22,[317,-2]]]]]]]],0,[-2,[[316,[-1]]],[],[[68,[[489,[-1]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[495,[[62,[[22,[317,17]]]]]],[498,498],[495,495],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[495,495],8],[[498,72],[[74,[22,73]]]],[[495,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[499,[317,-1]],[489,[-1]],56],498,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[498,490],0,[495,[[62,[[22,[317,17]]]]]],[495,[[62,[[22,[491,488]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[293,[],[[190,[-1]]]],-1],10,[55,48]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[10,10],[[[312,[-1]]],[[312,[-1]]],48],[[[500,[-1]]],[[500,[-1]]],48],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[501,[-1]]],164],[[],[[312,[-1]]],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2,123,131,46,[62,[47]],171,185,[62,[120]],[62,[-3]],312,-4,21],22,168,293,292,[[54,[],[[19,[501]]]]]],[56,22],[56,22],[56,22],[56,22],[[[312,[-1]],[312,[-1]]],8,67],[[[500,[-1]],[500,[-1]]],8,67],[[10,72],[[74,[22,73]]]],[[[501,[-1]],72],[[74,[22,73]]],[77,164]],[[[312,[-1]],72],[[74,[22,73]]],77],[[[500,[-1]],72],[[74,[22,73]]],77],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[293,[],[[190,[-1]]]],-1],10,[55,48]],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[501,-1,133,45,46,[62,[47]],171,185,62,[62,[120]],[98,[-2]]],132,168,292],0,[[123,131],134],[[123,501,46,[62,[47]],185,[98,[-1]],100],[[62,[[137,[-2,-3,-4]]]]],[48,292],[],[293,229,219,263],168],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[38,123,131,[122,[-1]],100,[62,[-2]],[98,[-2]],-4],136,[],[67,48],164,[[54,[],[[19,[[501,[-3]]]]]]]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[295,[],[[190,[-1]]]],-1],28,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[28,28],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[28,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[502,502],[503,503],[504,504],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[[502,502],8],[[503,503],8],[[504,504],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[323,72],[[74,[22,73]]]],[[502,72],[[74,[22,73]]]],[[503,72],[[74,[22,73]]]],[[504,72],[[74,[22,73]]]],[[504,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[505,504],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[323,504]]],[[145,[[98,[83]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[-1,503],[[74,[323,504]]],[[145,[[98,[83]]]]]],[[-1,502,503],[[74,[323,504]]],[[145,[[98,[83]]]]]],0,0,0,0,[[[297,[],[[190,[-1]]]],-1,8],12,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[12,12],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],0,[-1,-2,[],[]],[56,22],[[12,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[297,[],[[190,[-1]]]],-1,8],12,55],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[299,[],[[190,[-1]]]],-1],26,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[26,26],[506,506],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[506,30],[[22,[30,30]]]],0,[[26,72],[[74,[22,73]]]],[[506,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[326,187],[326,187],[[[229,[],[[190,[-1]]]],-1],11,55],[[[229,[],[[190,[-1]]]],-1],11,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[507,508],507],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[326,21],[11,11],[509,509],[187,187],[188,188],[290,290],[507,507],[508,508],[181,181],[510,510],[326,326],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[326,21],[[],187],[[],188],[[],290],[[],507],[[],508],[[],510],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[229,[],[[190,[-1]]]],-1],11,55],[[[229,[],[[190,[-1]]]],-1],11,55],[[510,-1,-2,123,131,290,-3],22,127,229,[[54,[-1,123,131,21]]]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[187,187],8],[[188,188],8],[[290,290],8],[[507,507],8],[[508,508],8],[[181,181],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[11,72],[[74,[22,73]]]],[[509,72],[[74,[22,73]]]],[[187,72],[[74,[22,73]]]],[[188,72],[[74,[22,73]]]],[[290,72],[[74,[22,73]]]],[[507,72],[[74,[22,73]]]],[[508,72],[[74,[22,73]]]],[[181,72],[[74,[22,73]]]],[[510,72],[[74,[22,73]]]],[[326,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[181,-1],22,91],[290,[[62,[507]]]],[[[229,[],[[190,[-1]]]],-1,8],11,55],[[[229,[],[[190,[-1]]]],-1,8],11,55],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,133,45,45,290,-2],132,[],[[54,[-1,133],[[19,[132]]]]]],[[507,-1],507,[[68,[47]]]],[[510,123,131,290,-1],134,[[54,[123,131,21],[[19,[134]]]]]],[[],507],[-1,181,[[68,[[99,[120]]]]]],[[],510],[326,188],[[510,18,290,21,21],22],[[181,187],[[1,[-1]]],[]],[[510,187],22],[[510,187],22],[[510,30,21,21],22],[[510,30,21,21],22],0,[[507,-1],507,[[68,[47]]]],[510,8],[[181,188],[[1,[-1]]],[]],[[510,188],22],[[510,188],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],181],[[510,21,21],22],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[510,38,123,131,135,[122,[-1]],290,[62,[[95,[100]]]],-2],136,[],[[54,[38,123,131,135,[122,[-1]],21],[[19,[136]]]]]],[290,[[62,[507]]]],[[507,-1],507,[[68,[47]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[511,511],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],512],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[308,[],[[327,[-1]],[513,[-2]]]],-1,131,21],-2,55,65],[56,22],[56,22],[[511,511],8],[[512,72],[[74,[22,73]]]],[[511,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[512,[[62,[-1]]],[]],[512,[[62,[-1]]],[]],[512,8],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[308,[],[[327,[-1]],[513,[-2]]]],-1,21,131],134,55,65],[[65,514,515,516,21,[50,[58]],30,512],22],[[65,512,517,[50,[58]],[21,[58]],518],22],[[512,-1],22,107],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[308,[],[[327,[-1]],[513,[-2]]]],-1,511,21,131,[122,[-3]]],[[22,[136,[62,[-3]]]]],55,65,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[514,514],0,0,0,[[],519],[[],520],[[],521],[[],522],[[],523],[[],524],[[],525],[[],526],[[],527],[[],528],[[],520],[[],520],0,0,0,0,0,0,[[],8],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[529,530],[529,531],[[532,-2],[[62,[-1]]],[],[[54,[62],[[19,[-1]]]]]],[533,62],[[534,-2],-1,[],[[54,[62],[[19,[-1]]]]]],[[515,-2],[[62,[-1]]],[],[[54,[62],[[19,[-1]]]]]],[[535,-1],22,[[54,[62]]]],[535,[[536,[535]]]],[537,[[98,[83]]]],[538,[[98,[83]]]],[539,[[98,[83]]]],0,0,0,0,0,0,[[514,540],[[62,[514]]]],0,0,0,0,0,0,0,0,0,[[518,541],542],[[543,58],22],[[543,544,58],22],[[542,544,58],22],[[518,545],543],0,0,0,0,0,0,[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],[519,58],[519,58],[520,90],[520,90],[521,58],[521,58],[522,58],[522,58],[523,58],[523,58],[524,58],[524,58],[525,58],[525,58],[526,58],[526,58],[527,58],[527,58],[528,83],[528,83],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],0,[[514,[62,[540]]],[[62,[58]]]],[514,[[22,[58,58]]]],[[514,[62,[540]]],[[62,[58]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[[546,546],8],[[546,546,8,-1],22,[[177,[120,90,90]]]],0,[[518,529,90,[62,[90]]],22],[[518,535,547],22],[548,548],[549,549],[519,519],[[[550,[-1]]],[[550,[-1]]],48],[520,520],[521,521],[546,546],[551,551],[522,522],[552,552],[553,553],[554,554],[523,523],[555,555],[556,556],[[[557,[-1]]],[[557,[-1]]],[]],[558,558],[559,559],[560,560],[561,561],[562,562],[563,563],[564,564],[565,565],[566,566],[567,567],[568,568],[569,569],[524,524],[570,570],[571,571],[572,572],[573,573],[574,574],[530,530],[575,575],[514,514],[531,531],[[[576,[-1]]],[[576,[-1]]],48],[577,577],[[[578,[-1]]],[[578,[-1]]],48],[579,579],[580,580],[581,581],[525,525],[582,582],[583,583],[584,584],[585,585],[586,586],[545,545],[587,587],[588,588],[589,589],[[[590,[-1]]],[[590,[-1]]],48],[591,591],[592,592],[593,593],[594,594],[541,541],[595,595],[596,596],[597,597],[598,598],[599,599],[600,600],[601,601],[602,602],[603,603],[604,604],[605,605],[606,606],[607,607],[608,608],[609,609],[610,610],[526,526],[611,611],[612,612],[527,527],[613,613],[614,614],[615,615],[616,616],[617,617],[618,618],[540,540],[619,619],[620,620],[621,621],[[[622,[-1]]],[[622,[-1]]],48],[623,623],[624,624],[625,625],[626,626],[627,627],[628,628],[629,629],[630,630],[[[631,[-1]]],[[631,[-1]]],48],[[[536,[-1]]],[[536,[-1]]],48],[632,632],[[[633,[-1]]],[[633,[-1]]],48],[547,547],[634,634],[635,635],[528,528],[636,636],[637,637],[638,638],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[551,551],109],[[522,522],109],[[552,552],109],[[613,613],109],0,0,0,0,0,[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],0,0,0,0,[555,615],[519,519],[520,520],[521,521],[522,522],[523,523],[524,524],[525,525],[526,526],[527,527],[528,528],[[],522],[514,83],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[514,540],83],[[532,515,[639,[[3,[514]]]]],22],0,0,[[519,519],8],[[520,520],8],[[521,521],8],[[522,522],8],[[523,523],8],[[524,524],8],[[525,525],8],[[526,526],8],[[527,527],8],[[528,528],8],[519,8],[520,8],[522,8],[523,8],[524,8],[525,8],[526,8],[527,8],[528,8],[[518,529,90,529,90,90],22],[[518,[631,[529]],[536,[535]],618],22],[[518,[536,[535]],[631,[529]],618],22],[[518,[536,[535]],[536,[535]],618],22],0,0,0,[[533,[640,[-1]]],534,641],[[515,586],642],[[515,598],643],[[515,[644,[[62,[120]]]]],529],[[515,[644,[[62,[120]]]]],529],[[515,645],529],[[515,[646,[[62,[120]]]]],518],[[515,596],647],[[534,[648,[-1]],[649,[[62,[120]]]],[62,[650]]],[[74,[[22,[515,516]],604]]],641],[[515,583],651],[[515,[652,[[62,[120]]]]],544],[[515,600],653],[[515,591],654],[[515,584],655],[[515,572],656],[[515,657],656],[[515,572],656],[[533,-1],[[74,[532,605]]],[[68,[658]]]],[[533,659],[[74,[532,605]]]],[[515,[660,[[62,[120]],[98,[514]]]]],535],[[515,[660,[[62,[120]],[98,[514]]]]],535],[[515,516,[660,[[62,[120]],[98,[514]]]],661,[98,[83]]],535],[[535,582],517],0,[[],521],[[],549],[[],519],[[],[[550,[-1]]],[]],[[],520],[[],521],[[],546],[[],551],[[],555],[[],558],[[],559],[[],562],[[],563],[[],566],[[],533],[[],567],[[],569],[[],[[576,[-1]]],55],[[],577],[[],[[578,[-1]]],55],[[],525],[[],582],[[],583],[[],584],[[],545],[[],592],[[],594],[[],541],[[],597],[[],599],[[],600],[[],601],[[],606],[[],611],[[],612],[[],662],[[],614],[[],617],[[],618],[[],540],[[],619],[[],620],[[],[[622,[-1]]],55],[[],624],[[],625],[[],626],[[],547],[[],636],[[],637],[[],663],0,0,0,[535,58],0,0,0,0,0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[537],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[539,[[98,[83]]]],[56,-1,[]],[56,-1,[]],[538],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[537],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[538],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,[515,22],[529,22],[535,22],0,0,[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[535,615],0,0,[[542,58,58,58],22],[[542,529,90],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],546],[[],546],[[543,[161,[58]],[161,[58]]],22],[[543,[161,[58]],[161,[58]]],22],[[653,[161,[58]],[161,[58]]],22],[[653,[161,[58]],[161,[58]]],22],[[543,[161,[58]],448,[161,[58]]],22],[[543,[161,[58]],448,[161,[58]]],22],[[653,[161,[58]],448,[161,[58]]],22],[[653,[161,[58]],448,[161,[58]]],22],[[543,529,90],22],[[543,529,90],22],[[653,529,90],22],[[653,529,90],22],[[543,529,90],22],[[543,529,90],22],[[653,529,90],22],[[653,529,90],22],0,0,[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[532,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[537,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[534,22],[515,22],[56,22],[56,22],[56,22],[529,22],[56,22],[56,22],[56,22],[535,22],[56,22],[56,22],[517,22],[655,22],[56,22],[56,22],[643,22],[642,22],[56,22],[56,22],[656,22],[56,22],[56,22],[56,22],[56,22],[651,22],[654,22],[56,22],[647,22],[56,22],[56,22],[664,22],[56,22],[518,22],[56,22],[543,22],[542,22],[56,22],[56,22],[56,22],[56,22],[665,22],[56,22],[544,22],[56,22],[56,22],[516,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[666,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[539,22],[56,22],[538,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,0,[[],519],[[],520],[[],521],[[],522],[[],523],[[],524],[[],525],[[],526],[[],527],[[],528],[543,22],0,0,[543,22],[542,22],0,0,0,0,0,[[533,519],[[3,[534]]]],[[548,548],8],[[549,549],8],[[519,519],8],[[[550,[-1]],[550,[-1]]],8,67],[[520,520],8],[[521,521],8],[[546,546],8],[[551,551],8],[[522,522],8],[[552,552],8],[[553,553],8],[[554,554],8],[[523,523],8],[[555,555],8],[[556,556],8],[[[557,[-1]],[557,[-1]]],8,[]],[[558,558],8],[[559,559],8],[[560,560],8],[[561,561],8],[[562,562],8],[[563,563],8],[[564,564],8],[[565,565],8],[[566,566],8],[[567,567],8],[[569,569],8],[[524,524],8],[[573,573],8],[[574,574],8],[[575,575],8],[[514,514],8],[[[576,[-1]],[576,[-1]]],8,67],[[577,577],8],[[[578,[-1]],[578,[-1]]],8,67],[[525,525],8],[[582,582],8],[[584,584],8],[[587,587],8],[[592,592],8],[[594,594],8],[[595,595],8],[[597,597],8],[[599,599],8],[[600,600],8],[[601,601],8],[[602,602],8],[[603,603],8],[[606,606],8],[[607,607],8],[[608,608],8],[[609,609],8],[[610,610],8],[[526,526],8],[[611,611],8],[[612,612],8],[[527,527],8],[[613,613],8],[[614,614],8],[[615,615],8],[[616,616],8],[[617,617],8],[[618,618],8],[[540,540],8],[[619,619],8],[[620,620],8],[[621,621],8],[[[622,[-1]],[622,[-1]]],8,67],[[623,623],8],[[625,625],8],[[626,626],8],[[627,627],8],[[628,628],8],[[629,629],8],[[630,630],8],[[632,632],8],[[547,547],8],[[634,634],8],[[528,528],8],[[637,637],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[543,-1],22,[[33,[],[[32,[665]]]]]],[[519,-1],22,[[33,[],[[32,[519]]]]]],[[520,-1],22,[[33,[],[[32,[520]]]]]],[[521,-1],22,[[33,[],[[32,[521]]]]]],[[522,-1],22,[[33,[],[[32,[522]]]]]],[[523,-1],22,[[33,[],[[32,[523]]]]]],[[524,-1],22,[[33,[],[[32,[524]]]]]],[[525,-1],22,[[33,[],[[32,[525]]]]]],[[526,-1],22,[[33,[],[[32,[526]]]]]],[[527,-1],22,[[33,[],[[32,[527]]]]]],[[528,-1],22,[[33,[],[[32,[528]]]]]],0,[534,520],[515,520],[518,664],[[653,[667,[[62,[120]]]]],665],0,0,0,[[548,72],[[74,[22,73]]]],[[549,72],[[74,[22,73]]]],[[519,72],[[74,[22,73]]]],[[519,72],[[74,[22,73]]]],[[519,72],[[74,[22,73]]]],[[519,72],[[74,[22,73]]]],[[519,72],[[74,[22,73]]]],[[[550,[-1]],72],[[74,[22,73]]],77],[[520,72],[[74,[22,73]]]],[[520,72],[[74,[22,73]]]],[[520,72],[[74,[22,73]]]],[[520,72],[[74,[22,73]]]],[[520,72],[[74,[22,73]]]],[[521,72],[[74,[22,73]]]],[[521,72],[[74,[22,73]]]],[[521,72],[[74,[22,73]]]],[[521,72],[[74,[22,73]]]],[[521,72],[[74,[22,73]]]],[[546,72],[[74,[22,73]]]],[[551,72],[[74,[22,73]]]],[[522,72],[[74,[22,73]]]],[[522,72],[[74,[22,73]]]],[[522,72],[[74,[22,73]]]],[[522,72],[[74,[22,73]]]],[[522,72],[[74,[22,73]]]],[[532,72],[[74,[22,73]]]],[[552,72],[[74,[22,73]]]],[[553,72],[[74,[22,73]]]],[[554,72],[[74,[22,73]]]],[[523,72],[[74,[22,73]]]],[[523,72],[[74,[22,73]]]],[[523,72],[[74,[22,73]]]],[[523,72],[[74,[22,73]]]],[[523,72],[[74,[22,73]]]],[[555,72],[[74,[22,73]]]],[[556,72],[[74,[22,73]]]],[[[557,[-1]],72],[[74,[22,73]]],[]],[[558,72],[[74,[22,73]]]],[[559,72],[[74,[22,73]]]],[[560,72],[[74,[22,73]]]],[[561,72],[[74,[22,73]]]],[[562,72],[[74,[22,73]]]],[[563,72],[[74,[22,73]]]],[[564,72],[[74,[22,73]]]],[[565,72],[[74,[22,73]]]],[[566,72],[[74,[22,73]]]],[[533,72],[[74,[22,73]]]],[[567,72],[[74,[22,73]]]],[[534,72],[[74,[22,73]]]],[[515,72],[[74,[22,73]]]],[[568,72],[[74,[22,73]]]],[[569,72],[[74,[22,73]]]],[[529,72],[[74,[22,73]]]],[[524,72],[[74,[22,73]]]],[[524,72],[[74,[22,73]]]],[[524,72],[[74,[22,73]]]],[[524,72],[[74,[22,73]]]],[[524,72],[[74,[22,73]]]],[[570,72],[[74,[22,73]]]],[[535,72],[[74,[22,73]]]],[[517,72],[[74,[22,73]]]],[[655,72],[[74,[22,73]]]],[[643,72],[[74,[22,73]]]],[[642,72],[[74,[22,73]]]],[[656,72],[[74,[22,73]]]],[[571,72],[[74,[22,73]]]],[[572,72],[[74,[22,73]]]],[[657,72],[[74,[22,73]]]],[[651,72],[[74,[22,73]]]],[[654,72],[[74,[22,73]]]],[[647,72],[[74,[22,73]]]],[[664,72],[[74,[22,73]]]],[[518,72],[[74,[22,73]]]],[[543,72],[[74,[22,73]]]],[[542,72],[[74,[22,73]]]],[[573,72],[[74,[22,73]]]],[[653,72],[[74,[22,73]]]],[[574,72],[[74,[22,73]]]],[[665,72],[[74,[22,73]]]],[[544,72],[[74,[22,73]]]],[[516,72],[[74,[22,73]]]],[[530,72],[[74,[22,73]]]],[[575,72],[[74,[22,73]]]],[[514,72],[[74,[22,73]]]],[[531,72],[[74,[22,73]]]],[[[576,[-1]],72],[[74,[22,73]]],77],[[577,72],[[74,[22,73]]]],[[[578,[-1]],72],[[74,[22,73]]],77],[[579,72],[[74,[22,73]]]],[[580,72],[[74,[22,73]]]],[[581,72],[[74,[22,73]]]],[[525,72],[[74,[22,73]]]],[[525,72],[[74,[22,73]]]],[[525,72],[[74,[22,73]]]],[[525,72],[[74,[22,73]]]],[[525,72],[[74,[22,73]]]],[[582,72],[[74,[22,73]]]],[[583,72],[[74,[22,73]]]],[[584,72],[[74,[22,73]]]],[[585,72],[[74,[22,73]]]],[[586,72],[[74,[22,73]]]],[[545,72],[[74,[22,73]]]],[[587,72],[[74,[22,73]]]],[[588,72],[[74,[22,73]]]],[[589,72],[[74,[22,73]]]],[[591,72],[[74,[22,73]]]],[[592,72],[[74,[22,73]]]],[[593,72],[[74,[22,73]]]],[[594,72],[[74,[22,73]]]],[[541,72],[[74,[22,73]]]],[[595,72],[[74,[22,73]]]],[[596,72],[[74,[22,73]]]],[[597,72],[[74,[22,73]]]],[[598,72],[[74,[22,73]]]],[[599,72],[[74,[22,73]]]],[[600,72],[[74,[22,73]]]],[[601,72],[[74,[22,73]]]],[[666,72],[[74,[22,73]]]],[[602,72],[[74,[22,73]]]],[[602,72],[[74,[22,73]]]],[[603,72],[[74,[22,73]]]],[[604,72],[[74,[22,73]]]],[[604,72],[[74,[22,73]]]],[[605,72],[[74,[22,73]]]],[[605,72],[[74,[22,73]]]],[[606,72],[[74,[22,73]]]],[[607,72],[[74,[22,73]]]],[[607,72],[[74,[22,73]]]],[[608,72],[[74,[22,73]]]],[[609,72],[[74,[22,73]]]],[[610,72],[[74,[22,73]]]],[[539,72],[[74,[22,73]]]],[[538,72],[[74,[22,73]]]],[[668,72],[[74,[22,73]]]],[[668,72],[[74,[22,73]]]],[[526,72],[[74,[22,73]]]],[[526,72],[[74,[22,73]]]],[[526,72],[[74,[22,73]]]],[[526,72],[[74,[22,73]]]],[[526,72],[[74,[22,73]]]],[[611,72],[[74,[22,73]]]],[[612,72],[[74,[22,73]]]],[[527,72],[[74,[22,73]]]],[[527,72],[[74,[22,73]]]],[[527,72],[[74,[22,73]]]],[[527,72],[[74,[22,73]]]],[[527,72],[[74,[22,73]]]],[[662,72],[[74,[22,73]]]],[[669,72],[[74,[22,73]]]],[[613,72],[[74,[22,73]]]],[[614,72],[[74,[22,73]]]],[[615,72],[[74,[22,73]]]],[[616,72],[[74,[22,73]]]],[[617,72],[[74,[22,73]]]],[[618,72],[[74,[22,73]]]],[[540,72],[[74,[22,73]]]],[[619,72],[[74,[22,73]]]],[[620,72],[[74,[22,73]]]],[[621,72],[[74,[22,73]]]],[[[622,[-1]],72],[[74,[22,73]]],77],[[623,72],[[74,[22,73]]]],[[624,72],[[74,[22,73]]]],[[625,72],[[74,[22,73]]]],[[626,72],[[74,[22,73]]]],[[627,72],[[74,[22,73]]]],[[628,72],[[74,[22,73]]]],[[629,72],[[74,[22,73]]]],[[630,72],[[74,[22,73]]]],[[[631,[-1]],72],[[74,[22,73]]],77],[[[536,[-1]],72],[[74,[22,73]]],77],[[632,72],[[74,[22,73]]]],[[[633,[-1]],72],[[74,[22,73]]],77],[[547,72],[[74,[22,73]]]],[[634,72],[[74,[22,73]]]],[[635,72],[[74,[22,73]]]],[[528,72],[[74,[22,73]]]],[[528,72],[[74,[22,73]]]],[[528,72],[[74,[22,73]]]],[[528,72],[[74,[22,73]]]],[[528,72],[[74,[22,73]]]],[[636,72],[[74,[22,73]]]],[[637,72],[[74,[22,73]]]],[[663,72],[[74,[22,73]]]],[[638,72],[[74,[22,73]]]],0,0,[535,514],0,0,0,0,0,0,0,0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[548,519],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,658,670],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[514,561],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[671,604],[-1,-1,[]],[-1,-1,[]],[672,605],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[62,[519]]]],[90,[[62,[520]]]],[58,[[62,[521]]]],[58,[[62,[522]]]],[58,[[62,[523]]]],[58,[[62,[524]]]],[58,[[62,[525]]]],[58,[[62,[526]]]],[58,[[62,[527]]]],[83,[[62,[528]]]],[58,519],[58,519],[90,520],[90,520],[58,521],[58,521],[58,522],[58,522],[58,523],[58,523],[58,524],[58,524],[58,525],[58,525],[58,526],[58,526],[58,527],[58,527],[83,528],[83,528],[58,519],[90,520],[58,521],[58,522],[58,523],[58,524],[58,525],[58,526],[58,527],[83,528],[[],521],[673,533],[[],533],[-1,519,[[33,[],[[32,[519]]]]]],[-1,520,[[33,[],[[32,[520]]]]]],[-1,521,[[33,[],[[32,[521]]]]]],[-1,522,[[33,[],[[32,[522]]]]]],[-1,523,[[33,[],[[32,[523]]]]]],[-1,524,[[33,[],[[32,[524]]]]]],[-1,525,[[33,[],[[32,[525]]]]]],[-1,526,[[33,[],[[32,[526]]]]]],[-1,527,[[33,[],[[32,[527]]]]]],[-1,528,[[33,[],[[32,[528]]]]]],[120,[[62,[519]]]],[120,[[62,[520]]]],[120,[[62,[521]]]],[120,[[62,[522]]]],[120,[[62,[523]]]],[120,[[62,[524]]]],[120,[[62,[525]]]],[120,[[62,[526]]]],[120,[[62,[527]]]],[120,[[62,[528]]]],[58,[[62,[540]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[659,674]]],[675,676]],0,0,0,[533,[[62,[677]]]],[[654,58],643],[[647,58],643],[[532,534],662],[532,[[74,[666,602]]]],[[532,534,58,58],[[62,[[639,[[3,[514]]]]]]]],[534,551],[534,554],[570,539],[570,538],[534,613],[[534,514],573],[516,30],0,[532,[[557,[532]]]],[534,[[557,[534]]]],[515,[[557,[515]]]],[529,[[557,[529]]]],[535,[[557,[535]]]],[517,[[557,[517]]]],[655,[[557,[655]]]],[643,[[557,[643]]]],[642,[[557,[642]]]],[656,[[557,[656]]]],[651,[[557,[651]]]],[654,[[557,[654]]]],[647,[[557,[647]]]],[665,[[557,[665]]]],[544,[[557,[544]]]],[516,[[557,[516]]]],[[514,520],573],[514,8],[514,8],[629,8],[514,8],[[548,-1],22,91],[[549,-1],22,91],[[519,-1],22,91],[[[550,[-1]],-2],22,92,91],[[520,-1],22,91],[[521,-1],22,91],[[546,-1],22,91],[[551,-1],22,91],[[522,-1],22,91],[[552,-1],22,91],[[523,-1],22,91],[[555,-1],22,91],[[556,-1],22,91],[[[557,[-1]],-2],22,[],91],[[558,-1],22,91],[[559,-1],22,91],[[560,-1],22,91],[[561,-1],22,91],[[562,-1],22,91],[[563,-1],22,91],[[564,-1],22,91],[[566,-1],22,91],[[567,-1],22,91],[[569,-1],22,91],[[524,-1],22,91],[[573,-1],22,91],[[574,-1],22,91],[[575,-1],22,91],[[514,-1],22,91],[[[576,[-1]],-2],22,92,91],[[577,-1],22,91],[[[578,[-1]],-2],22,92,91],[[525,-1],22,91],[[587,-1],22,91],[[592,-1],22,91],[[594,-1],22,91],[[595,-1],22,91],[[597,-1],22,91],[[599,-1],22,91],[[600,-1],22,91],[[601,-1],22,91],[[603,-1],22,91],[[606,-1],22,91],[[608,-1],22,91],[[610,-1],22,91],[[526,-1],22,91],[[611,-1],22,91],[[612,-1],22,91],[[527,-1],22,91],[[615,-1],22,91],[[616,-1],22,91],[[617,-1],22,91],[[618,-1],22,91],[[540,-1],22,91],[[619,-1],22,91],[[620,-1],22,91],[[621,-1],22,91],[[[622,[-1]],-2],22,92,91],[[623,-1],22,91],[[625,-1],22,91],[[626,-1],22,91],[[627,-1],22,91],[[628,-1],22,91],[[629,-1],22,91],[[630,-1],22,91],[[634,-1],22,91],[[528,-1],22,91],[[637,-1],22,91],[535,58],0,0,0,0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],[[518,120],22],[[543,120],22],[[542,120],22],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[[519,519],8],[[520,520],8],[[521,521],8],[[522,522],8],[[523,523],8],[[524,524],8],[[525,525],8],[[526,526],8],[[527,527],8],[[528,528],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[519],[520],[521],[522],[523],[524],[525],[526],[527],[528],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[519,8],[520,8],[521,8],[522,8],[523,8],[524,8],[525,8],[526,8],[527,8],[528,8],[514,8],[514,8],[595,8],[595,8],[[514,514],8],[514,8],[519,8],[520,8],[521,8],[522,8],[523,8],[524,8],[525,8],[526,8],[527,8],[528,8],[592,8],[594,8],[[547,514,58,58],8],[613,8],[514,8],[678,8],[[592,[62,[564]]],8],[[595,[62,[564]]],8],[601,8],[514,8],[[595,[62,[564]]],8],[562,8],[[534,532],8],[[[590,[-1]]],8,[]],[551,8],[519,[[679,[519]]]],[520,[[679,[520]]]],[521,[[679,[521]]]],[522,[[679,[522]]]],[523,[[679,[523]]]],[524,[[679,[524]]]],[525,[[679,[525]]]],[526,[[679,[526]]]],[527,[[679,[527]]]],[528,[[679,[528]]]],[519,[[680,[519]]]],[520,[[680,[520]]]],[521,[[680,[521]]]],[522,[[680,[522]]]],[523,[[680,[523]]]],[524,[[680,[524]]]],[525,[[680,[525]]]],[526,[[680,[526]]]],[527,[[680,[527]]]],[528,[[680,[528]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[547,58],[[161,[58]]]],0,0,0,0,0,[534,546],[515,546],0,0,0,0,0,[[570,609,-1],22,[[54,[[74,[22,607]]]],681]],[[[590,[-1]],-3],[[590,[-2]]],[],[],[[54,[-1],[[19,[-2]]]]]],[[[622,[-1]],-3],[[622,[-2]]],[],[],[[54,[-1],[[19,[-2]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[618,615],58],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[535,58],0,0,0,[[618,58,615],618],[[547,58],[[161,[58]]]],0,0,0,0,[[543,529,90,58],22],[[543,529,90,529,90,58],22],[[543,529,90,58],22],[[543,529,90,529,90,58],22],0,0,0,0,[592,8],[601,8],[603,8],[663,533],[519,519],[520,520],[521,521],[522,522],[523,523],[524,524],[525,525],[526,526],[527,527],[528,528],0,0,0,0,[[516,-1],22,[54,107]],[[515,[95,[682]]],22],0,0,0,0,0,0,[678,22],[[551,551],[[62,[109]]]],[[522,522],[[62,[109]]]],[[552,552],[[62,[109]]]],[[565,565],[[62,[109]]]],[[613,613],[[62,[109]]]],0,[[618,514],618],[514,[[62,[58]]]],[[515,[590,[568]]],678],[[533,8],8],0,[518,22],[543,22],[542,22],[515,[[0,[[110,[],[[19,[[62,[668]]]]]],681]]]],0,0,0,0,[666,22],0,0,0,0,[[518,120],22],[[543,120],22],[[542,120],22],[[515,565],22],0,0,0,0,0,[556,8],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],[514,514],[[533,[550,[532]]],[[0,[[110,[],[[19,[[62,[534]]]]]],681]]]],[[534,[649,[[62,[120]]]],[62,[650]]],[[0,[[110,[],[[19,[[74,[[22,[515,516]],604]]]]]],681]]]],[514,520],0,0,[[518,544,[161,[58]],529,90],22],0,0,0,[535,58],0,0,[[524,58],8],[[514,[62,[540]],[62,[520]]],[[62,[626]]]],[[519,519,8],22],[[520,520,8],22],[[521,521,8],22],[[522,522,8],22],[[523,523,8],22],[[524,524,8],22],[[525,525,8],22],[[526,526,8],22],[[527,527,8],22],[[528,528,8],22],[[543,58,642,[98,[58]]],22],[[543,58,642,[98,[58]]],22],[[542,58,642,[98,[58]]],22],[[653,58,642,[98,[58]]],22],[[653,58,642,[98,[58]]],22],[[543,614],22],[[515,-1],22,[[100,[638,51]],107]],[[543,570,597],22],[[543,570,597],22],[[653,570,597],22],[[653,570,597],22],[[543,654],22],[[543,654],22],[[542,647],22],[[653,654],22],[[653,654],22],[[543,523,58,[98,[83]]],22],[[543,523,58,[98,[83]]],22],[[542,58,[98,[83]]],22],[[653,523,58,[98,[83]]],22],[[653,523,58,[98,[83]]],22],[[543,58,58,58,58],22],[[543,58],22],[[543,58,570],22],[[543,58,570],22],[[653,58,570],22],[[653,58,570],22],[[543,30,30,30,30,30,30],22],0,0,[529,90],[535,618],[610,90],0,0,0,[514,[[22,[58,58]]]],[[529,-1],570,[[442,[90]]]],0,[604,[[62,[683]]]],[605,[[62,[683]]]],[668,[[62,[683]]]],0,0,0,0,[515,22],0,0,0,0,[515,22],0,0,[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],[[516,-1],568,[[33,[],[[32,[664]]]]]],0,[524,[[3,[58]]]],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],0,0,0,0,0,0,0,0,[617,616],[[616,58],617],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[548,120],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[[[536,[-1]],632,8],[[633,[-1]]],[]],[[[633,[-1]]],[[536,[-1]]],104],[[519,519],22],[[520,520],22],[[521,521],22],[[522,522],22],[[523,523],22],[[524,524],22],[[525,525],22],[[526,526],22],[[527,527],22],[[528,528],22],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[[528,528],528],[529,22],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[529,526],[535,527],0,0,0,0,[559,8],[[546,546],546],[[546,546],546],0,0,0,0,0,0,0,0,0,[[],[[590,[-1]]],[]],[-1,[[590,[-1]]],[]],[535,58],0,0,[521,521],[[516,529,90,[98,[83]]],22],[[516,529,90,684],[[62,[537]]]],0,0,[[516,[536,[535]],[98,[83]],624,618],22],[[518,544,58],22],[[543,544,58],22],[[542,544,58],22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[62,[120]],521],[[62,[120]]]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[685,548],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[685,[[62,[[686,[-1]]]]],641],[56,22],[[685,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[686,[-1]]],685,641],[685,[[62,[[96,[[686,[-1]]]]]]],641],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[687,[-1]]],[[690,[[689,[[687,[688]]]]]]],641],[[[691,[-1]]],[[690,[[689,[[691,[688]]]]]]],641],[[[692,[-1]]],[[690,[[689,[[692,[688]]]]]]],641],[[[687,[-1]]],[[690,[[689,[[687,[688]]]]]]],641],[[[691,[-1]]],[[690,[[689,[[691,[688]]]]]]],641],[[[692,[-1]]],[[690,[[689,[[692,[688]]]]]]],641],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[693,693],[694,694],[695,695],[696,696],[697,697],[698,698],[699,699],[700,700],[701,701],[702,702],[703,703],[704,704],[705,705],[706,706],[707,707],[708,708],[709,709],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[687,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[[[691,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[[[692,[-1]]],22,641],[56,22],[56,22],[56,22],0,0,[[704,704],8],[[705,705],8],[[709,709],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[693,72],[[74,[22,73]]]],[[693,72],[[74,[22,73]]]],[[694,72],[[74,[22,73]]]],[[694,72],[[74,[22,73]]]],[[695,72],[[74,[22,73]]]],[[695,72],[[74,[22,73]]]],[[696,72],[[74,[22,73]]]],[[696,72],[[74,[22,73]]]],[[697,72],[[74,[22,73]]]],[[697,72],[[74,[22,73]]]],[[698,72],[[74,[22,73]]]],[[699,72],[[74,[22,73]]]],[[700,72],[[74,[22,73]]]],[[701,72],[[74,[22,73]]]],[[[687,[-1]],72],[[74,[22,73]]],[77,641]],[[702,72],[[74,[22,73]]]],[[702,72],[[74,[22,73]]]],[[703,72],[[74,[22,73]]]],[[703,72],[[74,[22,73]]]],[[704,72],[[74,[22,73]]]],[[[691,[-1]],72],[[74,[22,73]]],[77,641]],[[705,72],[[74,[22,73]]]],[[706,72],[[74,[22,73]]]],[[707,72],[[74,[22,73]]]],[[707,72],[[74,[22,73]]]],[[710,72],[[74,[22,73]]]],[[[692,[-1]],72],[[74,[22,73]]],[77,641]],[[708,72],[[74,[22,73]]]],[[708,72],[[74,[22,73]]]],[[709,72],[[74,[22,73]]]],[[709,72],[[74,[22,73]]]],[[695,711],22],[[702,711],22],[712,693],[713,693],[-1,-1,[]],[714,694],[-1,-1,[]],[715,695],[716,695],[714,695],[-1,-1,[]],[717,695],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[712,702],[-1,-1,[]],[714,702],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[704,-1],22,91],[[705,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[687,[-1]]],51,641],0,0,0,0,0,0,0,0,0,0,[693,[[62,[683]]]],[694,[[62,[683]]]],[695,[[62,[683]]]],[702,[[62,[683]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[718,[-1]]],[[690,[[689,[[718,[688]]]]]]],641],[[[719,[-1]]],[[690,[[689,[[719,[688]]]]]]],641],[[[718,[-1]]],[[690,[[689,[[718,[688]]]]]]],641],[[[719,[-1]]],[[690,[[689,[[719,[688]]]]]]],641],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[720,720],[721,721],[722,722],[723,723],[724,724],[725,725],[726,726],[727,727],[728,728],[729,729],[730,730],[731,731],[[[732,[-1]]],[[732,[-1]]],48],[733,733],[734,734],[735,735],[736,736],[737,737],[738,738],[[[739,[-1]]],[[739,[-1]]],48],[740,740],[741,741],[742,742],[743,743],[744,744],[745,745],[746,746],[747,747],[748,748],[749,749],[750,750],[751,751],[[[752,[-1]]],[[752,[-1]]],48],[753,753],[754,754],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],720],[[],726],[[],[[732,[-1]]],55],[[],744],0,0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[[[718,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[[[719,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[689,[[755,[688]]]]],756],0,0,0,[[720,720],8],[[725,725],8],[[727,727],8],[[730,730],8],[[733,733],8],[[737,737],8],[[738,738],8],[[[739,[-1]],[739,[-1]]],8,67],[[740,740],8],[[741,741],8],[[742,742],8],[[743,743],8],[[744,744],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[757,72],[[74,[22,73]]]],[[758,72],[[74,[22,73]]]],[[720,72],[[74,[22,73]]]],[[756,72],[[74,[22,73]]]],[[721,72],[[74,[22,73]]]],[[721,72],[[74,[22,73]]]],[[722,72],[[74,[22,73]]]],[[722,72],[[74,[22,73]]]],[[[719,[-1]],72],[[74,[22,73]]],[77,641]],[[723,72],[[74,[22,73]]]],[[723,72],[[74,[22,73]]]],[[724,72],[[74,[22,73]]]],[[724,72],[[74,[22,73]]]],[[725,72],[[74,[22,73]]]],[[726,72],[[74,[22,73]]]],[[727,72],[[74,[22,73]]]],[[727,72],[[74,[22,73]]]],[[728,72],[[74,[22,73]]]],[[728,72],[[74,[22,73]]]],[[729,72],[[74,[22,73]]]],[[729,72],[[74,[22,73]]]],[[730,72],[[74,[22,73]]]],[[730,72],[[74,[22,73]]]],[[731,72],[[74,[22,73]]]],[[731,72],[[74,[22,73]]]],[[[732,[-1]],72],[[74,[22,73]]],77],[[733,72],[[74,[22,73]]]],[[734,72],[[74,[22,73]]]],[[734,72],[[74,[22,73]]]],[[735,72],[[74,[22,73]]]],[[735,72],[[74,[22,73]]]],[[736,72],[[74,[22,73]]]],[[736,72],[[74,[22,73]]]],[[737,72],[[74,[22,73]]]],[[738,72],[[74,[22,73]]]],[[[739,[-1]],72],[[74,[22,73]]],77],[[740,72],[[74,[22,73]]]],[[741,72],[[74,[22,73]]]],[[742,72],[[74,[22,73]]]],[[743,72],[[74,[22,73]]]],[[744,72],[[74,[22,73]]]],[[745,72],[[74,[22,73]]]],[[745,72],[[74,[22,73]]]],[[746,72],[[74,[22,73]]]],[[746,72],[[74,[22,73]]]],[[747,72],[[74,[22,73]]]],[[747,72],[[74,[22,73]]]],[[748,72],[[74,[22,73]]]],[[748,72],[[74,[22,73]]]],[[749,72],[[74,[22,73]]]],[[750,72],[[74,[22,73]]]],[[750,72],[[74,[22,73]]]],[[751,72],[[74,[22,73]]]],[[751,72],[[74,[22,73]]]],[[[752,[-1]],72],[[74,[22,73]]],77],[[753,72],[[74,[22,73]]]],[[753,72],[[74,[22,73]]]],[[754,72],[[74,[22,73]]]],[[754,72],[[74,[22,73]]]],[[722,711],22],[[723,711],22],[[728,711],22],[[729,711],22],[[731,711],22],[[734,711],22],[[747,711],22],[[748,711],22],[[750,711],22],[[754,711],22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[746,721],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[714,724],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[709,727],[-1,-1,[]],[716,728],[703,728],[753,728],[735,728],[-1,-1,[]],[727,728],[713,728],[714,728],[715,728],[707,728],[712,728],[-1,-1,[]],[709,730],[-1,-1,[]],[-1,-1,[]],[715,731],[759,731],[703,731],[716,731],[717,731],[-1,-1,[]],[635,733],[-1,-1,[]],[735,734],[714,734],[736,734],[-1,-1,[]],[753,734],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[716,747],[712,747],[753,747],[759,747],[735,747],[-1,-1,[]],[746,747],[731,747],[717,747],[715,747],[714,747],[707,747],[713,747],[730,747],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[724,750],[713,750],[753,751],[714,751],[750,751],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[714,753],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[720,-1],22,91],[[737,-1],22,91],[[738,-1],22,91],[[742,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[718,[-1]]],8,641],[[[718,[-1]]],51,641],0,0,0,0,0,0,0,0,0,0,[[[689,[[718,[688]]]],726],757],[[[689,[[718,[688]]]],744],758],[[720,[689,[[755,[688]]]],[62,[[761,[760]]]]],[[74,[756,721]]]],0,0,0,[756,[[689,[[755,[688]]]]]],[757,[[689,[[718,[688]]]]]],[758,[[689,[[718,[688]]]]]],0,0,0,0,0,0,0,0,0,0,0,[[758,[689,[[762,[688]]]],597,90,[62,[684]]],22],[[756,[689,[[762,[688]]]],597,90,[62,[684]]],22],[721,[[62,[683]]]],[723,[[62,[683]]]],[724,[[62,[683]]]],[727,[[62,[683]]]],[728,[[62,[683]]]],[729,[[62,[683]]]],[730,[[62,[683]]]],[731,[[62,[683]]]],[734,[[62,[683]]]],[747,[[62,[683]]]],[748,[[62,[683]]]],[750,[[62,[683]]]],[751,[[62,[683]]]],[753,[[62,[683]]]],0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[756,58,58,58,58],22],[[756,58,58,58,448,58],22],[[756,[689,[[762,[688]]]],90],22],[[756,[689,[[762,[688]]]],90],22],[[756,446],22],[756,22],[[756,446],22],[[756,58,[689,[[692,[688]]]],58,56],22],[[756,[689,[[762,[688]]]],597,90,[62,[684]]],22],[[756,[689,[[763,[688]]]]],22],[[756,523,58,58,83],22],[[756,58,[689,[[762,[688]]]],90,[62,[684]]],22],[[757,[689,[[764,[688]]]],58],22],[[757,58,58,58],22],[[757,[689,[[762,[688]]]],90],22],[757,22],[[757,446,58],22],[757,22],[[757,446,58],22],[[757,58,[689,[[692,[688]]]],58,56],22],[[757,[689,[[765,[688]]]]],22],[[757,58,58,83],22],[[757,[689,[[764,[688]]]],58],22],[[758,58],22],[[758,[689,[[764,[688]]]],58],22],[[758,58,58,58,58],22],[[758,58,58,58,448,58],22],[[758,[689,[[762,[688]]]],90],22],[[758,[689,[[762,[688]]]],90],22],[758,22],[758,22],[[758,689,56],22],[[758,446,58],22],[[758,[689,[[762,[688]]]],90,58],22],[[758,[689,[[762,[688]]]],90,[689,[[762,[688]]]],90,58],22],[[758,[689,[[762,[688]]]],90,58],22],[[758,[689,[[762,[688]]]],90,[689,[[762,[688]]]],90,58],22],[758,22],[[758,446,58],22],[[758,58,[689,[[692,[688]]]],58,56],22],[[758,614],22],[[758,[689,[[762,[688]]]],597,90,[62,[684]]],22],[[758,[689,[[763,[688]]]]],22],[[758,523,58,58,83],22],[[758,58,58,58,58],22],[[758,58],22],[[758,58,[689,[[762,[688]]]],90,[62,[684]]],22],[[758,30,30,30,30,30,30],22],[[758,[689,[[764,[688]]]],58],22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[755,[-1]]],[[690,[[689,[[755,[688]]]]]]],641],[[[755,[-1]]],[[690,[[689,[[755,[688]]]]]]],641],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[766,766],[767,767],[768,768],[759,759],[769,769],[714,714],[712,712],[713,713],[770,770],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[96,[[755,[-1]]]],[644,[[62,[[99,[120]]]]]]],[[762,[-1]]],641],[[],771],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[755,[-1]]],22,641],[56,22],[56,22],[772,22],[773,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[767,767],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[[755,[-1]],72],[[74,[22,73]]],641],[[766,72],[[74,[22,73]]]],[[766,72],[[74,[22,73]]]],[[767,72],[[74,[22,73]]]],[[768,72],[[74,[22,73]]]],[[759,72],[[74,[22,73]]]],[[759,72],[[74,[22,73]]]],[[769,72],[[74,[22,73]]]],[[769,72],[[74,[22,73]]]],[[714,72],[[74,[22,73]]]],[[714,72],[[74,[22,73]]]],[[712,72],[[74,[22,73]]]],[[712,72],[[74,[22,73]]]],[[713,72],[[74,[22,73]]]],[[713,72],[[74,[22,73]]]],[[770,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[714,766],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[774,714],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[773,775],[[[95,[100]]],775],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[755,[-1]]],8,641],0,0,0,0,0,0,0,0,[766,[[62,[683]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[776,[[62,[[96,[[755,[-1]]]]]]],641],[776,[[62,[[755,[-1]]]]],641],[56,22],[[776,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[96,[[755,[-1]]]]],776,641],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[777,[-1]]],[[690,[[689,[[755,[688]]]]]]],641],[[[777,[-1]]],[[690,[[689,[[755,[688]]]]]]],641],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[778,778],[779,779],[780,780],[781,781],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[[[777,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[778,72],[[74,[22,73]]]],[[[782,[-1]],72],[[74,[22,73]]],[77,641]],[[779,72],[[74,[22,73]]]],[[779,72],[[74,[22,73]]]],[[780,72],[[74,[22,73]]]],[[780,72],[[74,[22,73]]]],[[781,72],[[74,[22,73]]]],[[781,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[750,780],[-1,-1,[]],[724,780],[714,780],[714,781],[-1,-1,[]],[783,781],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[784,785],[[[95,[54]]],785],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[780,[[62,[683]]]],[781,[[62,[683]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[786,786],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[786,72],[[74,[22,73]]]],[[786,72],[[74,[22,73]]]],[714,786],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[786,[[62,[683]]]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[711,[689,[[692,[688]]]]],22],[[711,[689,[[687,[688]]]]],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[711,[689,[[762,[688]]]]],22],[[711,[689,[[762,[688]]]],120],22],0,[[711,[689,[[718,[688]]]]],22],[-1,-2,[],[]],[-1,-2,[],[]],[[711,[689,[[765,[688]]]]],22],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[711,683],22],[[787,72],[[74,[22,73]]]],[[787,72],[[74,[22,73]]]],[[788,711],22],[[787,711],22],[[789,[791,[790]],683],22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[711,120,51],22],0,0,[[711,78],22],[[711,[689,[[764,[688]]]]],22],[[711,[689,[[763,[688]]]]],22],[[711,[689,[[792,[688]]]]],22],[787,[[62,[683]]]],0,[[711,[689,[[793,[688]]]]],22],[[711,[689,[[793,[688]]]],120],22],[[711,[689,[[794,[688]]]]],22],[[711,[689,[[794,[688]]]],120],22],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[791,[-1]],[689,[[795,[688]]]],-3],-2,796,[],[[54,[62],[[19,[-2]]]]]],[[[791,[-1]],[689,[[795,[688]]]]],[[74,[551,797]]],796],[[[791,[-1]],[689,[[795,[688]]]]],22,796],[[[791,[-1]],[689,[[795,[688]]]]],[[74,[520,797]]],796],[[[791,[-1]],[689,[[795,[688]]]]],[[74,[554,797]]],796],[[[791,[-1]],[689,[[795,[688]]]]],[[74,[613,797]]],796],[[[791,[-1]],[689,[[795,[688]]]],514],[[74,[573,797]]],796],[[[791,[-1]],[689,[[795,[688]]]],[689,[798]]],[[74,[8,799]]],796],[[[791,[-1]],[689,[[795,[688]]]]],[[74,[546,797]]],796],[[[791,[-1]],[689,[[795,[688]]]],[649,[[62,[[99,[120]]]]]],[62,[650]]],[[22,[[689,[[755,[688]]]],[689,[[755,[688]]]],[62,[671]]]]],796],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[791,[-1]],[689,[[692,[688]]]]],22,796],[[[791,[-1]],[689,[[692,[688]]]]],51,796],[[[791,[-1]],[689,[[687,[688]]]]],22,796],[[[791,[-1]],[689,[[687,[688]]]]],51,796],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[791,[-1]],[689,[[762,[688]]]]],[[74,[22,800]]],796],[[[791,[-1]],[689,[[762,[688]]]],8],22,796],[[[791,[-1]],[689,[[762,[688]]]],90,[62,[90]]],[[74,[[22,[83,90]],783]]],796],[[[791,[-1]],[689,[[762,[688]]]]],51,796],[[[791,[-1]],[689,[[762,[688]]]],[161,[90]],801],[[74,[22,783]]],796],[[[791,[-1]],[689,[[762,[688]]]]],[[74,[22,783]]],796],[[[791,[-1]],22],22,796],[[[791,[-1]],[689,[[718,[688]]]]],22,796],[[[791,[-1]],[689,[[718,[688]]]]],51,796],[[[791,[-1]],[689,[[718,[688]]]],[689,[[762,[688]]]],90,[62,[90]]],[[74,[22,724]]],796],[[[791,[-1]],[689,[[718,[688]]]],[689,[[793,[688]]]],547],[[74,[22,724]]],796],[[[791,[-1]],[689,[[718,[688]]]],[689,[[762,[688]]]],90,[689,[[762,[688]]]],90,90],[[74,[22,751]]],796],[[[791,[-1]],[689,[[718,[688]]]],[631,[[689,[[762,[688]]]]]],[536,[[689,[[793,[688]]]]]],618],[[74,[22,751]]],796],[[[791,[-1]],[689,[[718,[688]]]],[536,[[689,[[793,[688]]]]]],[631,[[689,[[762,[688]]]]]],618],[[74,[22,751]]],796],[[[791,[-1]],[689,[[718,[688]]]],[536,[[689,[[793,[688]]]]]],[536,[[689,[[793,[688]]]]]],618],[[74,[22,751]]],796],[[[791,[-1]],[689,[[718,[688]]]]],22,796],[[[791,[-1]],[689,[[718,[688]]]],[622,[[62,[[99,[120]]]]]]],[[22,[[689,[[718,[688]]]],[62,[753]]]]],796],[[[791,[-1]],[689,[[718,[688]]]],120],[[74,[22,753]]],796],[[[791,[-1]],[689,[[718,[688]]]]],[[74,[22,753]]],796],[[[791,[-1]],[689,[[718,[688]]]],120],[[74,[22,753]]],796],[[[791,[-1]],[689,[[718,[688]]]],[689,[[764,[688]]]],58,58,[689,[[762,[688]]]],90],[[74,[22,734]]],796],[[[791,[-1]],[689,[[718,[688]]]],757],[[74,[22,729]]],796],[[[791,[-1]],[689,[[718,[688]]]],758],[[74,[22,748]]],796],[[[791,[-1]],[689,[[718,[688]]]],[689,[[764,[688]]]],58],[[74,[22,734]]],796],[-1,-2,[],[]],[-1,-2,[],[]],[[[791,[-1]],[689,[[765,[688]]]]],22,796],[[[791,[-1]],[689,[[765,[688]]]],58],[[22,[[689,[[687,[688]]]],[62,[708]]]]],796],[[[791,[-1]],[689,[[765,[688]]]]],51,796],[[[791,[-1]],[640,[-2]]],[[689,[[795,[688]]]]],796,641],[[[791,[-1]],[62,[[99,[120]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]],[644,[[62,[[99,[120]]]]]]],[[22,[[689,[[762,[688]]]],[62,[802]]]]],796],[[[791,[-1]],[689,[[795,[688]]]],[648,[-2]],[649,[[62,[[99,[120]]]]]],[62,[650]]],[[22,[[689,[[755,[688]]]],[689,[[755,[688]]]],[62,[671]]]]],796,641],[[[791,[-1]],[62,[[99,[120]]]]],22,796],[[[791,[-1]],[62,[[99,[120]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]],[660,[[62,[[99,[120]]]],[3,[514]]]]],[[22,[[689,[[793,[688]]]],[62,[803]]]]],796],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[791,[-1]],[689,[[755,[688]]]],-3],-2,796,[],[[54,[62],[[19,[-2]]]]]],[[[791,[-1]],[689,[[755,[688]]]],700],[[22,[[689,[[692,[688]]]],[62,[695]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],701],[[22,[[689,[[687,[688]]]],[62,[694]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],[644,[[62,[[99,[120]]]]]]],[[22,[[689,[[762,[688]]]],[62,[802]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],[646,[[62,[[99,[120]]]]]]],[[22,[[689,[[718,[688]]]],[62,[714]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],804,[62,[[805,[-1]]]]],[[22,[[689,[[765,[688]]]],[62,[806]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],704],[[22,[[689,[[691,[688]]]],[62,[702]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],[652,[[62,[[99,[120]]]]]]],[[22,[[689,[[764,[688]]]],[62,[807]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],720],[[22,[756,[62,[721]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],808,[62,[[805,[-1]]]]],[[22,[[689,[[763,[688]]]],[62,[809]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],810],[[22,[[689,[[792,[688]]]],[62,[811]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],812,813],[[22,[[689,[[814,[688]]]],[62,[815]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],812,[99,[[98,[58]]]]],[[22,[[689,[[814,[688]]]],[62,[815]]]]],796],[[[791,[-1]],[689,[[755,[688]]]],[660,[[62,[[99,[120]]]],[3,[514]]]]],[[22,[[689,[[793,[688]]]],[62,[803]]]]],796],[[[791,[-1]],[689,[[755,[688]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]]],[[74,[551,769]]],796],[[[791,[-1]],[689,[[755,[688]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]]],[[74,[520,769]]],796],[[[791,[-1]],[689,[[755,[688]]]],-3],-2,796,[],[[54,[62],[[19,[-2]]]]]],[[[791,[-1]],[689,[[755,[688]]]]],51,796],[[[791,[-1]],[689,[[755,[688]]]]],[[74,[546,769]]],796],[[[791,[-1]],[689,[[755,[688]]]],120],22,796],[[[791,[-1]],[689,[[755,[688]]]],[590,[778]]],[[74,[8,766]]],796],[[[791,[-1]],[689,[[755,[688]]]],775],22,796],[[[791,[-1]],[689,[[755,[688]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]]],22,796],[-1,-2,[],[]],[-1,-2,[],[]],[[[791,[-1]]],22,796],[56,22],[56,22],[[[791,[-1]],816],[[3,[[689,[[795,[688]]]]]]],796],[[677,677],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[677,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[120,-1],[[791,[-1]]],796],[[-1,673],[[791,[-1]]],796],[-1,-2,[],[]],[-1,-2,[],[]],[[[791,[-1]]],677,796],0,[[677,548],817],[[],56],[[],56],0,[[[791,[-1]]],62,796],[[[791,[-1]],818,819],[[74,[[689,[798]],672]]],796],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[120,-1,663],[[791,[-1]]],796],[[[791,[-1]],[689,[[691,[688]]]]],22,796],[[[791,[-1]],[689,[[691,[688]]]]],51,796],[[[791,[-1]],8],[[74,[8,766]]],796],[[[791,[-1]],[689,[[764,[688]]]]],22,796],[[[791,[-1]],[689,[[764,[688]]]]],51,796],[[[791,[-1]],[689,[[755,[688]]]],684],[[74,[[22,[[689,[[820,[688]]]],83]],780]]],796],[[[791,[-1]],[689,[[755,[688]]]]],22,796],[[[791,[-1]],[689,[[755,[688]]]]],[[74,[30,779]]],796],[[[791,[-1]],[689,[[755,[688]]]],785],[[74,[22,779]]],796],[[[791,[-1]],[689,[[755,[688]]]],[98,[[689,[[718,[688]]]]]]],[[74,[778,781]]],796],[[[791,[-1]],[689,[[755,[688]]]],[689,[[762,[688]]]],90,90],[[74,[22,780]]],796],[[[791,[-1]],[689,[[755,[688]]]],[689,[[762,[688]]]],90,[98,[83]]],[[74,[22,780]]],796],[[[791,[-1]],[689,[[755,[688]]]],[689,[[762,[688]]]],90,[689,[[820,[688]]]]],[[74,[22,780]]],796],[[[791,[-1]],[689,[[755,[688]]]],[536,[[689,[[793,[688]]]]]],[98,[83]],624,618],[[74,[22,780]]],796],[[[791,[-1]],[689,[[719,[688]]]]],22,796],[[[791,[-1]],756,[667,[[62,[[99,[120]]]]]]],[[22,[[689,[[719,[688]]]],[62,[723]]]]],796],[[[791,[-1]],[689,[[719,[688]]]]],51,796],[[[791,[-1]],[689,[[763,[688]]]]],22,796],[[[791,[-1]],[689,[[763,[688]]]],58],[[22,[[689,[[687,[688]]]],[62,[708]]]]],796],[[[791,[-1]],[689,[[763,[688]]]]],51,796],[[[791,[-1]],[550,[[689,[798]]]],816],[[74,[[689,[[795,[688]]]],821]]],796],[[[791,[-1]],[689,[[792,[688]]]]],22,796],[[[791,[-1]],[689,[[792,[688]]]]],51,796],[[[791,[-1]],[689,[[814,[688]]]]],22,796],[[[791,[-1]],[689,[[814,[688]]]]],51,796],[[[791,[-1]],[689,[798]],-3],-2,796,[],[[54,[62],[[19,[-2]]]]]],[[[791,[-1]],[689,[798]],[689,[[755,[688]]]],[639,[[3,[514]]]]],[[62,[822]]],796],[[[791,[-1]],[689,[798]]],22,796],[[[791,[-1]],[689,[798]],[689,[[795,[688]]]]],[[74,[662,823]]],796],[[[791,[-1]],[689,[798]]],[[74,[824,825]]],796],[[[791,[-1]],[689,[798]]],[[74,[669,825]]],796],[[[791,[-1]],[689,[798]]],[[74,[22,825]]],796],[677,826],0,0,[[[791,[-1]],[689,[[793,[688]]]],-2],22,796,[[54,[62]]]],[[[791,[-1]],[689,[[793,[688]]]],827],[[22,[[689,[[794,[688]]]],[62,[828]]]]],796],[[[791,[-1]],[689,[[793,[688]]]]],[[74,[22,800]]],796],[[[791,[-1]],[689,[[793,[688]]]],8],22,796],[[[791,[-1]],[689,[[793,[688]]]]],51,796],[[[791,[-1]],[689,[[794,[688]]]],8],[[74,[22,829]]],796],[[[791,[-1]],[689,[[794,[688]]]]],51,796],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,[[120,-1],673,[]],[798,[[62,[[686,[641]]]]]],[[[791,[-1]]],[[830,[641]]],796],[673,[[62,[-1]]],[]],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[[817,817],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[817,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[830,[-1]]],817,641],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[817,8],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[[[689,[-1]]],548,831],[-1,-2,[],[]],[-1,-2,[],[]],[[[689,[-1]]],[[689,[-1]]],831],[[-1,-2],22,[],[]],[[[689,[-1]],[689,[-1]]],109,831],[[-1,-2],109,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[[689,[-1]],[689,[-1]]],8,831],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[[689,[-1]],72],[[74,[22,73]]],831],[-1,-1,[]],[832,[[689,[-1]]],831],[-1,-1,[]],[684,[[689,[-1]]],831],[-1,-2,[],[]],[[[689,[-1]],-2],22,831,91],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[833,684],[[[689,[-1]]],684,831],[-1,-2,[],[]],[[[689,[-1]],[689,[-1]]],[[62,[109]]],831],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[833,[[22,[58,58,548]]]],[[[689,[-1]]],[[22,[58,58,548]]],831],[-1,[[62,[-2]]],[],[]],[[58,58,548],833],[[58,58,548],[[689,[-1]]],831],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[],8],[[],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[[834,[-1]],72],[[74,[22,73]]],[77,833]],[[790,72],[[74,[22,73]]]],[[[834,[-1]],-1],22,833],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],833],[[],-1,833],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[834,[-1]],-1],-1,833],[[],[[834,[-1]]],833],[[[834,[-1]],548],-1,833],[[[836,[],[[835,[-1]]]]],[[96,[[834,[-2]]]]],104,833],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[798,[[690,[[689,[798]]]]]],[[[795,[-1]]],[[690,[[689,[[795,[688]]]]]]],641],[798,[[690,[[689,[798]]]]]],[[[795,[-1]]],[[690,[[689,[[795,[688]]]]]]],641],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[686,[-1]]],[[686,[-1]]],[48,641]],[837,837],[799,799],[823,823],[671,671],[797,797],[821,821],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],673],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[[837,72],[[74,[22,73]]]],[[837,72],[[74,[22,73]]]],[[799,72],[[74,[22,73]]]],[[799,72],[[74,[22,73]]]],[[823,72],[[74,[22,73]]]],[[823,72],[[74,[22,73]]]],[[671,72],[[74,[22,73]]]],[[671,72],[[74,[22,73]]]],[[797,72],[[74,[22,73]]]],[[797,72],[[74,[22,73]]]],[[821,72],[[74,[22,73]]]],[[821,72],[[74,[22,73]]]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[837,671],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[798,[795,[-1]]],[[74,[838,823]]],641],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[795,[-1]],798],8,641],[798,51],0,[[120,663],673],[120,519],0,0,[671,[[62,[683]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[839,840],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],840],[[],841],[[[842,[-1]],-3],[[842,[-2]]],[],[],[[54,[-1],[[19,[[842,[-2]]]]]]]],[[[843,[-1]],-1,844],[[845,[-1]]],[]],[[846,846],22],[[847,848],22],[849,56],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[842,[-1]]],-1,[]],[[850,850],[[62,[850]]]],[[850,850],8],0,0,0,0,0,0,[[840,840],840],[[841,841],841],[[840,840],22],[[841,841],22],[[840,840],840],[[841,841],841],[[840,840],22],[[841,841],22],[840,58],[840,58],[841,58],[841,58],[[840,840],840],[[841,841],841],[[840,840],22],[[841,841],22],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[848,[852,[851]]],[[62,[848]]]],[[[843,[-1]],[845,[-1]]],[[74,[22,853]]],[]],[[[852,[-1]],[845,[-1]]],[[74,[22,853]]],[320,92]],[[[843,[-1]],[854,[-1]]],[[74,[22,855]]],[]],[[[843,[-1]]],22,[]],[[[852,[-1]]],22,[]],[[[845,[-1]]],[[845,[-1]]],[]],[[[854,[-1]]],[[854,[-1]]],[]],[[[843,[-1]]],[[843,[-1]]],48],[[[852,[-1]]],[[852,[-1]]],48],[846,846],[844,844],[856,856],[[[842,[-1]]],[[842,[-1]]],48],[857,857],[858,858],[859,859],[839,839],[860,860],[861,861],[862,862],[850,850],[863,863],[864,864],[865,865],[866,866],[867,867],[840,840],[868,868],[869,869],[851,851],[848,848],[870,870],[871,871],[872,872],[847,847],[873,873],[874,874],[875,875],[876,876],[877,877],[878,878],[879,879],[880,880],[881,881],[849,849],[882,882],[883,883],[884,884],[841,841],[885,885],[886,886],[887,887],[888,888],[889,889],[890,890],[891,891],[892,892],[893,893],[894,894],[895,895],[896,896],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[[845,[-1]],[845,[-1]]],109,[]],[[857,857],109],[[858,858],109],[[859,859],109],[[839,839],109],[[860,860],109],[[861,861],109],[[862,862],109],[[863,863],109],[[864,864],109],[[865,865],109],[[867,867],109],[[840,840],109],[[868,868],109],[[869,869],109],[[873,873],109],[[876,876],109],[[877,877],109],[[878,878],109],[[879,879],109],[[880,880],109],[[881,881],109],[[849,849],109],0,[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[840,840],[841,841],[[848,56],[[62,[897]]]],[848,[[62,[58]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[840,840],8],[[841,841],8],[[846,-1],22,[[442,[56]],48]],[[],[[843,[-1]]],[]],[[],[[852,[-1]]],[]],[[],846],[[],844],[[],840],[[],841],[[],892],[[],895],[[],896],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[846,[[98,[889]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[846,[[98,[889]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[840,840],840],[[841,841],841],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[[[842,[-1]],120],22,683],[[[842,[-1]],120,120],22,683],[[[842,[-1]],120],51,683],[[[842,[-1]],120,120],51,683],[[],840],[[],841],0,[[[845,[-1]],[845,[-1]]],8,[]],[[844,844],8],[[856,856],8],[[857,857],8],[[858,858],8],[[859,859],8],[[839,839],8],[[860,860],8],[[861,861],8],[[862,862],8],[[850,850],8],[[863,863],8],[[864,864],8],[[865,865],8],[[866,866],8],[[867,867],8],[[840,840],8],[[868,868],8],[[869,869],8],[[851,851],8],[[848,848],8],[[870,870],8],[[871,871],8],[[872,872],8],[[847,847],8],[[873,873],8],[[874,874],8],[[876,876],8],[[877,877],8],[[878,878],8],[[879,879],8],[[880,880],8],[[881,881],8],[[849,849],8],[[882,882],8],[[883,883],8],[[884,884],8],[[841,841],8],[[885,885],8],[[886,886],8],[[894,894],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[848,848,[852,[851]]],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,[[846,[62,[[22,[889,844]]]]],22],[[840,-1],22,[[33,[],[[32,[840]]]]]],[[841,-1],22,[[33,[],[[32,[841]]]]]],[[846,846],22],0,[[[843,[-1]],-2],[[62,[[845,[-1]]]]],[],[[100,[-1],[[19,[8]]]]]],[[[843,[-1]],-1,844,-2],[[845,[-1]]],[],[[100,[-1,-1],[[19,[8]]]]]],[[[843,[-1]],-1,844],[[845,[-1]]],67],[[[854,[-1]]],[[62,[[22,[[845,[-1]],[845,[-1]]]]]]],[]],[83,850],[[[845,[-1]],72],[[74,[22,73]]],[]],[[[854,[-1]],72],[[74,[22,73]]],[]],[[[843,[-1]],72],[[74,[22,73]]],77],[[[852,[-1]],72],[[74,[22,73]]],[77,320,92]],[[846,72],[[74,[22,73]]]],[[844,72],[[74,[22,73]]]],[[856,72],[[74,[22,73]]]],[[[842,[-1]],72],[[74,[22,73]]],78],[[[842,[-1]],72],[[74,[22,73]]],77],[[857,72],[[74,[22,73]]]],[[858,72],[[74,[22,73]]]],[[859,72],[[74,[22,73]]]],[[839,72],[[74,[22,73]]]],[[860,72],[[74,[22,73]]]],[[861,72],[[74,[22,73]]]],[[862,72],[[74,[22,73]]]],[[850,72],[[74,[22,73]]]],[[863,72],[[74,[22,73]]]],[[864,72],[[74,[22,73]]]],[[865,72],[[74,[22,73]]]],[[866,72],[[74,[22,73]]]],[[867,72],[[74,[22,73]]]],[[840,72],[[74,[22,73]]]],[[840,72],[[74,[22,73]]]],[[840,72],[[74,[22,73]]]],[[840,72],[[74,[22,73]]]],[[840,72],[[74,[22,73]]]],[[868,72],[[74,[22,73]]]],[[869,72],[[74,[22,73]]]],[[851,72],[[74,[22,73]]]],[[848,72],[[74,[22,73]]]],[[870,72],[[74,[22,73]]]],[[871,72],[[74,[22,73]]]],[[872,72],[[74,[22,73]]]],[[847,72],[[74,[22,73]]]],[[873,72],[[74,[22,73]]]],[[874,72],[[74,[22,73]]]],[[875,72],[[74,[22,73]]]],[[876,72],[[74,[22,73]]]],[[877,72],[[74,[22,73]]]],[[878,72],[[74,[22,73]]]],[[879,72],[[74,[22,73]]]],[[880,72],[[74,[22,73]]]],[[881,72],[[74,[22,73]]]],[[849,72],[[74,[22,73]]]],[[882,72],[[74,[22,73]]]],[[883,72],[[74,[22,73]]]],[[884,72],[[74,[22,73]]]],[[841,72],[[74,[22,73]]]],[[841,72],[[74,[22,73]]]],[[841,72],[[74,[22,73]]]],[[841,72],[[74,[22,73]]]],[[841,72],[[74,[22,73]]]],[[885,72],[[74,[22,73]]]],[[886,72],[[74,[22,73]]]],[[887,72],[[74,[22,73]]]],[[888,72],[[74,[22,73]]]],[[889,72],[[74,[22,73]]]],[[890,72],[[74,[22,73]]]],[[891,72],[[74,[22,73]]]],[[892,72],[[74,[22,73]]]],[[893,72],[[74,[22,73]]]],[[894,72],[[74,[22,73]]]],[[895,72],[[74,[22,73]]]],[[896,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[3,[889]]],846],[-1,-1,[]],[[[161,[56]]],844],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[868,862],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[62,[840]]]],[58,[[62,[841]]]],[58,840],[58,840],[58,841],[58,841],[58,840],[58,841],[58,884],[-1,840,[[33,[],[[32,[840]]]]]],[-1,841,[[33,[],[[32,[841]]]]]],[120,[[62,[840]]]],[120,[[62,[841]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[3,[889]]],846],[[[161,[58]],[843,[-1]]],[[854,[-1]]],[]],0,0,0,[[896,894],[[845,[851]]]],[896,[[845,[851]]]],[896,[[845,[851]]]],[[[852,[-1]],-1],[[62,[[845,[-1]]]]],[320,92]],[[[852,[-1]],[845,[-1]]],[[74,[-1,853]]],[320,92]],[[[843,[-1]],[845,[-1]]],-1,[]],[[[843,[-1]],[845,[-1]]],844,[]],[[[852,[-1]],[845,[-1]]],844,[]],0,0,[[[845,[-1]],-2],22,[],91],[[857,-1],22,91],[[858,-1],22,91],[[859,-1],22,91],[[839,-1],22,91],[[860,-1],22,91],[[861,-1],22,91],[[862,-1],22,91],[[850,-1],22,91],[[863,-1],22,91],[[864,-1],22,91],[[865,-1],22,91],[[866,-1],22,91],[[867,-1],22,91],[[840,-1],22,91],[[868,-1],22,91],[[869,-1],22,91],[[851,-1],22,91],[[848,-1],22,91],[[870,-1],22,91],[[847,-1],22,91],[[873,-1],22,91],[[876,-1],22,91],[[877,-1],22,91],[[878,-1],22,91],[[879,-1],22,91],[[880,-1],22,91],[[881,-1],22,91],[[849,-1],22,91],[[886,-1],22,91],[[894,-1],22,91],[882,8],[[[845,[-1]]],56,[]],[[[843,[-1]],[854,[-1]]],[[98,[-1]]],[]],[[[843,[-1]],[845,[-1]]],-1,[]],[[[852,[-1]],[845,[-1]]],-1,[]],[884,58],[[[843,[-1]],[845,[-1]]],-1,[]],[[848,896],[[74,[898,899]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,0,0,0,[[[852,[-1]],-1,844],[[845,[-1]]],[320,92]],[[840,840],22],[[841,841],22],[[840,840],840],[[841,841],841],[[840,840],8],[[841,841],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[843,[-1]]],[[3,[-1]]],[]],[[[842,[-1]]],-1,[]],[-1,-2,[],[]],[846,[[900,[889]]]],[840],[841],[[[842,[-1]]],[[842,[-2]]],[],[[286,[-1]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[850,8],[840,8],[841,8],[[848,[852,[851]]],8],[844,8],[[885,896],8],[[848,[852,[851]]],8],[[[843,[-1]]],8,[]],[[[852,[-1]]],8,[]],[846,8],[840,8],[841,8],[869,8],[869,8],[862,8],[889,8],[[[843,[-1]]],[[0,[901]]],[]],[[[852,[-1]]],[[0,[901]]],[320,92]],[840,[[679,[840]]]],[841,[[679,[841]]]],[[[843,[-1]]],[[0,[901]]],[]],[840,[[680,[840]]]],[841,[[680,[841]]]],0,0,[[[843,[-1]]],56,[]],[[[852,[-1]]],56,[]],[846,56],0,0,0,0,[[844,120],856],[[[842,[-1]],120],[[62,[856]]],[]],0,0,0,0,0,0,0,0,0,[885,8],[[],[[843,[-1]]],[]],[[],[[852,[-1]]],[]],[[],846],[[58,58],844],[-1,[[842,[-1]]],[]],[[83,850],[[62,[870]]]],[[[845,[-1]],[845,[-1]]],[[854,[-1]]],[]],[[[854,[-1]]],62,[]],[840,840],[841,841],0,0,[850,[[62,[870]]]],[[892,[845,[885]]],[[62,[[845,[874]]]]]],0,[[[845,[-1]],[845,[-1]]],[[62,[109]]],[]],[[857,857],[[62,[109]]]],[[858,858],[[62,[109]]]],[[859,859],[[62,[109]]]],[[839,839],[[62,[109]]]],[[860,860],[[62,[109]]]],[[861,861],[[62,[109]]]],[[862,862],[[62,[109]]]],[[863,863],[[62,[109]]]],[[864,864],[[62,[109]]]],[[865,865],[[62,[109]]]],[[867,867],[[62,[109]]]],[[840,840],[[62,[109]]]],[[868,868],[[62,[109]]]],[[869,869],[[62,[109]]]],[[870,870],[[62,[109]]]],[[873,873],[[62,[109]]]],[[876,876],[[62,[109]]]],[[877,877],[[62,[109]]]],[[878,878],[[62,[109]]]],[[879,879],[[62,[109]]]],[[880,880],[[62,[109]]]],[[881,881],[[62,[109]]]],[[849,849],[[62,[109]]]],[[884,884],[[62,[109]]]],[848,[[62,[839]]]],0,0,[[846,889,844],22],[[[843,[-1]],56],[[854,[-1]]],[]],0,0,[[840,840],22],[[841,841],22],[[[852,[-1]],[845,[-1]],-1],22,[320,92]],0,[848,[[62,[850]]]],[870,850],[848,[[62,[862]]]],[870,862],[848,[[62,[83]]]],[[840,840,8],22],[[841,841,8],22],[[848,902],58],[[[842,[-1]]],[[62,[683]]],683],0,[846,[[0,[[126,[],[[32,[[22,[889,844]]]]]]]]]],[846,[[0,[[126,[],[[32,[[22,[889,[62,[844]]]]]]]]]]]],[[[842,[-1]]],[[0,[903]]],[]],0,[[846,-1,846],22,[[442,[56]],48]],0,[[840,840],840],[[841,841],841],[[840,840],22],[[841,841],22],[[844,844],22],[[840,840],840],[[841,841],841],[847,[[62,[860]]]],[896,902],[859,120],[[863,896],[[74,[898,899]]]],[850,848],[850,848],[[850,861],848],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[844,[[62,[[161,[56]]]]]],[-1,115,[]],[-1,51,[]],[[[845,[851]],902],51],[850,51],[868,120],[[848,902],51],[[840,840],22],[[841,841],22],[-1,844,[[126,[],[[32,[844]]]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[[[843,[-1]],[845,[-1]]],[[74,[-1,853]]],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,0,0,0,0,0,[870,848],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[840,840],840],[[841,841],841],[[844,844],844],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,[870,83],0,[56,846],[[[842,[-1]],[22,[844,51]]],[[842,[-1]]],[]],[[[842,[-1]],844,-2],[[842,[-1]]],[],292],0,[850,[[62,[870]]]],[[[854,[-1]]],[[161,[58]]],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],904],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[[904,904],904],[[904,904],22],[[904,904],904],[[904,904],22],[904,58],[904,58],[[904,904],904],[[904,904],22],[-1,-2,[],[]],[-1,-2,[],[]],[904,904],[[-1,-2],22,[],[]],[904,904],[-1,-2,[],[]],[[904,904],8],[[],904],[56,-1,[]],[56,-1,[]],[[904,904],904],[-1,-2,[],[]],[56,22],[[],904],[[904,904],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[904,-1],22,[[33,[],[[32,[904]]]]]],[[904,72],[[74,[22,73]]]],[[904,72],[[74,[22,73]]]],[[904,72],[[74,[22,73]]]],[[904,72],[[74,[22,73]]]],[[904,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[58,[[62,[904]]]],[58,904],[58,904],[58,904],[-1,904,[[33,[],[[32,[904]]]]]],[120,[[62,[904]]]],[-1,-2,[],[]],0,0,[[],56],[[904,904],22],[[904,904],904],[[904,904],8],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[904],[-1,-2,[],[]],[904,8],[904,8],[904,[[679,[904]]]],[904,[[680,[904]]]],0,[904,904],[[904,904],22],[[904,904,8],22],0,[[904,904],904],[[904,904],22],[[904,904],904],[-1,-2,[],[]],[[904,904],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[904,904],904],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],905],[[],906],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[[905,905],905],[[906,906],906],[[905,905],22],[[906,906],22],[[905,905],905],[[906,906],906],[[905,905],22],[[906,906],22],[905,58],[905,58],[906,58],[906,58],[[905,905],905],[[906,906],906],[[905,905],22],[[906,906],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[905,905],[907,907],[906,906],[908,908],[909,909],[910,910],[911,911],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[905,905],[906,906],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[905,905],8],[[906,906],8],[[],908],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[905,905],905],[[906,906],906],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[],905],[[],906],0,[[905,905],8],[[907,907],8],[[906,906],8],[[909,909],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[905,-1],22,[[33,[],[[32,[905]]]]]],[[906,-1],22,[[33,[],[[32,[906]]]]]],[[905,72],[[74,[22,73]]]],[[905,72],[[74,[22,73]]]],[[905,72],[[74,[22,73]]]],[[905,72],[[74,[22,73]]]],[[905,72],[[74,[22,73]]]],[[907,72],[[74,[22,73]]]],[[907,72],[[74,[22,73]]]],[[906,72],[[74,[22,73]]]],[[906,72],[[74,[22,73]]]],[[906,72],[[74,[22,73]]]],[[906,72],[[74,[22,73]]]],[[906,72],[[74,[22,73]]]],[[908,72],[[74,[22,73]]]],[[909,72],[[74,[22,73]]]],[[912,72],[[74,[22,73]]]],[[913,72],[[74,[22,73]]]],[[910,72],[[74,[22,73]]]],[[911,72],[[74,[22,73]]]],[[914,72],[[74,[22,73]]]],[[914,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[73,914],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[62,[905]]]],[58,[[62,[906]]]],[58,905],[58,905],[58,906],[58,906],[58,905],[58,906],[-1,905,[[33,[],[[32,[905]]]]]],[-1,906,[[33,[],[[32,[906]]]]]],[120,[[62,[905]]]],[120,[[62,[906]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[909,-1],22,91],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[905,905],22],[[906,906],22],[[905,905],905],[[906,906],906],[[905,905],8],[[906,906],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[905],[906],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[905,8],[906,8],[905,8],[906,8],[905,[[679,[905]]]],[906,[[679,[906]]]],[905,[[680,[905]]]],[906,[[680,[906]]]],0,0,[[-1,896,915,908,909,916],[[74,[[917,[-1]],914]]],789],[69,907],[905,905],[906,906],0,[[907,907],[[62,[109]]]],0,[[905,905],22],[[906,906],22],0,[[905,905,8],22],[[906,906,8],22],0,[914,[[62,[683]]]],[[905,905],905],[[906,906],906],[[905,905],22],[[906,906],22],[[905,905],905],[[906,906],906],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[[905,905],22],[[906,906],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[905,905],905],[[906,906],906],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,[[[917,[-1]]],[[74,[913,914]]],789],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[918,918],[919,919],[920,920],[921,921],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],918],[[],921],[[],922],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[[918,918],8],[[919,919],8],[[920,920],8],[[921,921],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,[[918,72],[[74,[22,73]]]],[[919,72],[[74,[22,73]]]],[[920,72],[[74,[22,73]]]],[[920,72],[[74,[22,73]]]],[[921,72],[[74,[22,73]]]],[[923,72],[[74,[22,73]]]],[[923,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[73,923],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[918,-1],22,91],[[919,-1],22,91],[[921,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,921],[[924,[-1]]],789],[[919,919],[[62,[109]]]],0,0,0,[923,[[62,[683]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[919,120],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[924,[-1]],896,915],[[74,[922,923]]],789],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[925,925],[926,926],[927,927],[928,928],[929,929],[930,930],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],926],[[],927],[[],929],[[],930],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[[925,925],8],[[926,926],8],[[927,927],8],[[928,928],8],[[929,929],8],[[930,930],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,[[[931,[-1]]],-1,789],[[925,72],[[74,[22,73]]]],[[926,72],[[74,[22,73]]]],[[927,72],[[74,[22,73]]]],[[932,72],[[74,[22,73]]]],[[932,72],[[74,[22,73]]]],[[928,72],[[74,[22,73]]]],[[928,72],[[74,[22,73]]]],[[929,72],[[74,[22,73]]]],[[930,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[73,932],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[925,-1],22,91],[[926,-1],22,91],[[927,-1],22,91],[[929,-1],22,91],[[930,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,[[931,[-1]]],789],0,0,0,0,0,0,[932,[[62,[683]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[931,[-1]],896,915,929,930],[[74,[933,932]]],789],[[896,915,929,930],[[74,[[22,[51,933]],932]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[934,120],[935,120],[936,120],[937,120],[938,120],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[934,934],[935,935],[936,936],[937,937],[938,938],[939,939],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],934],[[],935],[[],936],[[],937],[[],938],[[],939],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[934,934],8],[[935,935],8],[[936,936],8],[[937,937],8],[[938,938],8],[[939,939],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[934,72],[[74,[22,73]]]],[[935,72],[[74,[22,73]]]],[[936,72],[[74,[22,73]]]],[[937,72],[[74,[22,73]]]],[[938,72],[[74,[22,73]]]],[[939,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[934,-1],22,91],[[935,-1],22,91],[[936,-1],22,91],[[937,-1],22,91],[[938,-1],22,91],[[939,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],940],[[],941],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[[940,940],940],[[941,941],941],[[940,940],22],[[941,941],22],[[940,940],940],[[941,941],941],[[940,940],22],[[941,941],22],[940,83],[940,83],[941,58],[941,58],[[940,940],940],[[941,941],941],[[940,940],22],[[941,941],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[942,942],[943,943],[944,944],[940,940],[941,941],[945,945],[946,946],[947,947],[948,948],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[942,942],109],[[-1,-2],109,[],[]],[940,940],[941,941],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[940,940],8],[[941,941],8],0,[[949,58],[[74,[22,943]]]],[[],945],[[],947],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[940,940],940],[[941,941],941],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[],940],[[],941],0,[[942,942],8],[[940,940],8],[[941,941],8],[[945,945],8],[[946,946],8],[[948,948],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[940,-1],22,[[33,[],[[32,[940]]]]]],[[941,-1],22,[[33,[],[[32,[941]]]]]],0,0,[[942,72],[[74,[22,73]]]],[[943,72],[[74,[22,73]]]],[[943,72],[[74,[22,73]]]],[[944,72],[[74,[22,73]]]],[[940,72],[[74,[22,73]]]],[[940,72],[[74,[22,73]]]],[[940,72],[[74,[22,73]]]],[[940,72],[[74,[22,73]]]],[[940,72],[[74,[22,73]]]],[[941,72],[[74,[22,73]]]],[[941,72],[[74,[22,73]]]],[[941,72],[[74,[22,73]]]],[[941,72],[[74,[22,73]]]],[[941,72],[[74,[22,73]]]],[[945,72],[[74,[22,73]]]],[[946,72],[[74,[22,73]]]],[[947,72],[[74,[22,73]]]],[[948,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[83,[[62,[940]]]],[58,[[62,[941]]]],[83,940],[83,940],[58,941],[58,941],[83,940],[58,941],[-1,940,[[33,[],[[32,[940]]]]]],[-1,941,[[33,[],[[32,[941]]]]]],[120,[[62,[940]]]],[120,[[62,[941]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[120,[[74,[942]]]],[58,[[62,[942]]]],[949,[[952,[942,[951,[950]]]]]],[[942,-1],22,91],[[940,-1],22,91],[[945,-1],22,91],[[948,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[940,940],22],[[941,941],22],[[940,940],940],[[941,941],941],[[940,940],8],[[941,941],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[940],[941],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[940,8],[941,8],[940,8],[941,8],[940,[[679,[940]]]],[941,[[679,[941]]]],[940,[[680,[940]]]],[941,[[680,[941]]]],0,[947,[[74,[949,943]]]],[940,940],[941,941],[[942,942],[[62,[109]]]],[[940,940],22],[[941,941],22],[[940,940,8],22],[[941,941,8],22],0,0,[[940,940],940],[[941,941],941],[[940,940],22],[[941,941],22],[[940,940],940],[[941,941],941],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[[940,940],22],[[941,941],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[940,940],940],[[941,941],941],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[949,896,915,[62,[948]],[62,[944]],[3,[58]]],[[74,[22,943]]]],[[896,915,947,[62,[948]]],[[74,[[3,[58]],943]]]],0,[896,22],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[953,[-1,-2]],-1,-2],[[62,[-2]]],[92,320],[]],[[[953,[-1,-2]],-1,-2],[[62,[-2]]],[92,320],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[953,[-1,-2]]],[],[]],[[],954],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[[953,[-1,-2]],72],[[74,[22,73]]],77,77],[[954,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[954,[845,[885]],[852,[851]]],848],[[954,[845,[885]],[843,[885]],955],[[74,[22,956]]]],[[954,[845,[885]]]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[954,[845,[885]],[843,[885]],955],[[74,[22,956]]]],[[[953,[-2,-3]],-1],[[62,[-3]]],[92,320,957],[[178,[-1]],92,320],[]],[[],954],[[[953,[-1,-2]]],22,[],[]],[[[953,[-1,-2]]],22,[],[]],[[954,[845,[885]],[852,[851]]],[[845,[851]]]],[954,22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[958,958],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[958,120],22],[[958,120,-1],22,[[145,[650]]]],[[958,120],51],[[958,120,-1],51,[[145,[650]]]],[[958,72],[[74,[22,73]]]],[[958,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[958,[[0,[903]]]],[[958,120],[[62,[856]]]],[958,120],[[],959],[[959,120],[[74,[896,958]]]],[120,[[74,[896,958]]]],[958,[[62,[683]]]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[960,120],51],[[960,[62,[51]],120],51],[[961,[845,[885]],850,844],[[74,[[845,[885]],962]]]],[[961,[845,[885]],850,844],[[74,[[845,[885]],962]]]],[[916,[845,[885]],[852,[851]],963],964],[965,22],[962,962],[964,964],[916,916],[899,899],[966,966],[967,967],[968,968],[969,969],[897,897],[956,956],[902,902],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[966,966],109],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[916,964],8],[[],970],[[],964],[[],916],[[],965],[[],960],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[846,22],[[964,964],8],[[916,916],8],[[899,899],8],[[966,966],8],[[967,967],8],[[968,968],8],[[969,969],8],[[971,971],8],[[897,897],8],[[956,956],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[970,[843,[885]]],[[62,[[22,[889,844]]]]]],[[[845,[851]],[98,[[845,[885]]]],[843,[885]],[852,[851]]],[[0,[[126,[],[[32,[[845,[885]]]]]]]]]],[[961,72],[[74,[22,73]]]],[[972,72],[[74,[22,73]]]],[[962,72],[[74,[22,73]]]],[[962,72],[[74,[22,73]]]],[[970,72],[[74,[22,73]]]],[[964,72],[[74,[22,73]]]],[[916,72],[[74,[22,73]]]],[[899,72],[[74,[22,73]]]],[[899,72],[[74,[22,73]]]],[[898,72],[[74,[22,73]]]],[[966,72],[[74,[22,73]]]],[[966,72],[[74,[22,73]]]],[[967,72],[[74,[22,73]]]],[[965,72],[[74,[22,73]]]],[[968,72],[[74,[22,73]]]],[[968,72],[[74,[22,73]]]],[[969,72],[[74,[22,73]]]],[[969,72],[[74,[22,73]]]],[[971,72],[[74,[22,73]]]],[[897,72],[[74,[22,73]]]],[[956,72],[[74,[22,73]]]],[[956,72],[[74,[22,73]]]],[[896,[843,[885]],972,970,846],961],[896,961],[[896,[843,[885]],972,970,846],961],[896,961],[[972,[845,[885]]],22],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[973,962],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[861,966],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[843,[885]]],972],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[83,966],0,0,[897,[[62,[[845,[851]]]]]],[[964,-1],22,91],[[916,-1],22,91],[[966,-1],22,91],[[967,-1],22,91],[[971,-1],22,91],0,0,0,[[965,[845,[851]]],967],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,[[897,[852,[851]]],848],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[966,58],8],[[972,[845,[885]]],8],[970,8],0,[[966,58]],[[966,966]],[[],972],[58,[[62,[966]]]],[[966,966],[[62,[109]]]],[[960,896,[98,[120]],[98,[120]],[98,[120]],[98,[120]],[499,[971,51,[951,[950]]]]],22],[[955,885,-1],[[74,[897,956]]],[[100,[[845,[885]]],[[19,[[74,[897,956]]]]]]]],[[966,58],58],0,[962,[[62,[683]]]],0,[[970,[843,[885]]],22],[961,902],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[967,58],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[[897,902],51],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[[961,885,844],[[74,[[845,[885]],962]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[965,902],[[74,[22,969]]]],[[896,[843,[875]],[98,[890]]],955],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[845,[885]],974,896,892,963],[[62,[898]]]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],0,[974,974],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[896,892,963,916],975],[[974,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,0,0,[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],976],[[],977],[[],978],[[],979],[[],980],[[],981],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[976,83],[976,83],[977,83],[977,83],[978,83],[978,83],[979,83],[979,83],[980,69],[980,69],[981,83],[981,83],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[870,[[74,[22,973]]]],[976,976],[982,982],[977,977],[983,983],[984,984],[985,985],[986,986],[973,973],[987,987],[988,988],[989,989],[990,990],[991,991],[992,992],[978,978],[993,993],[994,994],[979,979],[980,980],[981,981],[995,995],[996,996],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[976,976],[977,977],[978,978],[979,979],[980,980],[981,981],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[976,976],8],[[977,977],8],[[978,978],8],[[979,979],8],[[980,980],8],[[981,981],8],[[],979],[[],980],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[963,963],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[[],976],[[],977],[[],978],[[],979],[[],980],[[],981],[[976,976],8],[[977,977],8],[[978,978],8],[[979,979],8],[[980,980],8],[[981,981],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[963,56],[[976,-1],22,[[33,[],[[32,[976]]]]]],[[977,-1],22,[[33,[],[[32,[977]]]]]],[[978,-1],22,[[33,[],[[32,[978]]]]]],[[979,-1],22,[[33,[],[[32,[979]]]]]],[[980,-1],22,[[33,[],[[32,[980]]]]]],[[981,-1],22,[[33,[],[[32,[981]]]]]],[[976,72],[[74,[22,73]]]],[[976,72],[[74,[22,73]]]],[[976,72],[[74,[22,73]]]],[[976,72],[[74,[22,73]]]],[[976,72],[[74,[22,73]]]],[[982,72],[[74,[22,73]]]],[[977,72],[[74,[22,73]]]],[[977,72],[[74,[22,73]]]],[[977,72],[[74,[22,73]]]],[[977,72],[[74,[22,73]]]],[[977,72],[[74,[22,73]]]],[[983,72],[[74,[22,73]]]],[[963,72],[[74,[22,73]]]],[[984,72],[[74,[22,73]]]],[[984,72],[[74,[22,73]]]],[[985,72],[[74,[22,73]]]],[[985,72],[[74,[22,73]]]],[[986,72],[[74,[22,73]]]],[[986,72],[[74,[22,73]]]],[[973,72],[[74,[22,73]]]],[[973,72],[[74,[22,73]]]],[[987,72],[[74,[22,73]]]],[[987,72],[[74,[22,73]]]],[[988,72],[[74,[22,73]]]],[[988,72],[[74,[22,73]]]],[[989,72],[[74,[22,73]]]],[[989,72],[[74,[22,73]]]],[[990,72],[[74,[22,73]]]],[[990,72],[[74,[22,73]]]],[[991,72],[[74,[22,73]]]],[[991,72],[[74,[22,73]]]],[[992,72],[[74,[22,73]]]],[[992,72],[[74,[22,73]]]],[[978,72],[[74,[22,73]]]],[[978,72],[[74,[22,73]]]],[[978,72],[[74,[22,73]]]],[[978,72],[[74,[22,73]]]],[[978,72],[[74,[22,73]]]],[[993,72],[[74,[22,73]]]],[[993,72],[[74,[22,73]]]],[[994,72],[[74,[22,73]]]],[[994,72],[[74,[22,73]]]],[[979,72],[[74,[22,73]]]],[[979,72],[[74,[22,73]]]],[[979,72],[[74,[22,73]]]],[[979,72],[[74,[22,73]]]],[[979,72],[[74,[22,73]]]],[[980,72],[[74,[22,73]]]],[[980,72],[[74,[22,73]]]],[[980,72],[[74,[22,73]]]],[[980,72],[[74,[22,73]]]],[[980,72],[[74,[22,73]]]],[[981,72],[[74,[22,73]]]],[[981,72],[[74,[22,73]]]],[[981,72],[[74,[22,73]]]],[[981,72],[[74,[22,73]]]],[[981,72],[[74,[22,73]]]],[[915,72],[[74,[22,73]]]],[[997,72],[[74,[22,73]]]],[[995,72],[[74,[22,73]]]],[[995,72],[[74,[22,73]]]],[[996,72],[[74,[22,73]]]],[[996,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[899,985],[984,985],[956,985],[973,985],[-1,-1,[]],[973,986],[956,986],[-1,-1,[]],[998,986],[984,986],[998,973],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[999,989],[-1,-1,[]],[-1,-1,[]],[989,992],[-1,-1,[]],[991,992],[-1,-1,[]],[-1,-1,[]],[998,994],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[969,996],[853,996],[1000,996],[-1,-1,[]],[855,996],[1001,996],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[83,[[62,[976]]]],[83,[[62,[977]]]],[83,[[62,[978]]]],[83,[[62,[979]]]],[69,[[62,[980]]]],[83,[[62,[981]]]],[83,976],[83,976],[83,977],[83,977],[83,978],[83,978],[83,979],[83,979],[69,980],[69,980],[83,981],[83,981],[83,976],[83,977],[83,978],[83,979],[69,980],[83,981],[-1,976,[[33,[],[[32,[976]]]]]],[-1,977,[[33,[],[[32,[977]]]]]],[-1,978,[[33,[],[[32,[978]]]]]],[-1,979,[[33,[],[[32,[979]]]]]],[-1,980,[[33,[],[[32,[980]]]]]],[-1,981,[[33,[],[[32,[981]]]]]],[120,[[62,[976]]]],[120,[[62,[977]]]],[120,[[62,[978]]]],[120,[[62,[979]]]],[120,[[62,[980]]]],[120,[[62,[981]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[915,56],963],[963,56],[[963,[845,[885]]],983],[[963,[845,[874]]],977],[[915,[845,[885]]]],[[915,[845,[892]]]],[[915,[845,[851]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[976,976],8],[[977,977],8],[[978,978],8],[[979,979],8],[[980,980],8],[[981,981],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[976],[977],[978],[979],[980],[981],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[976,8],[977,8],[978,8],[979,8],[980,8],[981,8],[976,8],[977,8],[978,8],[979,8],[980,8],[981,8],[976,[[679,[976]]]],[977,[[679,[977]]]],[978,[[679,[978]]]],[979,[[679,[979]]]],[980,[[679,[980]]]],[981,[[679,[981]]]],[976,[[680,[976]]]],[977,[[680,[977]]]],[978,[[680,[978]]]],[979,[[680,[979]]]],[980,[[680,[980]]]],[981,[[680,[981]]]],0,[[979,980],997],0,[976,976],[977,977],[978,978],[979,979],[980,980],[981,981],0,[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],0,[997,22],0,[[976,976,8],22],[[977,977,8],22],[[978,978,8],22],[[979,979,8],22],[[980,980,8],22],[[981,981,8],22],[985,[[62,[683]]]],[986,[[62,[683]]]],[973,[[62,[683]]]],[987,[[62,[683]]]],[989,[[62,[683]]]],[990,[[62,[683]]]],[992,[[62,[683]]]],[994,[[62,[683]]]],[996,[[62,[683]]]],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[[976,976],22],[[977,977],22],[[978,978],22],[[979,979],22],[[980,980],22],[[981,981],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[976,976],976],[[977,977],977],[[978,978],978],[[979,979],979],[[980,980],980],[[981,981],981],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[997,896],[[74,[915,[842,[996]]]]]],[[997,870],[[74,[22,973]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],1002],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[[814,[-1]]],[[690,[[689,[[814,[688]]]]]]],641],[[[765,[-1]]],[[690,[[689,[[765,[688]]]]]]],641],[[[763,[-1]]],[[690,[[689,[[763,[688]]]]]]],641],[[[814,[-1]]],[[690,[[689,[[814,[688]]]]]]],641],[[[765,[-1]]],[[690,[[689,[[765,[688]]]]]]],641],[[[763,[-1]]],[[690,[[689,[[763,[688]]]]]]],641],0,[[1002,1002],1002],[[1002,1002],22],[[1002,1002],1002],[[1002,1002],22],[1002,58],[1002,58],[[1002,1002],1002],[[1002,1002],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[812,812],[[[1003,[-1]]],[[1003,[-1]]],48],[1004,1004],[1005,1005],[804,804],[806,806],[1006,1006],[1007,1007],[1008,1008],[808,808],[1009,1009],[1010,1010],[809,809],[1002,1002],[1011,1011],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[1002,1002],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1002,1002],8],[[],1011],0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[1002,1002],1002],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[[814,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[765,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[763,[-1]]],22,641],[[],1002],0,[[1002,1002],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[1002,-1],22,[[33,[],[[32,[1002]]]]]],[[812,72],[[74,[22,73]]]],[[[814,[-1]],72],[[74,[22,73]]],[77,641]],[[[1003,[958]],72],[[74,[22,73]]]],[[[1003,[[842,[996]]]],72],[[74,[22,73]]]],[[[1003,[-1]],72],[[74,[22,73]]],77],[[815,72],[[74,[22,73]]]],[[815,72],[[74,[22,73]]]],[[1004,72],[[74,[22,73]]]],[[1005,72],[[74,[22,73]]]],[[1005,72],[[74,[22,73]]]],[[804,72],[[74,[22,73]]]],[[806,72],[[74,[22,73]]]],[[806,72],[[74,[22,73]]]],[[[765,[-1]],72],[[74,[22,73]]],[77,641]],[[1006,72],[[74,[22,73]]]],[[1007,72],[[74,[22,73]]]],[[1008,72],[[74,[22,73]]]],[[808,72],[[74,[22,73]]]],[[1009,72],[[74,[22,73]]]],[[1009,72],[[74,[22,73]]]],[[1010,72],[[74,[22,73]]]],[[1010,72],[[74,[22,73]]]],[[809,72],[[74,[22,73]]]],[[809,72],[[74,[22,73]]]],[[1002,72],[[74,[22,73]]]],[[1002,72],[[74,[22,73]]]],[[1002,72],[[74,[22,73]]]],[[1002,72],[[74,[22,73]]]],[[1002,72],[[74,[22,73]]]],[[1011,72],[[74,[22,73]]]],[[[763,[-1]],72],[[74,[22,73]]],[77,641]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[1003,[958]]],815],[714,815],[712,815],[[[1003,[[842,[996]]]]],815],[-1,-1,[]],[-1,-1,[]],[702,1005],[694,1005],[-1,-1,[]],[714,806],[1005,806],[-1,-1,[]],[713,806],[1012,806],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[746,809],[1010,809],[713,809],[712,809],[714,809],[1005,809],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[62,[1002]]]],[58,1002],[58,1002],[58,1002],[-1,1002,[[33,[],[[32,[1002]]]]]],[120,[[62,[1002]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1002,-1],22,91],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,[[1002,1002],22],[[1002,1002],1002],[[1002,1002],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1002],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1002,8],[1002,8],[1002,[[679,[1002]]]],[1002,[[680,[1002]]]],[[[814,[-1]]],51,641],0,0,0,0,0,0,[[815,120],[[62,[856]]]],0,0,0,0,[1002,1002],0,[[1002,1002],22],[[1002,1002,8],22],0,[[[1003,[-1]]],[[62,[683]]],683],[815,[[62,[683]]]],[1005,[[62,[683]]]],[806,[[62,[683]]]],[809,[[62,[683]]]],0,0,0,0,0,0,[[1002,1002],1002],[[1002,1002],22],[[1002,1002],1002],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[[1002,1002],22],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1002,1002],1002],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[825,825],[822,822],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[[825,72],[[74,[22,73]]]],[[825,72],[[74,[22,73]]]],[[822,72],[[74,[22,73]]]],[[822,72],[[74,[22,73]]]],[[824,72],[[74,[22,73]]]],[-1,-1,[]],[714,825],[-1,-1,[]],[766,822],[714,822],[713,822],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[825,[[62,[683]]]],[822,[[62,[683]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[826,826],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],826],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],0,[[826,826],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[826,72],[[74,[22,73]]]],[[[1013,[-1,-2]],72],[[74,[22,73]]],[77,833],[77,[1014,[-1]]]],[[[1013,[-1,-2]],-1,-2],22,833,[[1014,[-1]]]],[[[1013,[-1,-2]],-1,120],22,833,[[1014,[-1]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[826,8],[[[1013,[-1,-2]],-1],51,833,[[1014,[-1]]]],0,0,0,0,[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[1013,[-1,-2]],-1,[1015,[-2,-1]]],[[62,[[96,[-2]]]]],833,[[1014,[-1]]]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[1014,[[690,[-1]]],833],[[[762,[-1]]],[[690,[[689,[[762,[688]]]]]]],641],[[[820,[-1]]],[[690,[[689,[[820,[688]]]]]]],641],[[[793,[-1]]],[[690,[[689,[[793,[688]]]]]]],641],[[[794,[-1]]],[[690,[[689,[[794,[688]]]]]]],641],[[[792,[-1]]],[[690,[[689,[[792,[688]]]]]]],641],[[[764,[-1]]],[[690,[[689,[[764,[688]]]]]]],641],[1014,[[690,[-1]]],833],[[[762,[-1]]],[[690,[[689,[[762,[688]]]]]]],641],[[[820,[-1]]],[[690,[[689,[[820,[688]]]]]]],641],[[[793,[-1]]],[[690,[[689,[[793,[688]]]]]]],641],[[[794,[-1]]],[[690,[[689,[[794,[688]]]]]]],641],[[[792,[-1]]],[[690,[[689,[[792,[688]]]]]]],641],[[[764,[-1]]],[[690,[[689,[[764,[688]]]]]]],641],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[793,[-1]]],1016,641],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[783,783],[802,802],[1017,1017],[1018,1018],[803,803],[827,827],[1019,1019],[828,828],[829,829],[810,810],[1020,1020],[811,811],[807,807],[800,800],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],827],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[[[690,[-1]]],22,833],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[[762,[-1]]],22,641],[56,22],[56,22],[[[1021,[-1]]],22,641],[[[820,[-1]]],22,641],[56,22],[56,22],[[[793,[-1]]],22,641],[56,22],[56,22],[[[1022,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[[[794,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[[[792,[-1]]],22,641],[56,22],[56,22],[56,22],[56,22],[56,22],[[[764,[-1]]],22,641],[56,22],[[827,827],8],[[810,810],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[[690,[-1]],72],[[74,[22,73]]],[77,833]],[[1023,72],[[74,[22,73]]]],[[1024,72],[[74,[22,73]]]],[[801,72],[[74,[22,73]]]],[[783,72],[[74,[22,73]]]],[[783,72],[[74,[22,73]]]],[[[762,[-1]],72],[[74,[22,73]]],[77,641]],[[802,72],[[74,[22,73]]]],[[802,72],[[74,[22,73]]]],[[[1021,[-1]],72],[[74,[22,73]]],[77,641]],[[[820,[-1]],72],[[74,[22,73]]],[77,641]],[[[1025,[-1]],72],[[74,[22,73]]],[77,641]],[[[793,[-1]],72],[[74,[22,73]]],[77,641]],[[[1022,[-1]],72],[[74,[22,73]]],[77,641]],[[1017,72],[[74,[22,73]]]],[[1018,72],[[74,[22,73]]]],[[1018,72],[[74,[22,73]]]],[[803,72],[[74,[22,73]]]],[[803,72],[[74,[22,73]]]],[[827,72],[[74,[22,73]]]],[[1019,72],[[74,[22,73]]]],[[1019,72],[[74,[22,73]]]],[[[794,[-1]],72],[[74,[22,73]]],[77,641]],[[828,72],[[74,[22,73]]]],[[828,72],[[74,[22,73]]]],[[829,72],[[74,[22,73]]]],[[829,72],[[74,[22,73]]]],[[810,72],[[74,[22,73]]]],[[[792,[-1]],72],[[74,[22,73]]],[77,641]],[[1020,72],[[74,[22,73]]]],[[811,72],[[74,[22,73]]]],[[811,72],[[74,[22,73]]]],[[807,72],[[74,[22,73]]]],[[807,72],[[74,[22,73]]]],[[[764,[-1]],72],[[74,[22,73]]],[77,641]],[[800,72],[[74,[22,73]]]],[[800,72],[[74,[22,73]]]],0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[716,783],[714,783],[-1,-1,[]],[-1,-1,[]],[714,802],[783,802],[-1,-1,[]],[713,802],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[713,803],[828,803],[1018,803],[714,803],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[714,811],[-1,-1,[]],[712,811],[712,807],[714,807],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[1026,1024],[[[95,[54]]],1024],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1014,1014],8],[[[96,[1014]]],8],[1014,51],[[[1021,[-1]]],77,641],[[[820,[-1]]],51,641],[[[1022,[-1]]],77,641],0,0,0,0,0,0,0,0,0,0,0,0,0,[[[96,[1014]]],56],0,0,0,[783,[[62,[683]]]],[802,[[62,[683]]]],[803,[[62,[683]]]],[811,[[62,[683]]]],[807,[[62,[683]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[[1015,[-2,-1]],72],[[74,[22,73]]],[77,833],[77,[1014,[-1]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[1015,[-2,-1]],-1],[[96,[-2]]],833,[[1014,[-1]]]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[526,526],[[74,[22,716]]]],[[1027,1028,[499,[873,684,[951,[950]]]],120,523,[499,[58,1029,[951,[950]]]],[62,[603]]],[[74,[[499,[58,1029,[951,[950]]]],1012]]]],[[514,1030],[[74,[22,1030]]]],[[527,527],[[74,[22,717]]]],[1030,1030],[1029,1029],[716,716],[717,717],[1031,1031],[1032,1032],[1033,1033],[1012,1012],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[1030,72],[[74,[22,73]]]],[[1030,72],[[74,[22,73]]]],[[1029,72],[[74,[22,73]]]],[[1029,72],[[74,[22,73]]]],[[1027,72],[[74,[22,73]]]],[[716,72],[[74,[22,73]]]],[[716,72],[[74,[22,73]]]],[[717,72],[[74,[22,73]]]],[[717,72],[[74,[22,73]]]],[[1031,72],[[74,[22,73]]]],[[1031,72],[[74,[22,73]]]],[[1032,72],[[74,[22,73]]]],[[1032,72],[[74,[22,73]]]],[[1033,72],[[74,[22,73]]]],[[1033,72],[[74,[22,73]]]],[[1012,72],[[74,[22,73]]]],[[1012,72],[[74,[22,73]]]],[[1027,120],[[74,[8,1012]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[896,915,546,520],1027],[546,1028],[1012,[[62,[683]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],0,[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[610,1029],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1034,[62,[247]]],[[74,[[62,[[1035,[-1]]]],1036]]],1037],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,0,0,[[],1038],[[],1039],[[],1040],[[],1041],[[],1042],[[],1043],[[],1044],[[],1045],[[],1046],[[],1047],[[],1048],0,0,[1049,58],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,[[1050,58],1050],0,0,[[1051,[1052,[-1]]],22,1037],[[1051,120],22],[[1051,[62,[120]]],[[74,[22,774]]]],[[1051,58],22],[[1051,[1053,[-1]]],22,1037],0,0,0,0,[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],[1038,58],[1038,58],[1039,58],[1039,58],[1040,58],[1040,58],[1041,83],[1041,83],[1042,58],[1042,58],[1043,83],[1043,83],[1044,83],[1044,83],[1045,83],[1045,83],[1046,69],[1046,69],[1047,69],[1047,69],[1048,83],[1048,83],[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,[[1051,58,-2],22,1037,[[33,[],[[32,[[1054,[-1]]]]]]]],0,0,[[1055,1050,1050],22],[[1056,1050],22],[[1051,[161,[90]]],22],0,0,[774,774],[1057,1057],[1058,1058],[1036,1036],[672,672],[1038,1038],[1039,1039],[1040,1040],[1041,1041],[1042,1042],[1043,1043],[1044,1044],[1045,1045],[1046,1046],[1047,1047],[1059,1059],[1060,1060],[1061,1061],[838,838],[1062,1062],[1063,1063],[1049,1049],[1064,1064],[1065,1065],[1066,1066],[[[1067,[-1]]],[[1067,[-1]]],[48,1037]],[[[1068,[-1]]],[[1068,[-1]]],1037],[[[1069,[-1]]],[[1069,[-1]]],1037],[1070,1070],[[[1071,[-1]]],[[1071,[-1]]],[48,1037]],[[[1072,[-1]]],[[1072,[-1]]],[48,1037]],[1073,1073],[[[1074,[-1]]],[[1074,[-1]]],1037],[[[1075,[-1]]],[[1075,[-1]]],[48,1037]],[1076,1076],[[[1077,[-1]]],[[1077,[-1]]],[48,1037]],[1078,1078],[[[1079,[-1]]],[[1079,[-1]]],48],[[[1080,[-1]]],[[1080,[-1]]],[48,1037]],[[[1081,[-1]]],[[1081,[-1]]],[48,1037]],[1082,1082],[1083,1083],[1050,1050],[1055,1055],[1056,1056],[[[1084,[-1]]],[[1084,[-1]]],1037],[[[1085,[-1]]],[[1085,[-1]]],1037],[[[1086,[-1]]],[[1086,[-1]]],[48,1037]],[[[1087,[-1]]],[[1087,[-1]]],1037],[[[1053,[-1]]],[[1053,[-1]]],[48,1037]],[[[1088,[-1]]],[[1088,[-1]]],1037],[[[1052,[-1]]],[[1052,[-1]]],[48,1037]],[1089,1089],[1090,1090],[1091,1091],[1092,1092],[[[1054,[-1]]],[[1054,[-1]]],[48,1037]],[[[1093,[-1]]],[[1093,[-1]]],[48,1037]],[[[1094,[-1]]],[[1094,[-1]]],[48,1037]],[[[1095,[-1]]],[[1095,[-1]]],[48,1037]],[[[1096,[-1]]],[[1096,[-1]]],[48,1037]],[[[1097,[-1]]],[[1097,[-1]]],[48,1037]],[[[1098,[-1]]],[[1098,[-1]]],[48,1037]],[1048,1048],[1099,1099],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,0,[1038,1038],[1039,1039],[1040,1040],[1041,1041],[1042,1042],[1043,1043],[1044,1044],[1045,1045],[1046,1046],[1047,1047],[1048,1048],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[1034,1078],[[74,[22,1036]]]],[[1038,1038],8],[[1039,1039],8],[[1040,1040],8],[[1041,1041],8],[[1042,1042],8],[[1043,1043],8],[[1044,1044],8],[[1045,1045],8],[[1046,1046],8],[[1047,1047],8],[[1048,1048],8],[1043,8],[1045,8],[[1051,-1],22,[[126,[],[[32,[1082]]]]]],[[1051,-1],22,[[126,[],[[32,[1056]]]]]],[1049,1050],[[1051,[161,[58]],90,684],22],[[1051,1047,-1],22,[[126,[],[[32,[1056]]]]]],[[1051,1047,-1],22,[[126,[],[[32,[1055]]]]]],0,0,0,0,[[1100,1089],[[74,[774]]]],[[1100,[1071,[-1]]],[[74,[774]]],1037],[[1100,1066],[[74,[774]]]],[[1100,1063],[[74,[774]]]],[[1100,[1072,[-1]]],[[74,[774]]],1037],[[1100,[1075,[-1]]],[[74,[1058]]],1037],[1100,[[74,[774]]]],[[1100,[1067,[-1]]],[[74,[774]]],1037],[[1100,[652,[[62,[120]]]]],[[74,[774]]]],[[1100,[1077,[-1]]],[[74,[1058]]],1037],[[1100,1065],[[74,[774]]]],[[1100,1101,1102],[[74,[1057]]]],[[1103,818,819],[[74,[672]]]],[[1100,1049],[[74,[774]]]],[[1100,1064],[[74,[774]]]],0,0,[[],1092],0,0,0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1100,22],[1103,22],[1100,22],[1100,22],0,[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],0,0,[1051,22],[1034,22],[[1051,[84,[58]]],22],[[1051,90],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[1051,58,58,58,58],22],[[1051,58,58,448,58,58],22],[[1051,90,58],22],[[1051,90,90,58],22],[[1051,90,58],22],[[1051,90,90,58],22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,0,0,0,[[],1038],[[],1039],[[],1040],[[],1041],[[],1042],[[],1043],[[],1044],[[],1045],[[],1046],[[],1047],[[],1048],0,[1051,22],[1051,22],[1051,[[74,[774]]]],0,0,[[1051,58],22],[1051,22],0,0,0,0,0,[1103,[[3,[[640,[-1]]]]],1037],[[774,774],8],[[1057,1057],8],[[1058,1058],8],[[1036,1036],8],[[1038,1038],8],[[1039,1039],8],[[1040,1040],8],[[1041,1041],8],[[1042,1042],8],[[1043,1043],8],[[1044,1044],8],[[1045,1045],8],[[1046,1046],8],[[1047,1047],8],[[1090,1090],8],[[1091,1091],8],[[1092,1092],8],[[1048,1048],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[1100,22],[[1038,-1],22,[[33,[],[[32,[1038]]]]]],[[1039,-1],22,[[33,[],[[32,[1039]]]]]],[[1040,-1],22,[[33,[],[[32,[1040]]]]]],[[1041,-1],22,[[33,[],[[32,[1041]]]]]],[[1042,-1],22,[[33,[],[[32,[1042]]]]]],[[1043,-1],22,[[33,[],[[32,[1043]]]]]],[[1044,-1],22,[[33,[],[[32,[1044]]]]]],[[1045,-1],22,[[33,[],[[32,[1045]]]]]],[[1046,-1],22,[[33,[],[[32,[1046]]]]]],[[1047,-1],22,[[33,[],[[32,[1047]]]]]],[[1048,-1],22,[[33,[],[[32,[1048]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,[[1100,-1],22,[[126,[],[[32,[[161,[90]]]]]]]],[[1104,72],[[74,[22,73]]]],[[774,72],[[74,[22,73]]]],[[774,72],[[74,[22,73]]]],[[1057,72],[[74,[22,73]]]],[[1057,72],[[74,[22,73]]]],[[1058,72],[[74,[22,73]]]],[[1058,72],[[74,[22,73]]]],[[1036,72],[[74,[22,73]]]],[[1036,72],[[74,[22,73]]]],[[672,72],[[74,[22,73]]]],[[672,72],[[74,[22,73]]]],[[1038,72],[[74,[22,73]]]],[[1038,72],[[74,[22,73]]]],[[1038,72],[[74,[22,73]]]],[[1038,72],[[74,[22,73]]]],[[1038,72],[[74,[22,73]]]],[[1039,72],[[74,[22,73]]]],[[1039,72],[[74,[22,73]]]],[[1039,72],[[74,[22,73]]]],[[1039,72],[[74,[22,73]]]],[[1039,72],[[74,[22,73]]]],[[1040,72],[[74,[22,73]]]],[[1040,72],[[74,[22,73]]]],[[1040,72],[[74,[22,73]]]],[[1040,72],[[74,[22,73]]]],[[1040,72],[[74,[22,73]]]],[[1041,72],[[74,[22,73]]]],[[1041,72],[[74,[22,73]]]],[[1041,72],[[74,[22,73]]]],[[1041,72],[[74,[22,73]]]],[[1041,72],[[74,[22,73]]]],[[1042,72],[[74,[22,73]]]],[[1042,72],[[74,[22,73]]]],[[1042,72],[[74,[22,73]]]],[[1042,72],[[74,[22,73]]]],[[1042,72],[[74,[22,73]]]],[[1043,72],[[74,[22,73]]]],[[1043,72],[[74,[22,73]]]],[[1043,72],[[74,[22,73]]]],[[1043,72],[[74,[22,73]]]],[[1043,72],[[74,[22,73]]]],[[1044,72],[[74,[22,73]]]],[[1044,72],[[74,[22,73]]]],[[1044,72],[[74,[22,73]]]],[[1044,72],[[74,[22,73]]]],[[1044,72],[[74,[22,73]]]],[[1045,72],[[74,[22,73]]]],[[1045,72],[[74,[22,73]]]],[[1045,72],[[74,[22,73]]]],[[1045,72],[[74,[22,73]]]],[[1045,72],[[74,[22,73]]]],[[1046,72],[[74,[22,73]]]],[[1046,72],[[74,[22,73]]]],[[1046,72],[[74,[22,73]]]],[[1046,72],[[74,[22,73]]]],[[1046,72],[[74,[22,73]]]],[[1047,72],[[74,[22,73]]]],[[1047,72],[[74,[22,73]]]],[[1047,72],[[74,[22,73]]]],[[1047,72],[[74,[22,73]]]],[[1047,72],[[74,[22,73]]]],[[1059,72],[[74,[22,73]]]],[[1060,72],[[74,[22,73]]]],[[1061,72],[[74,[22,73]]]],[[[640,[-1]],72],[[74,[22,73]]],[77,1037]],[[838,72],[[74,[22,73]]]],[[[1035,[-1]],72],[[74,[22,73]]],[77,1037]],[[[648,[-1]],72],[[74,[22,73]]],[77,1037]],[[1062,72],[[74,[22,73]]]],[[1063,72],[[74,[22,73]]]],[[1049,72],[[74,[22,73]]]],[[1064,72],[[74,[22,73]]]],[[1065,72],[[74,[22,73]]]],[[1066,72],[[74,[22,73]]]],[[[1067,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1068,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1069,[-1]],72],[[74,[22,73]]],[77,1037]],[[1070,72],[[74,[22,73]]]],[[[1071,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1072,[-1]],72],[[74,[22,73]]],[77,1037]],[[1073,72],[[74,[22,73]]]],[[[1074,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1075,[-1]],72],[[74,[22,73]]],[77,1037]],[[1076,72],[[74,[22,73]]]],[[[1077,[-1]],72],[[74,[22,73]]],[77,1037]],[[1078,72],[[74,[22,73]]]],[[[1079,[-1]],72],[[74,[22,73]]],77],[[[1080,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1081,[-1]],72],[[74,[22,73]]],[77,1037]],[[1082,72],[[74,[22,73]]]],[[1083,72],[[74,[22,73]]]],[[1050,72],[[74,[22,73]]]],[[1055,72],[[74,[22,73]]]],[[1056,72],[[74,[22,73]]]],[[[1084,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1085,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1086,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1087,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1053,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1088,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1052,[-1]],72],[[74,[22,73]]],[77,1037]],[[1089,72],[[74,[22,73]]]],[[1090,72],[[74,[22,73]]]],[[1091,72],[[74,[22,73]]]],[[1092,72],[[74,[22,73]]]],[[[1054,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1093,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1105,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1094,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1095,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1096,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1097,[-1]],72],[[74,[22,73]]],[77,1037]],[[[1098,[-1]],72],[[74,[22,73]]],[77,1037]],[[1048,72],[[74,[22,73]]]],[[1048,72],[[74,[22,73]]]],[[1048,72],[[74,[22,73]]]],[[1048,72],[[74,[22,73]]]],[[1048,72],[[74,[22,73]]]],[[1099,72],[[74,[22,73]]]],0,0,0,0,0,0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[1106,774],[1107,774],[-1,-1,[]],[1108,774],[1109,774],[774,1057],[-1,-1,[]],[774,1058],[-1,-1,[]],[774,1036],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[514,1041],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[62,[1038]]]],[58,[[62,[1039]]]],[58,[[62,[1040]]]],[83,[[62,[1041]]]],[58,[[62,[1042]]]],[83,[[62,[1043]]]],[83,[[62,[1044]]]],[83,[[62,[1045]]]],[69,[[62,[1046]]]],[69,[[62,[1047]]]],[83,[[62,[1048]]]],[58,1038],[58,1038],[58,1039],[58,1039],[58,1040],[58,1040],[83,1041],[83,1041],[58,1042],[58,1042],[83,1043],[83,1043],[83,1044],[83,1044],[83,1045],[83,1045],[69,1046],[69,1046],[69,1047],[69,1047],[83,1048],[83,1048],[58,1038],[58,1039],[58,1040],[83,1041],[58,1042],[83,1043],[83,1044],[83,1045],[69,1046],[69,1047],[83,1048],[-1,1038,[[33,[],[[32,[1038]]]]]],[-1,1039,[[33,[],[[32,[1039]]]]]],[-1,1040,[[33,[],[[32,[1040]]]]]],[-1,1041,[[33,[],[[32,[1041]]]]]],[-1,1042,[[33,[],[[32,[1042]]]]]],[-1,1043,[[33,[],[[32,[1043]]]]]],[-1,1044,[[33,[],[[32,[1044]]]]]],[-1,1045,[[33,[],[[32,[1045]]]]]],[-1,1046,[[33,[],[[32,[1046]]]]]],[-1,1047,[[33,[],[[32,[1047]]]]]],[-1,1048,[[33,[],[[32,[1048]]]]]],[120,[[62,[1038]]]],[120,[[62,[1039]]]],[120,[[62,[1040]]]],[120,[[62,[1041]]]],[120,[[62,[1042]]]],[120,[[62,[1043]]]],[120,[[62,[1044]]]],[120,[[62,[1045]]]],[120,[[62,[1046]]]],[120,[[62,[1047]]]],[120,[[62,[1048]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1100,[1093,[-1]]],1092,1037],[1100,90],[1110,[[3,[51]]]],[1100,[[74,[90,774]]]],[1111,613],[1112,30],0,0,0,[[1038,-1],22,91],[[1039,-1],22,91],[[1040,-1],22,91],[[1041,-1],22,91],[[1042,-1],22,91],[[1043,-1],22,91],[[1044,-1],22,91],[[1045,-1],22,91],[[1046,-1],22,91],[[1047,-1],22,91],[[1048,-1],22,91],0,0,0,0,[1059,[[74,[1103,672]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],[[1051,120],22],[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[[1038,1038],8],[[1039,1039],8],[[1040,1040],8],[[1041,1041],8],[[1042,1042],8],[[1043,1043],8],[[1044,1044],8],[[1045,1045],8],[[1046,1046],8],[[1047,1047],8],[[1048,1048],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1038],[1039],[1040],[1041],[1042],[1043],[1044],[1045],[1046],[1047],[1048],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1100,-1],22,[[126,[],[[32,[[161,[90]]]]]]]],[1038,8],[1039,8],[1040,8],[1041,8],[1042,8],[1043,8],[1044,8],[1045,8],[1046,8],[1047,8],[1048,8],0,[1049,8],[1038,8],[1039,8],[1040,8],[1041,8],[1042,8],[1043,8],[1044,8],[1045,8],[1046,8],[1047,8],[1048,8],[1041,8],[1038,[[679,[1038]]]],[1039,[[679,[1039]]]],[1040,[[679,[1040]]]],[1041,[[679,[1041]]]],[1042,[[679,[1042]]]],[1043,[[679,[1043]]]],[1044,[[679,[1044]]]],[1045,[[679,[1045]]]],[1046,[[679,[1046]]]],[1047,[[679,[1047]]]],[1048,[[679,[1048]]]],[1038,[[680,[1038]]]],[1039,[[680,[1039]]]],[1040,[[680,[1040]]]],[1041,[[680,[1041]]]],[1042,[[680,[1042]]]],[1043,[[680,[1043]]]],[1044,[[680,[1044]]]],[1045,[[680,[1045]]]],[1046,[[680,[1046]]]],[1047,[[680,[1047]]]],[1048,[[680,[1048]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1041,540],[[1100,[161,[90]]],[[74,[1062,774]]]],[[618,615],1050],[[1083,1050],1050],0,0,0,0,[[1050,1050],1050],0,0,0,0,0,0,0,0,0,0,0,[[514,540],1041],[1038,1038],[1039,1039],[1040,1040],[1041,1041],[1042,1042],[1043,1043],[1044,1044],[1045,1045],[1046,1046],[1047,1047],[1048,1048],0,0,0,0,0,0,[[1111,520,546],[[74,[[648,[-1]],774]]],1037],0,0,[[1051,1099],22],[1112,[[74,[22,1036]]]],0,0,0,0,0,0,0,0,0,0,0,[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],[[1051,-1],22,[[126,[],[[32,[]]]]]],[[1051,[161,[58]]],22],0,0,0,0,0,0,0,0,[[1038,1038,8],22],[[1039,1039,8],22],[[1040,1040,8],22],[[1041,1041,8],22],[[1042,1042,8],22],[[1043,1043,8],22],[[1044,1044,8],22],[[1045,1045,8],22],[[1046,1046,8],22],[[1047,1047,8],22],[[1048,1048,8],22],[[1051,58,[98,[58]]],22],[[1051,[84,[30]]],22],[1051,22],[[1051,[1068,[-1]],597],22,1037],[[1051,523,58,[98,[58]]],22],[1051,22],[[1051,[1079,[58]]],22],[[1051,58],22],[[1051,58,[1068,[-1]]],22,1037],[[1051,[1079,[30]],[161,[30]]],22],0,0,0,0,0,0,0,[1057,[[62,[683]]]],[1058,[[62,[683]]]],[1036,[[62,[683]]]],[672,[[62,[683]]]],0,0,0,0,0,0,[1100,8],0,0,[1100,22],0,[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],[[1112,98,[62,[[22,[90]]]]],[[74,[22,774]]]],0,[1111,[[62,[838]]]],[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],0,0,0,0,0,[[1111,514],1040],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,115,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[-1,51,[]],[[1038,1038],22],[[1039,1039],22],[[1040,1040],22],[[1041,1041],22],[[1042,1042],22],[[1043,1043],22],[[1044,1044],22],[[1045,1045],22],[[1046,1046],22],[[1047,1047],22],[[1048,1048],22],0,[[1051,-2],22,1037,[[126,[],[[32,[[1080,[-1]]]]]]]],[[1051,-2],22,1037,[[126,[],[[32,[[1081,[-1]]]]]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1034,22],[[1038,1038],1038],[[1039,1039],1039],[[1040,1040],1040],[[1041,1041],1041],[[1042,1042],1042],[[1043,1043],1043],[[1044,1044],1044],[[1045,1045],1045],[[1046,1046],1046],[[1047,1047],1047],[[1048,1048],1048],[1100,[[74,[22,774]]]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1100,90,58],[[74,[8,774]]]],0,[[1051,58],22],0,0,0,0,[859,523],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1113,[62,[247]]],[[74,[[62,[[1035,[688]]]],1036]]]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[1114,[1052,[688]]],22],[[1114,120],22],[[1114,[62,[120]]],[[74,[22,774]]]],[[1114,1115,58],22],[[1114,[1053,[688]]],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1114,58,-1],22,[[33,[],[[32,[[1054,[688]]]]]]]],[[1114,1115,[161,[90]]],22],[688,688],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1113,1113,1078],[[74,[22,1036]]]],[[1114,1115,1115,-1],22,[]],[[1114,1115,1115,-1],22,[]],[[1114,1115,[161,[58]],1115,90,684],22],[[1114,1115,1047,1115,-1],22,[]],[[1114,1115,1047,1115,-1],22,[]],[[1113,1089],[[74,[1115,774]]]],[[1113,[1071,[688]]],[[74,[1115,774]]]],[[1113,1066],[[74,[1115,774]]]],[[1113,1063],[[74,[1115,774]]]],[[1113,[1072,[688]]],[[74,[1114,774]]]],[[1113,[1075,[688]]],[[74,[1115,1058]]]],[1113,[[74,[1115,774]]]],[120,673],[[1113,[1067,[688]]],[[74,[1115,774]]]],[[1113,[652,[[62,[120]]]]],[[74,[1115,774]]]],[[1113,[1077,[688]]],[[74,[1115,1058]]]],[[1113,1065],[[74,[1115,774]]]],[[1113,1101,1102],[[74,[1115,1057]]]],[[1113,818,819],[[74,[1113,672]]]],[[1113,1049],[[74,[1115,774]]]],[[1113,1115,1064],[[74,[1115,774]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1114],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1115],22],[[1113,1113],22],[[1113,1115],22],[[1113,1115],22],[1114,22],[[1113,1115],22],[[1114,[84,[58]]],22],[[1114,1115,90],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1114,58,58,58,58],22],[[1114,58,58,448,58,58],22],[[1114,1115,90,58],22],[[1114,1115,90,1115,90,58],22],[[1114,1115,90,58],22],[[1114,1115,90,1115,90,58],22],[56,22],[56,22],[56,22],[56,22],[1114,22],[1114,22],[1114,[[74,[1115,774]]]],[[1114,1115,58],22],[1114,22],[1113,[[3,[[640,[688]]]]]],[[1113,1113],22],[[1113,1115,-1],22,[]],[[688,72],[[74,[22,73]]]],[[1114,72],[[74,[22,73]]]],[[1115,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1113,[1093,[688]]],1092],[[1113,1115],90],[[1113,1115],[[74,[90,774]]]],[1113,613],[798,[[62,[[686,[688]]]]]],[1113,30],[[[791,[-1]]],[[830,[688]]],796],[[],56],[1059,[[74,[1113,672]]]],[[],56],[[],56],[[],56],[[1114,120],22],[673,62],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1113,1115,-1],22,[]],[[1113,1115,[161,[90]]],[[74,[1062,774]]]],[[1113,520,546],[[74,[[648,[688]],774]]]],[[1114,1099],22],[[1113,1113,1115],[[74,[22,1036]]]],[[1114,-1],22,[]],[[1114,1115,[161,[58]]],22],[[1114,1115,58,1115,[98,[58]]],22],[[1114,[84,[30]]],22],[[1114,1115],22],[[1114,[1068,[688]],597],22],[[1114,1115,523,58,[98,[58]]],22],[[1114,1115],22],[[1114,[1079,[58]]],22],[[1114,58],22],[[1114,58,[1068,[688]]],22],[[1114,[1079,[30]],[161,[30]]],22],[1113,8],[1113,22],[[1113,[98,[1115]],[62,[[22,[1115,90]]]]],[[74,[22,774]]]],[[1113,1113],[[62,[838]]]],[[1113,514],1040],[-1,-2,[],[]],[[1114,-1],22,[[126,[],[[32,[[1080,[688]]]]]]]],[[1114,-1],22,[[126,[],[[32,[[1081,[688]]]]]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1113,1113],22],[[1113,1115],[[74,[22,774]]]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[1113,1115,90,58],[[74,[8,774]]]],[[1114,1115,58],22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[1116,1117],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[1118,[1052,[1119]]],22],[[1118,120],22],[[1118,[62,[120]]],[[74,[22,774]]]],[[1118,1120,58],22],[[1118,[1053,[1119]]],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1118,58,-1],22,[[33,[],[[32,[[1054,[1119]]]]]]]],[[1118,1121,[161,[90]]],22],[1119,1119],[1122,1122],[1121,1121],[1123,1123],[1124,1124],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1125,1117],[[1118,1121,1121,-1],22,[[126,[],[[32,[1082]]]]]],[[1118,1121,1126,-1],22,[[126,[],[[32,[1056]]]]]],[[1118,1120,[161,[58]],1121,90,684],22],0,[[1118,1126,1047,1121,-1],22,[[126,[],[[32,[1056]]]]]],[[1118,1126,1047,1126,-1],22,[[126,[],[[32,[1055]]]]]],[[1125,1089],[[74,[22,774]]]],[[1125,[1071,[1119]]],[[74,[1127,774]]]],[[1125,1066],[[74,[1128,774]]]],[[1125,1063],[[74,[1121,774]]]],[[1125,[1072,[1119]]],[[74,[1118,774]]]],[[1125,[1075,[1119]]],[[74,[1129,1058]]]],[1125,[[74,[1130,774]]]],[120,673],[[1125,[1067,[1119]]],[[74,[1131,774]]]],[[1125,[652,[[62,[120]]]]],[[74,[1120,774]]]],[[1125,[1077,[1119]]],[[74,[1132,1058]]]],[[1125,1065],[[74,[1133,774]]]],[[1125,1101,1102],[[74,[1134,1057]]]],[[1125,1049],[[74,[1126,774]]]],[[1125,1126,1064],[[74,[1124,774]]]],0,[[],1135],[514,1126],[56,-1,[]],[56,-1,[]],[1136],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[1125,22],22],[[1125,1127],22],[[1125,1128],22],[[1125,1121],22],[[1125,1118],22],[[1125,1129],22],[[1125,1130],22],[[1125,1131],22],[[1125,1120],22],[[1125,1132],22],[[1125,1133],22],[[1125,1134],22],[[1125,1126],22],[[1125,1124],22],[1118,22],[[1118,[84,[58]]],22],[[1118,1121,90],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1118,58,58,58,58],22],[[1118,58,58,448,58,58],22],[[1118,1121,90,58],22],[[1118,1121,90,1121,90,58],22],[[1118,1121,90,58],22],[[1118,1121,90,1121,90,58],22],[56,22],[56,22],[1136,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],0,[1117,[[62,[[1140,[[1139,[1137,1138]]]]]]]],[1117,[[62,[[22,[448,448]]]]]],[1118,22],[1118,22],[1118,[[74,[1135,774]]]],[[1118,1120,58],22],[1118,22],[[1125,1141],22],0,[[1125,1121,-1],22,[[126,[],[[32,[[161,[90]]]]]]]],[[1118,72],[[74,[22,73]]]],[[1119,72],[[74,[22,73]]]],[[1122,72],[[74,[22,73]]]],[[1121,72],[[74,[22,73]]]],[[1123,72],[[74,[22,73]]]],[[1126,72],[[74,[22,73]]]],[[1124,72],[[74,[22,73]]]],[[1133,72],[[74,[22,73]]]],[[1128,72],[[74,[22,73]]]],[[1131,72],[[74,[22,73]]]],[[1127,72],[[74,[22,73]]]],[[1134,72],[[74,[22,73]]]],[[1132,72],[[74,[22,73]]]],[[1129,72],[[74,[22,73]]]],[[1120,72],[[74,[22,73]]]],[[1130,72],[[74,[22,73]]]],[[1135,72],[[74,[22,73]]]],0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1125,[1093,[1119]]],1092],[[1125,22],90],[[1125,1130],[[74,[90,774]]]],[1116,613],[798,[[62,[[686,[1119]]]]]],[1141,30],[1117,[[1144,[1142,1143]]]],[[[791,[-1]]],[[830,[1119]]],796],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],0,[[1118,120],22],[673,62],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1125,1121,-1],22,[]],[1117,8],[1117,1136],[[1125,1121,[161,[90]]],[[74,[1062,774]]]],0,[-1,[[62,[[640,[1119]]]]],[[177,[120],[[19,[1145]]]]]],[[1116,520,546],[[74,[[648,[1119]],774]]]],[[1118,1099],22],[[1141,1146,1126],[[74,[22,1036]]]],[1117,1145],[1117,[[62,[1147]]]],[[1118,-1],22,[]],[[1118,1120,[161,[58]]],22],[[1118,1131,58,1127,[98,[58]]],22],[[1118,[84,[30]]],22],[[1118,1129],22],[[1118,[1068,[1119]],597],22],[[1118,1131,523,58,[98,[58]]],22],[[1118,1132],22],[[1118,[1079,[58]]],22],[[1118,58],22],[[1118,58,[1068,[1119]]],22],[[1118,[1079,[30]],[161,[30]]],22],[1125,8],[1125,22],[[1141,[98,[1135]],[62,[[22,[1130,90]]]]],[[74,[22,774]]]],[[1116,1146],[[62,[838]]]],[[1116,514],1040],[[1125,1148,1049,[62,[[95,[31]]]]],1126],[[1125,1148,1049,[62,[[95,[31]]]]],1126],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1118,-1],22,[[126,[],[[32,[[1080,[1119]]]]]]]],[[1118,-1],22,[[126,[],[[32,[[1081,[1119]]]]]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1125,1121],[[74,[22,774]]]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[1125,1130,90,58],[[74,[8,774]]]],[[1118,1120,58],22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1149,[62,[247]]],[[74,[[62,[[1035,[1150]]]],1036]]]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[],1151],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[[1152,[1052,[1150]]],22],[[1152,120],22],[[1152,[62,[120]]],[[74,[22,774]]]],[[1152,1153,58],22],[[1152,[1053,[1150]]],22],[[1151,1151],1151],[[1151,1151],22],[[1151,1151],1151],[[1151,1151],22],[1151,58],[1151,58],[[1151,1151],1151],[[1151,1151],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1154,1155],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1156,1157],[[1152,58,-1],22,[[33,[],[[32,[[1054,[1150]]]]]]]],[[1152,1157,[161,[90]]],22],[1150,1150],[1151,1151],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[1151,1151],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1149,1158,1078],[[74,[22,1036]]]],[[1151,1151],8],[[1152,1157,1157,-1],22,[[126,[],[[32,[1082]]]]]],[[1152,1157,1155,-1],22,[[126,[],[[32,[1056]]]]]],[[1152,1153,[161,[58]],1157,90,684],22],[[1152,1155,1047,1157,-1],22,[[126,[],[[32,[1056]]]]]],[[1152,1155,1047,1155,-1],22,[[126,[],[[32,[1055]]]]]],[[1158,1089],[[74,[1159,774]]]],[[1158,[1071,[1150]]],[[74,[1160,774]]]],[[1158,1066],[[74,[1161,774]]]],[[1158,1063],[[74,[1157,774]]]],[[1158,[1072,[1150]]],[[74,[1152,774]]]],[[1158,[1075,[1150]]],[[74,[1162,1058]]]],[1158,[[74,[1163,774]]]],[120,673],[[1158,[1067,[1150]]],[[74,[1164,774]]]],[[1158,[652,[[62,[120]]]]],[[74,[1153,774]]]],[[1158,[1077,[1150]]],[[74,[1165,1058]]]],[[1158,1065],[[74,[1166,774]]]],[[1158,1101,1102],[[74,[1167,1057]]]],[[1168,818,819],[[74,[1149,672]]]],[[1158,1049],[[74,[1155,774]]]],[[1158,1155,1064],[[74,[1169,774]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[1170,58,521],[[74,[[3,[1171]],672]]]],[[1158,1159],22],[[1158,1160],22],[[1158,1161],22],[[1158,1157],22],[[1158,1152],22],[[1158,1162],22],[[1158,1163],22],[[1158,1164],22],[[1158,1153],22],[[1158,1165],22],[[1158,1166],22],[[1158,1167],22],[[1168,1149],22],[[1158,1155],22],[[1158,1169],22],[[1172,1173,8,[98,[1171]],520,58,58],[[74,[[648,[1150]],774]]]],[[1151,1151],1151],[1152,22],[[1149,1154],22],[[1152,[84,[58]]],22],[[1152,1157,90],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1152,58,58,58,58],22],[[1152,58,58,448,58,58],22],[[1152,1157,90,58],22],[[1152,1157,90,1157,90,58],22],[[1152,1157,90,58],22],[[1152,1157,90,1157,90,58],22],[56,22],[1174,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[],1151],[1158,[[98,[1171]]]],[1152,22],[1152,22],[1152,[[74,[1175,774]]]],[[1152,1153,58],22],[1152,22],[1174,1170],[1168,[[3,[[640,[1150]]]]]],[[1151,1151],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[1158,1176],22],[[1168,1177],[[62,[[640,[1150]]]]]],[[1151,-1],22,[[33,[],[[32,[1151]]]]]],[1174,[[98,[1171]]]],[[1158,1157,-1],22,[[126,[],[[32,[[161,[90]]]]]]]],[[1152,72],[[74,[22,73]]]],[[1150,72],[[74,[22,73]]]],[[1178,72],[[74,[22,73]]]],[[1154,72],[[74,[22,73]]]],[[1151,72],[[74,[22,73]]]],[[1151,72],[[74,[22,73]]]],[[1151,72],[[74,[22,73]]]],[[1151,72],[[74,[22,73]]]],[[1151,72],[[74,[22,73]]]],[[1157,72],[[74,[22,73]]]],[[1159,72],[[74,[22,73]]]],[[1155,72],[[74,[22,73]]]],[[1169,72],[[74,[22,73]]]],[[1166,72],[[74,[22,73]]]],[[1161,72],[[74,[22,73]]]],[[1164,72],[[74,[22,73]]]],[[1160,72],[[74,[22,73]]]],[[1175,72],[[74,[22,73]]]],[[1167,72],[[74,[22,73]]]],[[1165,72],[[74,[22,73]]]],[[1162,72],[[74,[22,73]]]],[[1153,72],[[74,[22,73]]]],[[1163,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[58,[[62,[1151]]]],[58,1151],[58,1151],[58,1151],[-1,1151,[[33,[],[[32,[1151]]]]]],[120,[[62,[1151]]]],[[1170,1179,58,58,[62,[1180]],[3,[1171]],521,8,[62,[[95,[31]]]]],[[74,[1168,672]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1158,[1093,[1150]]],1092],[[1158,1159],90],[[1158,1163],[[74,[90,774]]]],[1172,613],[798,[[62,[[686,[1150]]]]]],[1176,30],[[1151,-1],22,91],[[[791,[-1]]],[[830,[1150]]],796],[[],56],[[],56],[[],56],[1059,[[74,[1168,672]]]],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[1151,1151],22],[[1152,120],22],[1174,58],[673,62],[[1151,1151],1151],[[1151,1151],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1151],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1158,1157,-1],22,[[126,[],[[32,[[161,[90]]]]]]]],[1151,8],[1151,8],[1151,[[679,[1151]]]],[1151,[[680,[1151]]]],[[1158,1157,[161,[90]]],[[74,[1062,774]]]],[1151,1151],[[1172,520,546],[[74,[[648,[1150]],774]]]],[1172,1181],[[1172,[98,[1171]],520],1182],[[1152,1099],22],[[1176,1149,1154],[[74,[22,1036]]]],[1158,58],[1158,58],[1158,1173],[1155,1183],[1174,1179],[1172,1177],[1158,1177],[1158,1184],[[1151,1151],22],[[1172,520],[[3,[1171]]]],[[1152,-1],22,[[126,[],[[32,[1175]]]]]],[[1152,1153,[161,[58]]],22],[[1151,1151,8],22],[[1152,1164,58,1160,[98,[58]]],22],[[1152,[84,[30]]],22],[[1152,1162],22],[[1152,[1068,[1150]],597],22],[[1152,1164,523,58,[98,[58]]],22],[[1152,1165],22],[[1152,[1079,[58]]],22],[[1152,58],22],[[1152,58,[1068,[1150]]],22],[[1152,[1079,[30]],[161,[30]]],22],[1168,1174],[1172,1174],[1158,1174],[1158,8],[1158,22],[[1151,1151],1151],[[1151,1151],22],[[1176,[98,[1175]],[62,[[22,[1163,90]]]]],[[74,[22,774]]]],[[1172,1149],[[62,[838]]]],[[1151,1151],1151],[[1172,514],1040],[[1183,1049,[62,[[95,[31]]]]],1155],[-1,-2,[],[]],[-1,-2,[],[]],[[1151,1151],22],[[1152,-1],22,[[126,[],[[32,[[1080,[1150]]]]]]]],[[1152,-1],22,[[126,[],[[32,[[1081,[1150]]]]]]]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1149,1158],22],[[1151,1151],1151],[[1158,1157],[[74,[22,774]]]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[1158,1163,90,58],[[74,[8,774]]]],[[1152,1153,58],22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[1185,818],[1186,819],[1185,818],[1186,819],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1185,818],[-1,-2,[],[]],[-1,-2,[],[]],[1186,819],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[818,1185],[819,1186],[1187,1187],[1188,1188],[1189,1189],[1190,1190],[1185,1185],[1186,1186],[1191,1191],[1192,1192],[1193,1193],[1194,1194],[1195,1195],[1196,1196],[1197,1197],[1198,1198],[1199,1199],[1200,1200],[1201,1201],[1202,1202],[1203,1203],[1204,1204],[1205,1205],[1206,1206],[1207,1207],[1208,1208],[1209,1209],[1210,1210],[1211,1211],[1212,1212],[1213,1213],[819,819],[818,818],[674,674],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],0,0,[675,[[74,[1185,674]]]],[1185,[[74,[1185,674]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[1187,1187],8],[[1188,1188],8],[[1189,1189],8],[[1190,1190],8],[[1185,1185],8],[[1186,1186],8],[[1191,1191],8],[[1192,1192],8],[[1193,1193],8],[[1194,1194],8],[[1195,1195],8],[[1196,1196],8],[[1197,1197],8],[[1198,1198],8],[[1199,1199],8],[[1200,1200],8],[[1201,1201],8],[[1202,1202],8],[[1203,1203],8],[[1204,1204],8],[[1205,1205],8],[[1206,1206],8],[[1207,1207],8],[[1208,1208],8],[[1209,1209],8],[[1210,1210],8],[[1211,1211],8],[[1212,1212],8],[[1213,1213],8],[[819,819],8],[[818,818],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,[[1187,72],[[74,[22,73]]]],[[1188,72],[[74,[22,73]]]],[[1189,72],[[74,[22,73]]]],[[1190,72],[[74,[22,73]]]],[[1185,72],[[74,[22,73]]]],[[1186,72],[[74,[22,73]]]],[[1191,72],[[74,[22,73]]]],[[1192,72],[[74,[22,73]]]],[[1193,72],[[74,[22,73]]]],[[1194,72],[[74,[22,73]]]],[[1195,72],[[74,[22,73]]]],[[1196,72],[[74,[22,73]]]],[[1197,72],[[74,[22,73]]]],[[1198,72],[[74,[22,73]]]],[[1199,72],[[74,[22,73]]]],[[1200,72],[[74,[22,73]]]],[[1201,72],[[74,[22,73]]]],[[1202,72],[[74,[22,73]]]],[[1203,72],[[74,[22,73]]]],[[1204,72],[[74,[22,73]]]],[[1205,72],[[74,[22,73]]]],[[1206,72],[[74,[22,73]]]],[[1207,72],[[74,[22,73]]]],[[1208,72],[[74,[22,73]]]],[[1209,72],[[74,[22,73]]]],[[1210,72],[[74,[22,73]]]],[[1211,72],[[74,[22,73]]]],[[1212,72],[[74,[22,73]]]],[[1213,72],[[74,[22,73]]]],[[819,72],[[74,[22,73]]]],[[818,72],[[74,[22,73]]]],[[674,72],[[74,[22,73]]]],[[674,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[1192,819],[1202,819],[1213,819],[1210,819],[1186,819],[1208,819],[1188,819],[1194,819],[1209,819],[1204,819],[1198,819],[1200,819],[-1,-1,[]],[1196,819],[1212,819],[1190,819],[1206,819],[1211,818],[1189,818],[1187,818],[1191,818],[1205,818],[1203,818],[1197,818],[1195,818],[-1,-1,[]],[1193,818],[1201,818],[1185,818],[1199,818],[1207,818],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[1187,-1],22,91],[[1188,-1],22,91],[[1189,-1],22,91],[[1190,-1],22,91],[[1185,-1],22,91],[[1186,-1],22,91],[[1191,-1],22,91],[[1192,-1],22,91],[[1193,-1],22,91],[[1194,-1],22,91],[[1195,-1],22,91],[[1196,-1],22,91],[[1197,-1],22,91],[[1198,-1],22,91],[[1199,-1],22,91],[[1200,-1],22,91],[[1201,-1],22,91],[[1202,-1],22,91],[[1203,-1],22,91],[[1204,-1],22,91],[[1205,-1],22,91],[[1206,-1],22,91],[[1207,-1],22,91],[[1208,-1],22,91],[[1209,-1],22,91],[[1210,-1],22,91],[[1211,-1],22,91],[[1212,-1],22,91],[[1213,-1],22,91],[[819,-1],22,91],[[818,-1],22,91],0,0,0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],1187],[[[1214,[1145]]],1188],[[],1189],[[[1214,[1145]]],1190],[[],1191],[[[1214,[1145]]],1192],[[],1193],[[[1214,[1145]]],1194],[[],1195],[[[1214,[1145]]],1196],[[[62,[[1214,[1145]]]],448],1197],[90,1198],[[[62,[[1214,[1145]]]],448],1199],[1148,1200],[[[1214,[1145]]],1201],[[[1214,[1145]]],1202],[448,1203],[58,1204],[[[1214,[1145]]],1205],[[[1214,[1145]]],1206],[[],1207],[58,1208],[[[1214,[1145]]],1209],[[[1214,[1145]]],1210],[[],1211],[1215,1212],[[[1214,[1145]]],1213],0,0,0,0,[1216,[[74,[818,674]]]],[-1,[[74,[818,674]]],[]],[1217,[[74,[819,674]]]],[-1,[[74,[819,674]]],[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,[676,[[74,[1186,674]]]],[1186,[[74,[1186,674]]]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-1],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[1218,[[98,[83]]]],[1219,[[98,[83]]]],[1220,[[98,[83]]]],[[],[[62,[519]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[645,645],[661,661],[1218,1218],[1219,1219],[1220,1220],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[1221,645],529],[[1221,516,[660,[[62,[120]],[98,[514]]]],661,[98,[83]]],535],[[],661],[[],1218],[[],1219],[[],1220],[56,-1,[]],[1222,[[98,[83]]]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1223,[161,[58]],[161,[58]]],22],[[1223,[161,[58]],448,[161,[58]]],22],[[1223,529,90],22],[[1223,529,90],22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[],[[62,[636]]]],[[645,645],8],[[661,661],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[1224,22],0,0,0,0,[[1224,72],[[74,[22,73]]]],[[645,72],[[74,[22,73]]]],[[661,72],[[74,[22,73]]]],[[1218,72],[[74,[22,73]]]],[[1219,72],[[74,[22,73]]]],[[1220,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[62,[637]]]],[[645,-1],22,91],[[661,-1],22,91],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[533,[62,[532]]],[[62,[534]]]],[[533,[62,[532]]],[[62,[534]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[98,[83]]],[[99,[[98,[58]]]]]],[90,1224],[120,519],[[],[[62,[549]]]],[[515,516,570,-1],22,[[54,[[74,[1222,607]]]],107]],[1224,22],[[1223,58,642,[98,[58]]],22],[[1223,570,597],22],[[1223,654],22],[[1223,523,58,[98,[83]]],22],[[1223,58,570],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,[[1224,518,529,90,684,515],538],0,0,0,0,0,0,0,0,0,0,0,0,0,[[[287,[],[[190,[-1]]]],-1],7,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1225,1225],[1226,1226],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[[],1226],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[287,[],[[190,[-1]]]],-1],7,55],[[-1,123,131,1226,-2,[319,[-2]],-3],22,127,[[68,[87]],104],287],[56,22],[56,22],[[1226,1226],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[1225,72],[[74,[22,73]]]],[[1226,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[287,[],[[190,[-1]]]],-1],7,55],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[123,131,1226],134],[[],1226],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[38,123,131,[122,[-1]],1226,-2,[62,[-2]],[319,[-2]],-2,[62,[-2]],100,[62,[-1]]],136,48,[104,[68,[87]],300]],0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[283,[],[[190,[-1]]]],-1],24,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[24,24],[59,59],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[59,153],[[],24],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[[59,59],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[24,72],[[74,[22,73]]]],[[59,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,59,[[68,[[99,[[98,[83]]]]]]]],[-1,59,[[68,[311]]]],[-1,-2,[],[]],[-1,-2,[],[]],[[59,-1],22,91],[[[283,[],[[190,[-1]]]],-1],24,55],[59,90],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[[175,[],[[190,[-1]]]],-1],29,[55,48]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[185,185],[171,171],[29,29],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],185],[[],171],[[],[[191,[-1]]],[55,164]],[[],29],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,130,123,191,29,21],22,168],[56,22],[56,22],[56,22],[56,22],[[185,185],8],[[171,171],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[185,72],[[74,[22,73]]]],[[171,72],[[74,[22,73]]]],[[[191,[-1]],72],[[74,[22,73]]],[77,164]],[[29,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[47,171],[30,171],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[185,-1],22,91],[[171,-1],22,91],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[191,-1,133,45,45,120,171,[62,[47]],62,81,80,185],132,168],[[171,47],47],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[302,[],[[190,[-1]]]],-1],6,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[6,6],[170,170],[1227,1227],[1228,1228],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[321,[-1]]],[[22,[56,56]]],168],[[],[[321,[-1]]],168],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[1228,172],[[[302,[],[[190,[-1]]]],-1],6,55],[[[302,[],[[190,[-1]]]],-1],43,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[[170,170],8],[[1227,1227],8],[[1228,1228],8],[[6,72],[[74,[22,73]]]],[[[321,[-1]],72],[[74,[22,73]]],168],[[170,72],[[74,[22,73]]]],[[1227,72],[[74,[22,73]]]],[[1228,72],[[74,[22,73]]]],[[[302,[],[[190,[-1]]]],-1],6,55],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[302,[],[[190,[-1]]]],-1],6,55],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[170,8],[[[321,[-1]],56],[[62,[[0,[[1230,[],[[1229,[120]]]]]]]]],168],[[[321,[-1]]],56,168],[[[321,[-1]]],[[0,[[126,[],[[32,[[0,[[1230,[],[[1229,[120]]]]]]]]]]]]],168],[[],[[321,[-1]]],168],[[[321,[-1]],170],22,168],[[[302,[],[[190,[-1]]]],-1],43,55],[[[321,[-1]]],[[62,[51]]],168],[[[302,[],[[190,[-1]]]],-1],43,55],[[[321,[-1]]],51,168],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[[302,[],[[190,[-1]]]],-1],43,55],[1228,1228],[120,[[321,[-1]]],168],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[274,[],[[190,[-1]]]],-1],5,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[5,5],[303,303],[1231,1231],[[[314,[-1]]],[[314,[-1]]],48],[1232,1232],[183,183],[[[1233,[-1]]],[[1233,[-1]]],[48,164]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[1233,[-1]]],1231,164],[[],1231],[[],[[1233,[-1]]],[55,164]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[[[274,[],[[190,[-1]]]],-1],5,55],[[[274,[],[[190,[-1]]]],-1],43,55],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2,123,131,1233,303,8,8,[62,[314]],21],22,168,274],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[183,183],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[5,72],[[74,[22,73]]]],[[303,72],[[74,[22,73]]]],[[303,72],[[74,[22,73]]]],[[1231,72],[[74,[22,73]]]],[[[314,[-1]],72],[[74,[22,73]]],77],[[1232,72],[[74,[22,73]]]],[[183,72],[[74,[22,73]]]],[[[1233,[-1]],72],[[74,[22,73]]],[77,164]],[183,[[1,[-1]]],[]],[[[1233,[-1]]],22,164],[[[1233,[-1]]],22,164],[[[274,[],[[190,[-1]]]],-1],5,55],[[],[[1233,[-1]]],164],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[183,-1],22,91],[[[274,[],[[190,[-1]]]],-1],5,55],0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[303,56,444],22],[[303,56,303],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[303,8],[[[1233,[-1]]],8,164],[[[1233,[-1]]],8,164],[[-1,133,45,46,[62,[47]],62,171,[62,[314]],1233,303,120,8],132,168],[303,56],[[123,131,8],134],[[183,56],[[1,[-1]]],[]],[[[1233,[-1]],56],22,164],[[[1233,[-1]],56],22,164],[183,[[1,[-1]]],[]],[[[1233,[-1]]],22,164],[[[1233,[-1]]],22,164],[183,[[1,[-1]]],[]],[[[1233,[-1]]],22,164],[[[1233,[-1]]],22,164],[120,303],[-1,183,[[68,[[99,[120]]]]]],[[],[[1233,[-1]]],164],[[303,56],56],[[[274,[],[[190,[-1]]]],-1],43,55],[[303,56],56],[[303,56],22],[[303,56,56],22],[303,303],[[303,56,56],303],[183,[[1,[-1]]],[]],[[[1233,[-1]]],22,164],[[[1233,[-1]]],22,164],[[1231,303],[[62,[[22,[56,56]]]]]],[[[274,[],[[190,[-1]]]],-1],43,55],0,0,0,[[1231,303],1234],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[1233,[-1]]],22,164],[[[1233,[-1]]],22,164],[[],183],[[303,56],303],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[38,123,131,-1,135,[122,[-2]],303,[62,[47]],171,62,8,[62,[100]],[62,[100]],[62,[-2]],-3],136,168,48,[[54,[],[[19,[1233]]]]]],[[[274,[],[[190,[-1]]]],-1],43,55],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[1234,1234],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[1234,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[305,[],[[190,[-1]]]],-1,8],9,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[9,9],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[9,72],[[74,[22,73]]]],0,0,[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[305,[],[[190,[-1]]]],-1,8],9,55],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[322,322],[[-1,-2],22,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[322,322],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[322,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,[[[287,[],[[190,[-1]]]],-1],7,55],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[7,7],[1235,1235],[1236,1236],[1237,1237],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],1237],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[287,[],[[190,[-1]]]],-1],7,55],[[-1,123,131,1237,-2,[319,[-2]],-3],22,127,[[68,[87]],104],287],[56,22],[56,22],[56,22],[56,22],[[1237,1237],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[7,72],[[74,[22,73]]]],[[1235,72],[[74,[22,73]]]],[[1236,72],[[74,[22,73]]]],[[1237,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[287,[],[[190,[-1]]]],-1],7,55],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[123,131,1237],134],[[],1237],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[[38,123,131,[122,[-1]],1237,-2,[62,[-2]],[319,[-2]],-2,[62,[-2]],100,[62,[-1]]],136,48,[104,[68,[87]],300]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[-1,31,[]],[1238,[[98,[83]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[218,1239],[[1,[-1]]],[]],[[218,1240],[[1,[-1]]],[]],[[218,1241],[[1,[-1]]],[]],[1238,1238],[1239,1239],[1242,1242],[1243,1243],[218,218],[1240,1240],[1241,1241],[1244,1244],[138,138],[1245,1245],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[[-1,-2],22,[],[]],[218,[[1,[-1]]],[]],[[218,218],109],[[138,138],109],[[-1,-2],109,[],[]],[[-1,-2],109,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[1238,[21,[58]]],[[74,[1238,1246]]]],0,[[],1242],[[],1240],[[],1244],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[218,[[1,[-1]]],[]],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[56,22],[[1243,1243],8],[[218,218],8],[[1240,1240],8],[[1241,1241],8],[[1244,1244],8],[[138,138],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,[[218,-2],[[1,[-1]]],[],[[54,[90],[[19,[-1]]]]]],[[218,-2],[[1,[-1]]],[],[[54,[8],[[19,[-1]]]]]],[[218,-2],[[1,[-1]]],[],[[54,[[62,[8]]],[[19,[-1]]]]]],[[218,-2],[[1,[-1]]],[],[[54,[1241],[[19,[-1]]]]]],[[218,-2],[[1,[-1]]],[],[[54,[50],[[19,[-1]]]]]],[[[1247,[-1]],72],[[74,[22,73]]],[]],[[1238,72],[[74,[22,73]]]],[[1239,72],[[74,[22,73]]]],[[1242,72],[[74,[22,73]]]],[[1243,72],[[74,[22,73]]]],[[218,72],[[74,[22,73]]]],[[1240,72],[[74,[22,73]]]],[[1241,72],[[74,[22,73]]]],[[1244,72],[[74,[22,73]]]],[[138,72],[[74,[22,73]]]],[[1245,72],[[74,[22,73]]]],[[],[[34,[248]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[218,[[1,[-1]]],[]],[[218,-1],22,91],0,0,[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1239,[[22,[[3,[83]],[50,[58]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[1247,[-1]],-3],[[1247,[-2]]],[],[],[[100,[-1],[[19,[-2]]]],101,102]],0,[[218,8],[[1,[-1]]],[]],0,[[218,8],[[1,[-1]]],[]],[[218,17],[[1,[-1]]],[]],[[[3,[83]],[50,[58]]],1238],[[218,218],[[62,[109]]]],[[138,138],[[62,[109]]]],0,0,[[218,[62,[1245]]],[[1,[-1]]],[]],0,[[218,50],[[1,[-1]]],[]],0,[[218,-2],[[1,[-1]]],[],[[54,[1238],[[19,[-1]]]],107]],0,0,0,[1242,[[22,[218,[1,[-1]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[218,[[1,[-1]]],[]],[218,[[1,[-1]]],[]],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],218],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[1248,72],76],[[1248,72],76],[1249,1248],[1250,1248],[108,1248],[-1,-1,[]],[-1,-1,[]],[-1,[[74,[1239,1248]]],[[145,[650]]]],[[[98,[83]],[62,[1251]]],[[74,[1239,1248]]]],[[[3,[83]],58,58],[[74,[1239,1249]]]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1248,[[62,[683]]]],[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[1246,72],[[74,[22,73]]]],[[1246,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,115,[]],[-1,51,[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[15,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,31,[]],[-1,31,[]],[-1,-2,[],[]],[-1,-2,[],[]],[1252,1252],[[-1,-2],22,[],[]],[-1,-2,[],[]],0,[[],1252],[56,-1,[]],[56,-1,[]],[-1,-2,[],[]],[56,22],[[1252,1252],8],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,[[1252,72],[[74,[22,73]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,[[],56],[-1,-2,[],[]],[-1,-2,[],[]],[[[95,[-1]]],[[95,[31]]],[]],[[[96,[-1]]],[[96,[31]]],[]],[[[97,[-1]]],[[97,[31]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,[-1,-2,[],[]],0,[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2]]],[],[]],[-1,[[74,[-2,[116,[-2]]]]],[],[]],[-1,117,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[62,[-2]]],[],[]],0],"c":[17731,45732,45733,46859,46861],"p":[[5,"Command",0],[6,"Action",49509],[5,"Vec",49510],[6,"Theme",0],[5,"Appearance",48082],[5,"Appearance",47846],[5,"Appearance",48662],[1,"bool"],[5,"Appearance",48569],[5,"Appearance",15190],[5,"Scrollbar",15718],[5,"Appearance",15584],[5,"Appearance",7100],[5,"Appearance",13767],[10,"TransformMatrix",49511],[5,"Radians",0],[5,"Point",0],[5,"Vector",0],[17,"Output"],[10,"Add",49512],[5,"Rectangle",0],[1,"tuple"],[5,"Appearance",13897],[5,"Appearance",47586],[5,"Appearance",2915],[5,"Appearance",15631],[5,"Appearance",14235],[5,"Appearance",15365],[5,"Appearance",47676],[1,"f32"],[10,"Any",49513],[17,"Item"],[10,"IntoIterator",49514],[5,"Subscription",0],[6,"Renderer",0],[6,"Alignment",0],[5,"Border",0],[6,"Event",0],[5,"Font",0],[6,"Gradient",0],[5,"Degrees",0],[6,"Background",0],[5,"Color",0],[6,"ContentFit",0],[6,"Length",0],[5,"Padding",0],[5,"Pixels",0],[10,"Clone",49515],[5,"Shadow",0],[5,"Size",0],[5,"String",49516],[5,"Palette",4418],[5,"Extended",5136],[10,"FnOnce",49517],[10,"Default",49518],[1,"usize"],[5,"Handle",13992],[1,"u32"],[5,"Handle",47586],[10,"Float",49519],[10,"Num",49520],[6,"Option",49521],[6,"FilterMethod",13992],[6,"Mesh",49522],[10,"Primitive",16164],[10,"Executor",0],[10,"PartialEq",49523],[10,"Into",49524],[1,"u16"],[5,"Quad",1868],[5,"Text",1199],[5,"Formatter",49525],[5,"Error",49525],[6,"Result",49526],[6,"Error",0],[8,"Result",49525],[10,"Debug",49525],[10,"Display",49525],[6,"Error",49527],[6,"Vertical",2821],[6,"Horizontal",2821],[5,"Linear",3369],[1,"u8"],[1,"array"],[5,"Rgb",49528],[5,"Alpha",49529],[1,"f64"],[1,"i64"],[10,"Recipe",2004],[1,"u64"],[10,"Hasher",49530],[10,"Hash",49530],[5,"Appearance",14356],[5,"Line",14356],[5,"Box",49531],[5,"Arc",49532],[5,"Rc",49533],[1,"slice"],[6,"Cow",49534],[10,"Fn",49517],[10,"MaybeSend",49535],[10,"Sync",49536],[10,"Mul",49512],[10,"Copy",49536],[17,"Message"],[10,"Sandbox",0],[10,"Send",49536],[5,"Error",49537],[6,"Ordering",49523],[10,"Future",49538],[5,"Settings",4319],[10,"Stream",49539],[6,"Application",4418],[10,"Sub",49512],[5,"SmolStr",49540],[5,"OutOfBounds",49541],[5,"TypeId",49513],[8,"Element",0],[10,"Operation",2420],[1,"str"],[5,"Radius",2972],[5,"Shell",1199],[5,"Layout",1199],[10,"Widget",1199],[5,"Tree",2420],[10,"Iterator",49542],[10,"Renderer",1199],[5,"Hasher",1199],[10,"Overlay",1199],[5,"Style",1868],[6,"Cursor",4048],[5,"Node",1507],[5,"Limits",1507],[6,"Interaction",4048],[10,"Clipboard",1199],[6,"Status",7763],[5,"Element",1771],[6,"RedrawRequest",48836],[6,"State",2731],[5,"Tag",2731],[5,"Bytes",1406],[6,"Data",1406],[17,"Handle"],[10,"Renderer",1406],[10,"AsRef",49524],[6,"Axis",1615],[5,"Element",49543],[5,"Click",1652],[6,"Kind",1730],[5,"Group",1771],[5,"Null",1868],[5,"Pin",49544],[6,"Data",2009],[10,"Renderer",2009],[17,"Font"],[10,"Editor",2057],[17,"Settings"],[17,"Highlight"],[17,"Iterator"],[10,"Highlighter",2057],[5,"Range",49545],[6,"Hit",2057],[6,"Difference",2057],[10,"Paragraph",2057],[6,"Cursor",2205],[17,"Paragraph"],[17,"Editor"],[10,"Renderer",2057],[5,"Format",2328],[6,"Action",47846],[6,"LineHeight",47676],[6,"Direction",2205],[5,"PlainText",2328],[5,"Text",2420],[10,"StyleSheet",47676],[5,"Id",2420],[10,"FnMut",49517],[10,"Borrow",49546],[6,"Outcome",2583],[10,"Focusable",2583],[5,"Id",15718],[5,"Id",13897],[5,"Id",48082],[10,"Scrollable",2583],[6,"Shaping",47676],[10,"TextInput",2583],[5,"AbsoluteOffset",15718],[5,"RelativeOffset",15718],[5,"Count",2643],[17,"Style"],[5,"State",47676],[10,"StyleSheet",2915],[17,"Executor"],[17,"Theme"],[17,"Flags"],[10,"Application",2915],[8,"Result",0],[5,"Sender",49547],[6,"PlatformSpecific",3022],[6,"MacOS",3022],[6,"Error",3123],[6,"Family",3123],[6,"Weight",3123],[6,"Stretch",3123],[6,"Style",3123],[5,"ColorStop",3369],[5,"Modifiers",3455],[6,"Key",3455],[6,"Event",3455],[6,"Location",3455],[10,"Ord",49523],[10,"PartialOrd",49523],[6,"Named",3693],[6,"Button",4048],[6,"Event",4048],[6,"ScrollDelta",4048],[10,"Application",4287],[5,"Id",48836],[10,"StyleSheet",14235],[6,"Infallible",49524],[5,"Information",4370],[5,"Custom",4418],[6,"Menu",4418],[6,"PickList",4418],[6,"Text",4418],[6,"Button",4418],[10,"StyleSheet",7100],[6,"Scrollable",4418],[10,"StyleSheet",15718],[6,"Svg",4418],[6,"Checkbox",4418],[6,"Container",4418],[6,"Slider",4418],[6,"Radio",4418],[6,"Toggler",4418],[6,"PaneGrid",4418],[6,"ProgressBar",4418],[6,"Rule",4418],[6,"TextInput",4418],[6,"TextEditor",4418],[5,"Pair",5136],[5,"Background",5136],[5,"Primary",5136],[5,"Secondary",5136],[5,"Success",5136],[5,"Danger",5136],[5,"Duration",5440],[5,"Instant",5440],[5,"Duration",49548],[1,"u128"],[10,"Deserializer",49549],[5,"Instant",49550],[5,"Instant",49551],[5,"Delay",49552],[10,"Serializer",49553],[5,"ConversionRange",49554],[5,"TryFromFloatSecsError",49555],[6,"Event",5613],[5,"Finger",5613],[5,"Column",5705],[5,"Row",5705],[5,"Container",5705],[10,"StyleSheet",13897],[5,"Button",5705],[5,"Canvas",5705],[10,"Renderer",7197],[10,"Program",7197],[5,"QRCode",5705],[5,"Checkbox",5705],[10,"StyleSheet",13767],[5,"MouseArea",5705],[5,"Themer",5705],[5,"ComboBox",5705],[10,"StyleSheet",48082],[5,"PaneGrid",5705],[10,"StyleSheet",14356],[5,"Scrollable",5705],[5,"Tooltip",5705],[5,"Lazy",5705],[5,"State",13856],[10,"Component",5705],[5,"Svg",5705],[10,"StyleSheet",47586],[5,"Image",5705],[5,"Slider",5705],[10,"From",49524],[10,"StyleSheet",48662],[5,"VerticalSlider",5705],[5,"TextInput",5705],[6,"Direction",15718],[5,"PickList",5705],[10,"ToString",49516],[10,"StyleSheet",15190],[5,"ProgressBar",5705],[10,"StyleSheet",15365],[5,"Radio",5705],[10,"StyleSheet",15584],[5,"Rule",5705],[10,"StyleSheet",15631],[10,"FromPrimitive",49556],[5,"TextEditor",5705],[10,"StyleSheet",47846],[5,"Value",48082],[5,"Toggler",5705],[10,"StyleSheet",48569],[5,"Responsive",5705],[5,"Shader",5705],[10,"Program",16164],[10,"Renderer",49557],[5,"Space",5705],[5,"PathBuf",49558],[6,"Handle",15190],[5,"Icon",13767],[5,"Icon",48082],[5,"Column",14179],[5,"State",14356],[5,"Pane",14356],[5,"Content",14356],[5,"RangeInclusive",49545],[10,"Eq",49523],[5,"Content",47846],[6,"Position",48615],[5,"State",15409],[6,"DragEvent",14356],[5,"ResizeEvent",14356],[5,"Viewport",15718],[17,"State"],[17,"Event"],[5,"State",7100],[6,"Frame",7197],[5,"Path",7197],[5,"Cache",7197],[6,"Gradient",7197],[5,"Fill",7197],[5,"Stroke",7197],[6,"LineCap",7197],[6,"LineJoin",7197],[5,"LineDash",7197],[6,"Style",7197],[5,"Text",7197],[6,"Event",7197],[17,"Geometry"],[6,"Geometry",7197],[5,"Linear",7860],[5,"Builder",7947],[5,"Packed",7860],[5,"Path",8084],[5,"UnknownUnit",10779],[5,"Transform2D",10779],[6,"Rule",7811],[5,"Arc",7947],[5,"Elliptical",8036],[5,"PathCommands",8084],[5,"PathCommandsSlice",8084],[5,"PathSlice",8084],[5,"PathBuffer",8084],[5,"PathBufferSlice",8084],[5,"EndpointId",8084],[5,"PathCommandsBuilder",9333],[5,"BuilderImpl",13141],[5,"NoAttributes",9011],[5,"Builder",13398],[5,"BuilderWithAttributes",13141],[5,"ArcFlags",8084],[6,"Event",8084],[5,"Polygon",8084],[5,"IdPolygon",8084],[6,"LineCap",8084],[6,"LineJoin",8084],[6,"Side",8084],[6,"FillRule",8084],[6,"Winding",8084],[5,"ControlPointId",8084],[5,"EventId",8084],[5,"Events",9333],[5,"Point2D",10779],[10,"AttributeStore",8084],[5,"AttributeSlice",8084],[10,"PositionStore",8084],[10,"Position",8084],[5,"IdIter",13141],[5,"PolygonIdIter",13538],[5,"Iter",9333],[5,"Iter",13141],[1,"i16"],[5,"Iter",13398],[5,"PolygonIter",13538],[5,"IdPolygonIter",13538],[5,"IterWithAttributes",13141],[5,"PathEvents",13538],[5,"CommandsPathSlice",9333],[5,"Reversed",13141],[5,"NoAttributes",12961],[5,"WithSvg",9011],[10,"Transformation",12935],[10,"PathBuilder",13698],[5,"Vector2D",10779],[5,"Angle",9536],[5,"LineSegment",9536],[10,"SvgPathBuilder",13698],[5,"Box2D",10779],[5,"BorderRadii",9011],[5,"Flattened",9011],[5,"Transformed",9011],[17,"PathType"],[10,"Build",13698],[5,"PointEvents",9333],[5,"LineEquation",9536],[10,"Scalar",9536],[5,"Triangle",9536],[10,"AddAssign",49512],[17,"Scalar"],[10,"Segment",9536],[5,"Arc",9536],[5,"CubicBezierSegment",9536],[5,"QuadraticBezierSegment",9536],[10,"Rem",49512],[10,"One",49559],[10,"FloatConst",49519],[10,"ApproxEq",12726],[10,"NumCast",49556],[5,"SvgArc",9536],[5,"Line",9536],[5,"ArrayVec",10367],[10,"Trig",10779],[10,"Div",49512],[10,"DivAssign",49512],[5,"Flattened",10317],[5,"Flattened",10737],[5,"Flattened",12825],[5,"FlattenedT",12825],[10,"MulAssign",49512],[10,"Neg",49512],[10,"Zero",49559],[10,"Real",49560],[5,"Size2D",10779],[10,"SubAssign",49512],[5,"ArrayString",10367],[5,"IntoIter",10367],[5,"CapacityError",10367],[5,"Drain",10367],[10,"RangeBounds",49545],[5,"Utf8Error",49561],[1,"char"],[5,"Arguments",49525],[1,"i8"],[1,"i128"],[1,"i32"],[10,"Signed",49562],[5,"Size3D",10779],[5,"Vector3D",10779],[5,"Length",10779],[5,"Point3D",10779],[5,"Scale",10779],[5,"SideOffsets2D",10779],[5,"Translation2D",10779],[5,"Translation3D",10779],[5,"BoolVector2D",10779],[5,"BoolVector3D",10779],[5,"Transform3D",10779],[5,"Rotation3D",10779],[5,"Rect",10779],[5,"Box3D",10779],[5,"Rotation2D",10779],[5,"RigidTransform3D",10779],[10,"Ceil",12815],[10,"One",12815],[5,"HomogeneousVector",10779],[10,"Zero",12815],[10,"Euclid",49563],[10,"Floor",12815],[10,"Round",12815],[10,"Saturating",49564],[5,"FlatteningParameters",12825],[5,"FromPolyline",12961],[10,"PathIterator",13698],[5,"Flattened",12961],[5,"Transformed",12961],[5,"BuilderWithAttributes",13398],[5,"IterBridge",49565],[5,"Viewer",13992],[5,"State",14137],[5,"State",14235],[5,"Menu",14235],[6,"Direction",14356],[5,"TitleBar",14356],[10,"Draggable",14356],[6,"Axis",14356],[6,"Configuration",14356],[6,"Node",14356],[5,"Split",14356],[6,"Target",14356],[6,"Region",14356],[6,"Edge",14356],[6,"Action",15097],[6,"Contents",14356],[5,"BTreeMap",49566],[5,"Internal",15097],[5,"HashMap",49567],[5,"Icon",15190],[5,"State",15190],[6,"Version",15409],[6,"ErrorCorrection",15409],[6,"Error",15409],[6,"QrError",49568],[6,"FillMode",15631],[5,"Properties",15718],[6,"Alignment",15718],[5,"Scroller",15718],[5,"State",15718],[6,"Event",16164],[5,"Storage",16164],[17,"Primitive"],[6,"TextureFormat",16254],[5,"Device",16254],[5,"Queue",16254],[5,"TextureView",16254],[5,"CommandEncoder",16254],[5,"Backends",16254],[5,"Features",16254],[5,"InstanceFlags",16254],[5,"DownlevelFlags",16254],[5,"ShaderStages",16254],[5,"TextureFormatFeatureFlags",16254],[5,"ColorWrites",16254],[5,"BufferUsages",16254],[5,"TextureUsages",16254],[5,"PipelineStatisticsTypes",16254],[5,"Buffer",16254],[6,"BindingResource",16254],[5,"BufferBinding",16254],[5,"Surface",16254],[5,"Instance",16254],[5,"Adapter",16254],[5,"Texture",16254],[5,"ImageCopyTextureBase",16254],[5,"QueueWriteBufferView",16254],[5,"BufferViewMut",16254],[5,"BufferView",16254],[6,"TextureAspect",16254],[5,"ComputePassDescriptor",16254],[5,"ComputePass",16254],[5,"RenderPass",16254],[5,"QuerySet",16254],[5,"RenderPassDescriptor",16254],[5,"Limits",16254],[5,"ImageSubresourceRange",16254],[6,"Backend",16254],[6,"PowerPreference",16254],[5,"RequestAdapterOptionsBase",16254],[5,"DownlevelCapabilities",16254],[6,"ShaderModel",16254],[6,"DeviceType",16254],[5,"AdapterInfo",16254],[6,"TextureViewDimension",16254],[6,"BlendFactor",16254],[5,"Id",16254],[6,"BlendOperation",16254],[5,"BlendComponent",16254],[5,"BlendState",16254],[5,"ColorTargetState",16254],[6,"PrimitiveTopology",16254],[6,"FrontFace",16254],[6,"Face",16254],[6,"ErrorFilter",16254],[6,"PolygonMode",16254],[5,"PrimitiveState",16254],[5,"SubmissionIndex",16254],[5,"MultisampleState",16254],[5,"BufferSlice",16254],[6,"ShaderSource",16254],[5,"ShaderModuleDescriptor",16254],[5,"TextureFormatFeatures",16254],[6,"AstcBlock",16254],[6,"AstcChannel",16254],[6,"LoadOp",16254],[6,"StoreOp",16254],[5,"Operations",16254],[5,"RenderPassTimestampWrites",16254],[5,"RenderPassColorAttachment",16254],[5,"RenderPassDepthStencilAttachment",16254],[5,"TextureViewDescriptor",16254],[5,"PipelineLayoutDescriptor",16254],[5,"SamplerDescriptor",16254],[5,"BindGroupEntry",16254],[5,"BindGroupDescriptor",16254],[5,"VertexBufferLayout",16254],[5,"VertexState",16254],[5,"FragmentState",16254],[6,"MaintainBase",16254],[5,"RenderPipelineDescriptor",16254],[5,"StencilState",16254],[5,"ComputePassTimestampWrites",16254],[5,"DepthBiasState",16254],[5,"DepthStencilState",16254],[5,"ComputePipelineDescriptor",16254],[6,"IndexFormat",16254],[5,"BindGroupLayoutDescriptor",16254],[6,"StencilOperation",16254],[5,"RenderBundleEncoderDescriptor",16254],[5,"StencilFaceState",16254],[6,"SurfaceError",16254],[6,"CompareFunction",16254],[5,"RequestDeviceError",16254],[5,"CreateSurfaceError",16254],[6,"VertexStepMode",16254],[5,"BufferAsyncError",16254],[5,"VertexAttribute",16254],[6,"MapMode",16254],[6,"VertexFormat",16254],[6,"PresentMode",16254],[6,"CompositeAlphaMode",16254],[5,"PresentationTimestamp",16254],[5,"Color",16254],[6,"TextureDimension",16254],[5,"Origin2d",16254],[5,"Origin3d",16254],[5,"Extent3d",16254],[6,"AddressMode",16254],[6,"FilterMode",16254],[5,"PushConstantRange",16254],[5,"CommandBufferDescriptor",16254],[5,"RenderBundleDepthStencil",16254],[5,"ImageDataLayout",16254],[6,"BufferBindingType",16254],[6,"TextureSampleType",16254],[6,"StorageTextureAccess",16254],[6,"SamplerBindingType",16254],[6,"BindingType",16254],[5,"BindGroupLayoutEntry",16254],[5,"ImageCopyBufferBase",16254],[6,"PredefinedColorSpace",16254],[5,"ImageCopyTextureTaggedBase",16254],[6,"SamplerBorderColor",16254],[6,"QueryType",16254],[6,"Dx12Compiler",16254],[6,"Gles3MinorVersion",16254],[6,"DeviceLostReason",16254],[5,"SurfaceConfiguration",49569],[5,"ExposedAdapter",39796],[10,"HalApi",27977],[5,"BindGroup",16254],[5,"BindGroupLayout",16254],[5,"BufferDescriptor",49569],[5,"BufferInitDescriptor",47165],[5,"CommandEncoderDescriptor",49569],[5,"ComputePipeline",16254],[5,"OpenDevice",39796],[5,"DeviceDescriptor",49569],[5,"Path",49558],[5,"PipelineLayout",16254],[5,"QuerySetDescriptor",49569],[5,"RenderBundleEncoder",16254],[5,"RenderPipeline",16254],[5,"Sampler",16254],[5,"ShaderModule",16254],[5,"ShaderModuleDescriptorSpirV",16254],[6,"SurfaceTarget",16254],[6,"SurfaceTargetUnsafe",16254],[5,"TextureDescriptor",49569],[6,"TextureDataOrder",47165],[5,"SurfaceCapabilities",16254],[5,"InstanceDescriptor",16254],[5,"CommandBuffer",16254],[5,"RenderBundle",16254],[5,"SurfaceTexture",16254],[5,"RenderBundleDescriptor",49569],[6,"Error",16254],[6,"SurfaceStatus",16254],[10,"WindowHandle",16254],[6,"RequestDeviceError",28283],[5,"InstanceError",39796],[5,"Instance",28283],[6,"HandleError",45709],[10,"HasDisplayHandle",45709],[10,"HasWindowHandle",45709],[5,"GlobalReport",27778],[6,"MaintainResult",16254],[5,"Iter",49570],[5,"IterNames",49570],[10,"WasmNotSend",16254],[10,"UncapturedErrorHandler",16254],[10,"Error",49571],[5,"NonZeroU64",49572],[5,"AnySurface",23425],[5,"HalSurface",28283],[5,"BindGroupLayout",23466],[5,"Api",43521],[5,"Id",28123],[5,"ResourceInfo",38038],[5,"PipelineLayout",23466],[5,"BindGroup",23466],[6,"BindGroupLayoutEntryError",23466],[6,"CreateBindGroupLayoutError",23466],[6,"CreateBindGroupError",23466],[6,"BindingZone",23466],[5,"BindingTypeMaxCountError",23466],[6,"BindingTypeMaxCountErrorKind",23466],[5,"BindGroupEntry",23466],[5,"BindGroupDescriptor",23466],[5,"BindGroupLayoutDescriptor",23466],[6,"CreatePipelineLayoutError",23466],[6,"PushConstantUploadError",23466],[5,"PipelineLayoutDescriptor",23466],[5,"BufferBinding",23466],[6,"BindingResource",23466],[6,"BindError",23466],[6,"GetBindGroupLayoutError",23466],[5,"LateMinBufferBindingSizeMismatch",23466],[5,"BindGroupDynamicBindingData",23466],[5,"ErrorFormatter",27684],[5,"MissingFeatures",26630],[5,"MissingDownlevelFlags",26630],[6,"DeviceError",26630],[6,"UsageConflict",49573],[5,"MissingBufferUsageError",39351],[5,"MissingTextureUsageError",39351],[5,"CommandBuffer",24481],[5,"RenderBundle",24481],[5,"RenderBundleEncoderDescriptor",24481],[6,"CreateRenderBundleError",24481],[6,"ExecutionError",24481],[5,"RenderBundleError",24481],[6,"ClearError",24481],[5,"ComputePassTimestampWrites",24481],[5,"ComputePassDescriptor",24481],[6,"DispatchError",24481],[6,"ComputePassErrorInner",24481],[5,"ComputePassError",24481],[6,"DrawError",24481],[6,"RenderCommandError",24481],[5,"Rect",24481],[6,"SimplifiedQueryType",24481],[6,"QueryError",24481],[6,"QueryUseError",24481],[6,"ResolveError",24481],[6,"LoadOp",24481],[6,"StoreOp",24481],[5,"PassChannel",24481],[5,"RenderPassColorAttachment",24481],[5,"RenderPassDepthStencilAttachment",24481],[6,"RenderPassTimestampLocation",24481],[5,"RenderPassTimestampWrites",24481],[5,"RenderPassDescriptor",24481],[6,"AttachmentErrorLocation",24481],[6,"ColorAttachmentError",24481],[6,"RenderPassErrorInner",24481],[5,"RenderPassError",24481],[6,"CopySide",24481],[6,"TransferError",24481],[6,"CopyError",24481],[5,"BasePassRef",24481],[6,"CommandEncoderError",24481],[6,"PassErrorScope",24481],[5,"Device",26630],[5,"RenderBundleEncoder",24481],[5,"ComputePass",24481],[5,"RenderPass",24481],[6,"RenderPassCompatibilityError",26630],[6,"RenderCommand",49574],[5,"BasePass",49575],[5,"Buffer",38038],[5,"RenderPipeline",36864],[5,"QuerySet",38038],[5,"ComputePipeline",36864],[6,"WaitIdleError",26630],[6,"HostMap",26630],[6,"RenderPassCompatibilityCheckType",26630],[5,"InvalidDevice",26630],[5,"ImplicitPipelineContext",26630],[5,"UserClosures",26630],[5,"DeviceLostClosureRust",26630],[5,"DeviceLostClosureC",26630],[6,"DeviceError",39796],[5,"DeviceLostClosure",26630],[5,"AnyDevice",27277],[5,"Queue",27314],[5,"WrappedSubmissionIndex",27314],[5,"InvalidQueue",27314],[6,"QueueWriteError",27314],[6,"QueueSubmitError",27314],[6,"TempResource",27314],[6,"BufferAccessError",38038],[5,"SubmittedWorkDoneClosureC",27314],[5,"SubmittedWorkDoneClosure",27314],[6,"CreateDeviceError",27639],[5,"ContextError",27684],[10,"PrettyError",27684],[10,"Write",49525],[5,"IdentityManagerFactory",28201],[5,"Global",27778],[5,"Sampler",38038],[5,"Texture",38038],[5,"TextureView",38038],[5,"Adapter",28283],[10,"GlobalIdentityHandlerFactory",28201],[5,"InvalidAdapter",28283],[5,"Surface",28283],[6,"IsSurfaceSupportedError",28283],[6,"DestroyError",38038],[5,"BufferMapOperation",38038],[6,"CreateBufferError",38038],[6,"CreateTextureError",38038],[5,"ComputePipelineDescriptor",36864],[5,"ImplicitPipelineIds",26630],[6,"CreateComputePipelineError",36864],[6,"CreateQuerySetError",38038],[5,"RenderPipelineDescriptor",36864],[6,"CreateRenderPipelineError",36864],[5,"SamplerDescriptor",38038],[6,"CreateSamplerError",38038],[5,"ShaderModuleDescriptor",36864],[6,"ShaderModuleSource",36864],[5,"ShaderModule",36864],[6,"CreateShaderModuleError",36864],[6,"AdapterInputs",28283],[5,"HubReport",27983],[6,"RawDisplayHandle",45709],[6,"RawWindowHandle",45709],[5,"StagingBuffer",38038],[6,"RequestAdapterError",28283],[6,"ConfigureSurfaceError",37802],[6,"GetSurfaceSupportError",28283],[5,"SurfaceOutput",37802],[6,"SurfaceError",37802],[5,"RegistryReport",37951],[5,"TextureViewDescriptor",38038],[6,"CreateTextureViewError",38038],[6,"TextureViewDestroyError",38038],[5,"Hub",27983],[10,"WasmNotSendSync",16254],[5,"ObjectId",49576],[10,"TypedId",28123],[5,"IdentityManager",28201],[17,"Input"],[10,"IdentityHandlerFactory",28201],[5,"FailedLimit",28283],[5,"SurfaceCapabilities",39796],[6,"AddressSpace",28730],[5,"StorageAccess",28730],[5,"Barrier",28730],[5,"WithSpan",28730],[5,"Arena",28730],[5,"Span",28730],[5,"Handle",28730],[5,"Block",28730],[6,"Binding",28730],[6,"TypeInner",28730],[6,"MathFunction",28730],[5,"Scalar",28730],[5,"Type",28730],[5,"UniqueArena",28730],[5,"BadHandle",49577],[5,"Range",28730],[5,"BadRangeError",49577],[5,"SourceLocation",28730],[5,"EarlyDepthTest",28730],[6,"ConservativeDepth",28730],[6,"ShaderStage",28730],[6,"BuiltIn",28730],[6,"VectorSize",28730],[6,"ScalarKind",28730],[6,"ArraySize",28730],[6,"Interpolation",28730],[6,"Sampling",28730],[5,"StructMember",28730],[6,"ImageDimension",28730],[6,"StorageFormat",28730],[6,"ImageClass",28730],[6,"Literal",28730],[6,"Override",28730],[5,"Constant",28730],[5,"ResourceBinding",28730],[5,"GlobalVariable",28730],[5,"LocalVariable",28730],[6,"UnaryOperator",28730],[6,"BinaryOperator",28730],[6,"AtomicFunction",28730],[6,"DerivativeControl",28730],[6,"DerivativeAxis",28730],[6,"RelationalFunction",28730],[6,"SampleLevel",28730],[6,"ImageQuery",28730],[6,"SwizzleComponent",28730],[6,"Expression",28730],[6,"SwitchValue",28730],[5,"SwitchCase",28730],[6,"RayQueryFunction",28730],[6,"Statement",28730],[5,"FunctionArgument",28730],[5,"FunctionResult",28730],[5,"Function",28730],[5,"EntryPoint",28730],[6,"PredeclaredType",28730],[5,"SpecialTypes",28730],[5,"Module",28730],[6,"TypeResolution",34369],[6,"IndexableLength",34369],[6,"IndexableLengthError",34369],[5,"Iter",49578],[10,"DoubleEndedIterator",49579],[5,"GlobalCtx",34369],[10,"ExactSizeIterator",49580],[5,"RayFlag",31771],[5,"Features",31867],[5,"WriterFlags",31867],[6,"Version",31867],[5,"Options",31867],[5,"PipelineOptions",31867],[5,"TextureMapping",31867],[5,"PushConstantItem",31867],[5,"VaryingLocation",31867],[5,"ReflectionInfo",31867],[6,"Error",31867],[5,"ModuleInfo",35304],[5,"BoundsCheckPolicies",34369],[5,"Writer",31867],[5,"BindTarget",32430],[6,"ShaderModel",32430],[6,"EntryPointError",32430],[5,"Options",32430],[5,"ReflectionInfo",32430],[6,"Error",32430],[5,"Writer",32430],[6,"BindSamplerTarget",32728],[5,"BindTarget",32728],[5,"EntryPointResources",32728],[6,"EntryPointError",32728],[5,"Options",32728],[5,"PipelineOptions",32728],[5,"Writer",32728],[6,"Error",32728],[5,"TranslationInfo",32728],[6,"Coord",33137],[6,"Address",33137],[6,"BorderColor",33137],[6,"Filter",33137],[6,"CompareFunc",33137],[5,"InlineSampler",33137],[5,"ImageTypeFlags",33429],[5,"WriterFlags",33429],[6,"Capability",33429],[6,"Error",33429],[5,"DebugInfo",33429],[5,"BindingInfo",33429],[6,"ZeroInitializeWorkgroupMemoryMode",33429],[5,"Options",33429],[5,"PipelineOptions",33429],[5,"Writer",33429],[5,"FxHasher",49581],[5,"BuildHasherDefault",49530],[5,"IndexSet",49582],[5,"SymbolTable",34200],[5,"Typifier",34200],[5,"ResolveContext",34369],[6,"ResolveError",34369],[10,"Sized",49536],[5,"ParseError",34283],[5,"Frontend",34283],[5,"Namer",34369],[5,"ConstantEvaluator",34369],[6,"ConstantEvaluatorError",34369],[5,"FunctionInfo",35304],[6,"BoundsCheckPolicy",34369],[5,"Layouter",34369],[5,"Alignment",34369],[5,"TypeLayout",34369],[6,"LayoutErrorInner",34369],[5,"LayoutError",34369],[5,"Emitter",34369],[6,"NameKey",34369],[5,"ExpressionConstnessTracker",34369],[6,"LiteralError",35304],[6,"GuardedIndex",35247],[5,"BitSet",49583],[5,"UniformityRequirements",35304],[5,"GlobalUse",35304],[5,"TypeFlags",35304],[5,"ValidationFlags",35304],[5,"Capabilities",35304],[5,"ShaderStages",35304],[5,"Uniformity",35304],[5,"ExpressionInfo",35304],[6,"ComposeError",35304],[6,"ExpressionError",35304],[6,"ConstExpressionError",35304],[6,"CallError",35304],[6,"LocalVariableError",35304],[6,"FunctionError",35304],[6,"GlobalVariableError",35304],[6,"VaryingError",35304],[6,"EntryPointError",35304],[6,"Disalignment",35304],[6,"TypeError",35304],[6,"ConstantError",35304],[6,"ValidationError",35304],[5,"Validator",35304],[6,"WidthError",49584],[6,"AtomicError",49585],[5,"FwdDepError",49586],[6,"InvalidHandleError",49586],[5,"PipelineFlags",36864],[5,"ShaderError",36864],[5,"ProgrammableStageDescriptor",36864],[6,"ImplicitLayoutError",36864],[5,"VertexBufferLayout",36864],[5,"VertexState",36864],[5,"FragmentState",36864],[6,"ColorStateError",36864],[6,"DepthStencilStateError",36864],[5,"VertexStep",36864],[6,"StageError",39351],[5,"Registry",37951],[10,"Resource",38038],[5,"Storage",39315],[5,"TextureSelector",49587],[6,"TextureErrorDimension",38038],[6,"TextureDimensionError",38038],[6,"TextureViewNotRenderableReason",38038],[6,"SamplerFilterErrorType",38038],[5,"DestroyedBuffer",38038],[5,"DestroyedTexture",38038],[6,"BufferMapAsyncStatus",38038],[5,"BufferMapCallback",38038],[6,"TextureClearMode",38038],[5,"BufferMapCallbackC",38038],[5,"Interface",39351],[6,"BindingLayoutSource",39351],[5,"InterfaceVar",39351],[5,"NumericType",39351],[6,"BindingError",39351],[6,"FilteringError",39351],[6,"InputError",39351],[10,"Surface",39796],[5,"AcquiredSurfaceTexture",39796],[6,"SurfaceError",39796],[10,"Api",39796],[5,"PipelineLayoutFlags",39796],[5,"BindGroupLayoutFlags",39796],[5,"TextureFormatCapabilities",39796],[5,"FormatAspects",39796],[5,"MemoryFlags",39796],[5,"AccelerationStructureBuildFlags",39796],[5,"AttachmentOps",39796],[5,"AccelerationStructureGeometryFlags",39796],[5,"BufferUses",39796],[5,"TextureUses",39796],[5,"AccelerationStructureUses",39796],[5,"TextureDescriptor",39796],[5,"CopyExtent",39796],[10,"CommandEncoder",39796],[5,"ComputePassDescriptor",39796],[5,"RenderPassDescriptor",39796],[5,"BuildAccelerationStructureDescriptor",39796],[5,"TextureCopy",39796],[5,"BufferTextureCopy",39796],[6,"ShaderError",39796],[6,"PipelineError",39796],[5,"InstanceDescriptor",39796],[5,"Alignments",39796],[5,"Capabilities",39796],[5,"BufferMapping",39796],[5,"BufferDescriptor",39796],[5,"TextureViewDescriptor",39796],[5,"SamplerDescriptor",39796],[5,"BindGroupLayoutDescriptor",39796],[5,"PipelineLayoutDescriptor",39796],[5,"BufferBinding",39796],[5,"TextureBinding",39796],[5,"BindGroupEntry",39796],[5,"BindGroupDescriptor",39796],[5,"CommandEncoderDescriptor",39796],[5,"DebugSource",39796],[5,"ProgrammableStage",39796],[5,"ComputePipelineDescriptor",39796],[5,"VertexBufferLayout",39796],[5,"RenderPipelineDescriptor",39796],[5,"SurfaceConfiguration",39796],[5,"Rect",39796],[5,"BufferBarrier",39796],[5,"TextureBarrier",39796],[5,"BufferCopy",39796],[5,"TextureCopyBase",39796],[5,"Attachment",39796],[5,"ColorAttachment",39796],[5,"DepthStencilAttachment",39796],[5,"RenderPassTimestampWrites",39796],[5,"ComputePassTimestampWrites",39796],[5,"AccelerationStructureDescriptor",39796],[6,"AccelerationStructureFormat",39796],[6,"AccelerationStructureBuildMode",39796],[5,"AccelerationStructureBuildSizes",39796],[5,"GetAccelerationStructureBuildSizesDescriptor",39796],[5,"AccelerationStructureTriangles",39796],[5,"AccelerationStructureAABBs",39796],[5,"AccelerationStructureInstances",39796],[5,"AccelerationStructureTriangleIndices",39796],[5,"AccelerationStructureTriangleTransform",39796],[5,"AccelerationStructureBarrier",39796],[10,"Device",39796],[5,"ShaderModuleDescriptor",39796],[6,"ShaderInput",39796],[10,"Instance",39796],[5,"NagaShader",39796],[6,"AccelerationStructureEntries",39796],[6,"AllocationError",49588],[6,"AllocationError",49589],[5,"Result",49590],[6,"MapError",49589],[5,"ValidationCanary",39796],[10,"Adapter",39796],[10,"Queue",39796],[5,"Context",43521],[5,"Encoder",43521],[5,"Resource",43521],[5,"Adapter",43760],[5,"AdapterContext",43760],[5,"CommandEncoder",43760],[5,"Api",43760],[5,"QuerySet",43760],[5,"Buffer",43760],[5,"TextureFormatDesc",43760],[6,"TextureInner",43760],[5,"TextureView",43760],[5,"Device",43760],[5,"Texture",43760],[5,"BindGroup",43760],[5,"BindGroupLayout",43760],[5,"ComputePipeline",43760],[5,"Fence",43760],[5,"PipelineLayout",43760],[5,"RenderPipeline",43760],[5,"Sampler",43760],[5,"ShaderModule",43760],[5,"CommandBuffer",43760],[5,"AdapterContextLock",43760],[5,"Library",49591],[5,"EGL1_4",49592],[5,"Dynamic",49592],[5,"Instance",49592],[5,"Queue",43760],[5,"RawMutex",49593],[5,"Context",49594],[5,"MutexGuard",49595],[6,"c_void",49596],[5,"Surface",49597],[5,"Display",49598],[5,"NonZeroU32",49572],[5,"Surface",44642],[5,"Api",44642],[5,"Workarounds",44642],[5,"CommandEncoder",44642],[5,"QuerySet",44642],[5,"SurfaceTexture",44642],[5,"Texture",44642],[5,"Buffer",49599],[5,"Buffer",44642],[5,"Device",44642],[5,"AccelerationStructure",44642],[5,"BindGroup",44642],[5,"BindGroupLayout",44642],[5,"ComputePipeline",44642],[6,"Fence",44642],[5,"PipelineLayout",44642],[5,"RenderPipeline",44642],[5,"Sampler",44642],[6,"ShaderModule",44642],[5,"Instance",44642],[5,"TextureView",44642],[5,"Entry",49600],[5,"CStr",49601],[5,"Adapter",44642],[5,"Device",49602],[5,"InstanceShared",44642],[5,"CommandBuffer",44642],[5,"Queue",44642],[5,"PhysicalDevice",49599],[5,"DebugUtilsMessengerUserData",44642],[5,"Instance",49603],[5,"DebugUtilsCreateInfo",44642],[5,"PhysicalDeviceCapabilities",49604],[5,"PhysicalDeviceFeatures",49604],[5,"Image",49599],[5,"Queue",49599],[5,"DisplayHandle",45709],[5,"WindowHandle",45709],[5,"AndroidDisplayHandle",45709],[5,"AndroidNdkWindowHandle",45709],[5,"AppKitDisplayHandle",45709],[5,"AppKitWindowHandle",45709],[5,"HaikuDisplayHandle",45709],[5,"HaikuWindowHandle",45709],[5,"OrbitalDisplayHandle",45709],[5,"OrbitalWindowHandle",45709],[5,"UiKitDisplayHandle",45709],[5,"UiKitWindowHandle",45709],[5,"XlibDisplayHandle",45709],[5,"XlibWindowHandle",45709],[5,"XcbDisplayHandle",45709],[5,"XcbWindowHandle",45709],[5,"WaylandDisplayHandle",45709],[5,"WaylandWindowHandle",45709],[5,"DrmDisplayHandle",45709],[5,"DrmWindowHandle",45709],[5,"GbmDisplayHandle",45709],[5,"GbmWindowHandle",45709],[5,"WebDisplayHandle",45709],[5,"WebWindowHandle",45709],[5,"WebCanvasWindowHandle",45709],[5,"WebOffscreenCanvasWindowHandle",45709],[5,"WindowsDisplayHandle",45709],[5,"Win32WindowHandle",45709],[5,"WinRtWindowHandle",45709],[5,"NonNull",49605],[5,"NonZeroIsize",49572],[10,"HasRawDisplayHandle",45709],[10,"HasRawWindowHandle",45709],[5,"DrawIndirectArgs",47165],[5,"DrawIndexedIndirectArgs",47165],[5,"DispatchIndirectArgs",47165],[10,"DeviceExt",47165],[5,"DownloadBuffer",47165],[10,"RenderEncoder",47165],[5,"StagingBelt",47165],[5,"Rail",47479],[5,"State",47479],[6,"Edit",47846],[6,"Motion",47846],[17,"Target"],[10,"Deref",49606],[5,"Cursor",48082],[6,"Side",48082],[5,"State",48082],[6,"State",48416],[5,"Handle",48662],[6,"HandleShape",48662],[5,"State",48662],[5,"Screenshot",48836],[5,"Icon",48836],[6,"Level",48836],[6,"Mode",48836],[5,"Settings",48836],[6,"Event",48836],[6,"Position",48836],[6,"UserAttention",48836],[6,"CropError",49411],[6,"Action",48836],[6,"Error",49363],[6,"Error",49607],[6,"ImageError",49608],[6,"ImageFormat",49609],[5,"PlatformSpecific",49453],[15,"Rgba",1504],[15,"WheelScrolled",1724],[15,"CursorMoved",1724],[15,"Lines",1726],[15,"Pixels",1726],[15,"Scroll",2327],[15,"KeyPressed",3686],[15,"KeyReleased",3686],[15,"FingerPressed",5697],[15,"FingerMoved",5697],[15,"FingerLifted",5697],[15,"FingerLost",5697],[8,"PathEvent",8084],[8,"IdEvent",8084],[15,"Begin",8972],[15,"End",8972],[15,"Quadratic",8972],[15,"Cubic",8972],[15,"Line",8972],[8,"Rotation",9536],[8,"Size",9536],[8,"Transform",9536],[8,"Box2D",9536],[8,"Translation",9536],[8,"Point",9536],[8,"Vector",9536],[8,"Rotation2D",12732],[8,"SideOffsets2D",12732],[8,"Size3D",12732],[8,"Rotation3D",12732],[8,"Transform2D",12732],[8,"Transform3D",12732],[8,"Box3D",12732],[8,"Rect",12732],[8,"RigidTransform3D",12732],[8,"HomogeneousVector",12732],[8,"Point3D",12732],[8,"Vector3D",12732],[8,"Translation2D",12732],[8,"Translation3D",12732],[8,"Rotation",13111],[8,"Size",13111],[8,"Transform",13111],[8,"Box2D",13111],[8,"Angle",13111],[8,"Point",13111],[8,"Vector",13111],[8,"Translation",13111],[15,"Split",15084],[15,"Picked",15088],[15,"Dropped",15088],[15,"Canceled",15088],[15,"Split",15092],[15,"Resizing",15184],[15,"Clicking",15184],[15,"Dragging",15184],[15,"Dynamic",15362],[15,"Arrow",15362],[15,"Both",16162],[8,"Label",16254],[8,"Maintain",16254],[8,"SurfaceConfiguration",16254],[8,"ImageCopyTexture",16254],[8,"ImageCopyTextureTagged",16254],[8,"ImageCopyBuffer",16254],[8,"RequestAdapterOptions",16254],[8,"QuerySetDescriptor",16254],[8,"TextureDescriptor",16254],[8,"DeviceDescriptor",16254],[8,"BufferDescriptor",16254],[8,"CommandEncoderDescriptor",16254],[8,"RenderBundleDescriptor",16254],[15,"StorageTexture",23368],[15,"Buffer",23368],[15,"Texture",23368],[15,"Storage",23377],[15,"Dxc",23378],[15,"Validation",23380],[15,"OutOfMemory",23380],[15,"RawHandle",23383],[15,"Astc",23385],[15,"Float",23387],[8,"Label",23388],[15,"MismatchedDynamicOffsetCount",24401],[15,"UnalignedDynamicBinding",24401],[15,"DynamicBindingOutOfBounds",24401],[15,"BindingArrayPartialLengthMismatch",24417],[15,"BindingArrayLengthMismatch",24417],[15,"BindingSizeTooSmall",24417],[15,"BindingsNumMismatch",24417],[15,"WrongBindingType",24417],[15,"BufferRangeTooLarge",24417],[15,"InvalidTextureMultisample",24417],[15,"InvalidTextureSampleType",24417],[15,"InvalidTextureDimension",24417],[15,"InvalidStorageTextureFormat",24417],[15,"InvalidStorageTextureMipLevelCount",24417],[15,"WrongSamplerComparison",24417],[15,"WrongSamplerFiltering",24417],[15,"BindingRangeTooLarge",24417],[15,"Entry",24455],[15,"InvalidBindingIndex",24455],[15,"TooManyGroups",24459],[15,"MisalignedPushConstantRange",24459],[15,"MoreThanOnePushConstantRangePerStage",24459],[15,"PushConstantRangeTooLarge",24459],[15,"PartialRangeMatch",24469],[15,"MissingStages",24469],[15,"UnmatchedStages",24469],[15,"TooLarge",24469],[5,"BakedCommands",24481],[5,"CommandBufferMutable",24481],[8,"ImageCopyTexture",24481],[8,"ImageCopyTextureTagged",24481],[8,"ImageCopyBuffer",24481],[8,"RenderBundleDescriptor",24481],[15,"Color",26466],[15,"BufferOverrun",26468],[15,"InvalidTextureLayerRange",26468],[15,"InvalidTextureLevelRange",26468],[15,"MissingTextureAspect",26468],[15,"TooMany",26479],[15,"IndirectBufferOverrun",26481],[15,"BindGroupIndexOutOfRange",26481],[15,"InvalidGroupSize",26486],[15,"IncompatibleBindGroup",26486],[15,"UnmatchedIndexFormats",26490],[15,"IncompatibleBindGroup",26490],[15,"MissingVertexBuffer",26490],[15,"IndexBeyondLimit",26490],[15,"InstanceBeyondLimit",26490],[15,"VertexBeyondLimit",26490],[15,"Draw",26503],[15,"Dispatch",26503],[15,"AlreadyStarted",26508],[15,"OutOfBounds",26508],[15,"UsedTwiceInsideRenderpass",26508],[15,"IncompatibleType",26508],[15,"InvalidDynamicOffsetCount",26515],[15,"BindGroupIndexOutOfRange",26515],[15,"VertexBufferIndexOutOfRange",26515],[15,"AttachmentsDimensionMismatch",26521],[15,"AttachmentSampleCountMismatch",26521],[15,"IndirectCountBufferOverrun",26521],[15,"IndirectBufferOverrun",26521],[15,"IncompatibleBundleReadOnlyDepthStencil",26521],[15,"InvalidResolveSampleCounts",26521],[15,"MismatchedResolveTextureFormat",26521],[15,"UnsupportedResolveTargetFormat",26521],[15,"TextureViewIsNotRenderable",26521],[15,"BufferOverrun",26550],[15,"QueryOverrun",26550],[15,"InvalidTextureAspect",26559],[15,"CopyFromForbiddenTextureFormat",26559],[15,"CopyToForbiddenTextureFormat",26559],[15,"BufferOverrun",26559],[15,"InvalidMipLevel",26559],[15,"TextureOverrun",26559],[15,"TextureFormatsNotCopyCompatible",26559],[15,"InvalidTextureMipLevel",26559],[15,"InvalidSampleCount",26559],[5,"DeviceLostInvocation",26630],[8,"DeviceDescriptor",26630],[15,"IncompatibleColorAttachment",27264],[15,"IncompatibleDepthStencilAttachment",27264],[15,"IncompatibleSampleCount",27264],[15,"IncompatibleMultiview",27264],[5,"Hubs",27983],[8,"RequestAdapterOptions",28283],[15,"Storage",31649],[15,"Exchange",31650],[15,"Location",31651],[15,"Position",31655],[15,"Select",31656],[15,"Math",31656],[15,"Relational",31656],[15,"ImageSample",31656],[15,"ImageLoad",31656],[15,"Derivative",31656],[15,"Access",31656],[15,"AccessIndex",31656],[15,"RayQueryGetIntersection",31656],[15,"AtomicResult",31656],[15,"Compose",31656],[15,"As",31656],[15,"Unary",31656],[15,"ImageQuery",31656],[15,"Binary",31656],[15,"Swizzle",31656],[15,"Load",31656],[15,"Splat",31656],[15,"WorkGroupUniformLoadResult",31656],[15,"Storage",31709],[15,"Sampled",31709],[15,"Depth",31709],[15,"Size",31714],[15,"ModfResult",31715],[15,"FrexpResult",31715],[15,"Initialize",31719],[15,"Proceed",31719],[15,"Gradient",31722],[15,"If",31724],[15,"Call",31724],[15,"ImageStore",31724],[15,"Loop",31724],[15,"Switch",31724],[15,"Atomic",31724],[15,"RayQuery",31724],[15,"Store",31724],[15,"WorkGroupUniformLoad",31724],[15,"Return",31724],[15,"Image",31750],[15,"Pointer",31750],[15,"Array",31750],[15,"BindingArray",31750],[15,"Matrix",31750],[15,"Sampler",31750],[15,"Struct",31750],[15,"Vector",31750],[15,"ValuePointer",31750],[15,"Embedded",32428],[15,"InvalidCastArg",35235],[15,"AutomaticConversionLossy",35235],[15,"AutomaticConversionFloatToInt",35235],[15,"OutOfBoundsIndex",35240],[15,"InvalidAccess",35240],[15,"InvalidSubAccess",35240],[15,"FunctionNotDefined",35240],[15,"Argument",36791],[15,"ArgumentType",36791],[15,"ArgumentCount",36791],[15,"ComponentCount",36798],[15,"ComponentType",36798],[15,"ArrayStride",36801],[15,"StructSpan",36801],[15,"MemberOffset",36801],[15,"MemberOffsetAfterStruct",36801],[15,"UnsizedMember",36801],[15,"InvalidIntegerInterpolation",36812],[15,"InvalidLocationsWhileDualSourceBlending",36812],[15,"ComparisonSamplingMismatch",36814],[15,"InvalidCall",36817],[15,"Expression",36817],[15,"LocalVariable",36817],[15,"InvalidArgumentType",36817],[15,"InvalidArgumentPointerSpace",36817],[15,"PipelineInputRegularFunction",36817],[15,"InvalidStoreTypes",36817],[15,"MissingTypeFlags",36832],[15,"InvalidPointerToUnsized",36834],[15,"InvalidArrayStride",36834],[15,"MemberOverlap",36834],[15,"MemberOutOfBounds",36834],[15,"Type",36844],[15,"ConstExpression",36844],[15,"Constant",36844],[15,"GlobalVariable",36844],[15,"Function",36844],[15,"EntryPoint",36844],[15,"InvalidLocationAttributeCombination",36861],[15,"BindingCollision",36861],[15,"IncompatibleFormat",37775],[15,"UnalignedShader",37777],[15,"Stage",37777],[15,"Internal",37777],[15,"BlendFactorOnUnsupportedTarget",37777],[15,"TooManyVertexBuffers",37777],[15,"TooManyVertexAttributes",37777],[15,"VertexStrideTooLarge",37777],[15,"UnalignedVertexStride",37777],[15,"InvalidVertexAttributeOffset",37777],[15,"StripIndexFormatForNonStripTopology",37777],[15,"InvalidGroupIndex",37799],[15,"UnsupportedFormat",37942],[15,"UnsupportedPresentMode",37942],[15,"UnsupportedAlphaMode",37942],[15,"TooLarge",37942],[8,"BufferAccessResult",38038],[8,"QuerySetDescriptor",38038],[8,"TextureDescriptor",38038],[8,"BufferDescriptor",38038],[15,"NegativeRange",39264],[15,"OutOfBoundsUnderrun",39264],[15,"OutOfBoundsOverrun",39264],[15,"UnalignedOffset",39264],[15,"UnalignedRangeSize",39264],[15,"MaxBufferSize",39272],[15,"TooManyQueries",39274],[15,"InvalidFilterModeWithAnisotropy",39276],[15,"InvalidLodMaxClamp",39276],[15,"InvalidMipLevelCount",39281],[15,"InvalidCubemapTextureDepth",39283],[15,"InvalidCubemapArrayTextureDepth",39283],[15,"InvalidArrayLayerCount",39283],[15,"TooManyMipLevels",39283],[15,"TooManyArrayLayers",39283],[15,"InvalidAspect",39283],[15,"InvalidTextureViewDimension",39283],[15,"FormatReinterpretation",39283],[15,"Surface",39297],[15,"RenderPass",39297],[15,"NotMultipleOfBlockHeight",39300],[15,"NotMultipleOfBlockWidth",39300],[15,"LimitExceeded",39300],[15,"WidthNotMultipleOf",39300],[15,"HeightNotMultipleOf",39300],[15,"WrongAddressSpace",39776],[15,"WrongTextureViewDimension",39776],[15,"WrongTextureClass",39776],[15,"InvalidWorkgroupSize",39783],[15,"Filtering",39783],[15,"Input",39783],[15,"TooManyVaryings",39783],[15,"InputNotConsumed",39783],[8,"Label",39796],[8,"MemoryRange",39796],[15,"Renderbuffer",44639],[15,"Texture",44639],[15,"FencePool",45704],[15,"Intermediate",45707],[15,"Rectangle",47582],[15,"Circle",47582],[15,"Selection",48456],[15,"Resized",49357],[15,"Opened",49357],[15,"Moved",49357]],"b":[[76,"impl-StyleSheet-for-Theme"],[77,"impl-StyleSheet-for-Theme"],[78,"impl-StyleSheet-for-Theme"],[79,"impl-StyleSheet-for-Theme"],[80,"impl-StyleSheet-for-Theme"],[81,"impl-StyleSheet-for-Theme"],[82,"impl-StyleSheet-for-Theme"],[83,"impl-StyleSheet-for-Theme"],[84,"impl-StyleSheet-for-Theme"],[116,"impl-StyleSheet-for-Theme"],[117,"impl-StyleSheet-for-Theme"],[118,"impl-StyleSheet-for-Theme"],[119,"impl-StyleSheet-for-Theme"],[120,"impl-StyleSheet-for-Theme"],[121,"impl-StyleSheet-for-Theme"],[122,"impl-StyleSheet-for-Theme"],[398,"impl-Renderer-for-Renderer"],[399,"impl-Renderer-for-Renderer"],[400,"impl-StyleSheet-for-Theme"],[401,"impl-StyleSheet-for-Theme"],[402,"impl-StyleSheet-for-Theme"],[403,"impl-StyleSheet-for-Theme"],[404,"impl-StyleSheet-for-Theme"],[406,"impl-Div%3Cf32%3E-for-Radians"],[407,"impl-Div-for-Radians"],[431,"impl-StyleSheet-for-Theme"],[432,"impl-StyleSheet-for-Theme"],[434,"impl-Renderer-for-Renderer"],[435,"impl-Renderer-for-Renderer"],[436,"impl-Renderer-for-Renderer"],[518,"impl-Display-for-Error"],[519,"impl-Debug-for-Error"],[520,"impl-Display-for-Theme"],[521,"impl-Debug-for-Theme"],[535,"impl-Debug-for-Point%3CT%3E"],[536,"impl-Display-for-Point%3CT%3E"],[541,"impl-StyleSheet-for-Theme"],[542,"impl-StyleSheet-for-Theme"],[550,"impl-From%3CVertical%3E-for-Alignment"],[551,"impl-From%3CHorizontal%3E-for-Alignment"],[559,"impl-From%3Cu8%3E-for-Radians"],[560,"impl-From%3CDegrees%3E-for-Radians"],[562,"impl-From%3Cf32%3E-for-Radians"],[564,"impl-From%3CLinear%3E-for-Background"],[565,"impl-From%3CColor%3E-for-Background"],[566,"impl-From%3CGradient%3E-for-Background"],[568,"impl-From%3C%5Bf32;+4%5D%3E-for-Color"],[569,"impl-From%3CAlpha%3CRgb,+f32%3E%3E-for-Color"],[570,"impl-From%3C%5Bf32;+3%5D%3E-for-Color"],[571,"impl-From%3CRgb%3E-for-Color"],[573,"impl-From%3Cu16%3E-for-Length"],[574,"impl-From%3CPixels%3E-for-Length"],[575,"impl-From%3Cf32%3E-for-Length"],[577,"impl-From%3C%5Bf32;+4%5D%3E-for-Padding"],[578,"impl-From%3Cf32%3E-for-Padding"],[580,"impl-From%3C%5Bu16;+2%5D%3E-for-Padding"],[581,"impl-From%3C%5Bu16;+4%5D%3E-for-Padding"],[582,"impl-From%3C%5Bf32;+2%5D%3E-for-Padding"],[583,"impl-From%3Cu16%3E-for-Padding"],[584,"impl-From%3Cu16%3E-for-Pixels"],[586,"impl-From%3Cf32%3E-for-Pixels"],[588,"impl-From%3C%5BT;+2%5D%3E-for-Point%3CT%3E"],[589,"impl-From%3C(T,+T)%3E-for-Point%3CT%3E"],[594,"impl-From%3C%5Bf32;+2%5D%3E-for-Size"],[595,"impl-From%3C%5Bu16;+2%5D%3E-for-Size"],[596,"impl-From%3CPadding%3E-for-Size"],[597,"impl-From%3CVector%3E-for-Size"],[598,"impl-From%3C%5BT;+2%5D%3E-for-Vector%3CT%3E"],[600,"impl-From%3CSize%3E-for-Vector"],[667,"impl-StyleSheet-for-Theme"],[668,"impl-StyleSheet-for-Theme"],[669,"impl-StyleSheet-for-Theme"],[670,"impl-StyleSheet-for-Theme"],[671,"impl-StyleSheet-for-Theme"],[672,"impl-StyleSheet-for-Theme"],[673,"impl-StyleSheet-for-Theme"],[674,"impl-StyleSheet-for-Theme"],[675,"impl-StyleSheet-for-Theme"],[676,"impl-StyleSheet-for-Theme"],[901,"impl-Mul%3Cf32%3E-for-Radians"],[902,"impl-Mul-for-Radians"],[925,"impl-StyleSheet-for-Theme"],[926,"impl-StyleSheet-for-Theme"],[937,"impl-StyleSheet-for-Theme"],[938,"impl-StyleSheet-for-Theme"],[949,"impl-Sub-for-Point%3CT%3E"],[950,"impl-Sub%3CVector%3CT%3E%3E-for-Point%3CT%3E"],[1176,"impl-StyleSheet-for-Theme"],[1177,"impl-StyleSheet-for-Theme"],[1845,"impl-Group%3C\'a,+Message,+Theme,+Renderer%3E"],[1846,"impl-Overlay%3CMessage,+Theme,+Renderer%3E-for-Group%3C\'a,+Message,+Theme,+Renderer%3E"],[2488,"impl-From%3CId%3E-for-Id"],[2490,"impl-From%3CId%3E-for-Id"],[2491,"impl-From%3CId%3E-for-Id"],[2541,"impl-Text%3C\'a,+Theme,+Renderer%3E"],[2542,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Text%3C\'a,+Theme,+Renderer%3E"],[2992,"impl-From%3Cf32%3E-for-Radius"],[2993,"impl-From%3Cu8%3E-for-Radius"],[2994,"impl-From%3C%5Bf32;+4%5D%3E-for-Radius"],[3571,"impl-LowerHex-for-Modifiers"],[3572,"impl-Binary-for-Modifiers"],[3573,"impl-Octal-for-Modifiers"],[3574,"impl-UpperHex-for-Modifiers"],[3575,"impl-Debug-for-Modifiers"],[4750,"impl-Debug-for-Custom"],[4751,"impl-Display-for-Custom"],[4759,"impl-From%3CAppearance%3E-for-Container"],[4760,"impl-From%3CT%3E-for-Container"],[5451,"impl-Add%3CDuration%3E-for-Instant"],[5452,"impl-Add%3CDuration%3E-for-Instant"],[5453,"impl-Add-for-Duration"],[5454,"impl-Add%3CDuration%3E-for-Duration"],[5455,"impl-AddAssign%3CDuration%3E-for-Instant"],[5456,"impl-AddAssign%3CDuration%3E-for-Instant"],[5457,"impl-AddAssign-for-Duration"],[5458,"impl-AddAssign%3CDuration%3E-for-Duration"],[5500,"impl-Div%3CDuration%3E-for-Duration"],[5501,"impl-Div%3Cu32%3E-for-Duration"],[5513,"impl-PartialEq%3CInstant%3E-for-Instant"],[5514,"impl-PartialEq-for-Instant"],[5515,"impl-PartialEq%3CDuration%3E-for-Duration"],[5516,"impl-PartialEq-for-Duration"],[5527,"impl-From%3CInstant%3E-for-Instant"],[5528,"impl-From%3CInstant%3E-for-Instant"],[5568,"impl-PartialOrd%3CInstant%3E-for-Instant"],[5569,"impl-PartialOrd-for-Instant"],[5570,"impl-PartialOrd-for-Duration"],[5571,"impl-PartialOrd%3CDuration%3E-for-Duration"],[5577,"impl-Sub%3CDuration%3E-for-Instant"],[5578,"impl-Sub%3CDuration%3E-for-Instant"],[5579,"impl-Sub-for-Instant"],[5580,"impl-Sub%3CInstant%3E-for-Instant"],[5581,"impl-Sub-for-Duration"],[5582,"impl-Sub%3CDuration%3E-for-Duration"],[5583,"impl-SubAssign%3CDuration%3E-for-Instant"],[5584,"impl-SubAssign%3CDuration%3E-for-Instant"],[5585,"impl-SubAssign%3CDuration%3E-for-Duration"],[5586,"impl-SubAssign-for-Duration"],[5590,"impl-Sum-for-Duration"],[5591,"impl-Sum%3C%26Duration%3E-for-Duration"],[6125,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6126,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6544,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6545,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6718,"impl-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[6719,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[6720,"impl-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[6721,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[6726,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Radio%3CMessage,+Theme,+Renderer%3E"],[6727,"impl-Radio%3CMessage,+Theme,+Renderer%3E"],[6732,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6733,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[6734,"impl-Toggler%3C\'a,+Message,+Theme,+Renderer%3E"],[6735,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Toggler%3C\'a,+Message,+Theme,+Renderer%3E"],[6736,"impl-Tooltip%3C\'a,+Message,+Theme,+Renderer%3E"],[6737,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Tooltip%3C\'a,+Message,+Theme,+Renderer%3E"],[7448,"impl-From%3CLinear%3E-for-Fill"],[7449,"impl-From%3CColor%3E-for-Fill"],[7451,"impl-From%3CGradient%3E-for-Fill"],[7457,"impl-From%3CColor%3E-for-Style"],[7459,"impl-From%3CGradient%3E-for-Style"],[7461,"impl-From%3C%26str%3E-for-Text"],[7462,"impl-From%3CString%3E-for-Text"],[8557,"impl-Index%3CEndpointId%3E-for-Path"],[8558,"impl-Index%3CControlPointId%3E-for-Path"],[8559,"impl-Index%3CEndpointId%3E-for-PathSlice%3C\'l%3E"],[8560,"impl-Index%3CControlPointId%3E-for-PathSlice%3C\'l%3E"],[8718,"impl-IntoIterator-for-PathSlice%3C\'l%3E"],[8719,"impl-IntoIterator-for-%26PathSlice%3C\'l%3E"],[9066,"impl-NoAttributes%3CB%3E"],[9067,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9081,"impl-Flattened%3CBuilder%3E"],[9082,"impl-Build-for-Flattened%3CBuilder%3E"],[9084,"impl-WithSvg%3CBuilder%3E"],[9085,"impl-Build-for-WithSvg%3CBuilder%3E"],[9086,"impl-Build-for-NoAttributes%3CB%3E"],[9087,"impl-NoAttributes%3CB%3E"],[9094,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9095,"impl-WithSvg%3CBuilder%3E"],[9106,"impl-WithSvg%3CBuilder%3E"],[9107,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9108,"impl-NoAttributes%3CB%3E"],[9109,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9136,"impl-NoAttributes%3CB%3E"],[9137,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9145,"impl-Debug-for-BorderRadii"],[9146,"impl-Display-for-BorderRadii"],[9218,"impl-WithSvg%3CBuilder%3E"],[9219,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9220,"impl-NoAttributes%3CB%3E"],[9221,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9223,"impl-WithSvg%3CBuilder%3E"],[9224,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9241,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9242,"impl-WithSvg%3CBuilder%3E"],[9243,"impl-NoAttributes%3CB%3E"],[9244,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9263,"impl-WithSvg%3CBuilder%3E"],[9264,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[9265,"impl-NoAttributes%3CB%3E"],[9266,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[9435,"impl-Index%3CEndpointId%3E-for-CommandsPathSlice%3C\'l,+Endpoint,+ControlPoint%3E"],[9436,"impl-Index%3CControlPointId%3E-for-CommandsPathSlice%3C\'l,+Endpoint,+ControlPoint%3E"],[9586,"impl-Add-for-Angle%3CT%3E"],[9587,"impl-Add%3C%26Angle%3CT%3E%3E-for-Angle%3CT%3E"],[9590,"impl-Segment-for-Arc%3CS%3E"],[9591,"impl-Arc%3CS%3E"],[9592,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9593,"impl-CubicBezierSegment%3CS%3E"],[9594,"impl-Segment-for-LineSegment%3CS%3E"],[9595,"impl-LineSegment%3CS%3E"],[9596,"impl-QuadraticBezierSegment%3CS%3E"],[9597,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9603,"impl-Segment-for-Arc%3CS%3E"],[9604,"impl-Arc%3CS%3E"],[9605,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9606,"impl-CubicBezierSegment%3CS%3E"],[9653,"impl-Arc%3CS%3E"],[9654,"impl-Segment-for-Arc%3CS%3E"],[9655,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9656,"impl-CubicBezierSegment%3CS%3E"],[9657,"impl-Segment-for-LineSegment%3CS%3E"],[9658,"impl-LineSegment%3CS%3E"],[9659,"impl-QuadraticBezierSegment%3CS%3E"],[9660,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9762,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9763,"impl-CubicBezierSegment%3CS%3E"],[9765,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9766,"impl-QuadraticBezierSegment%3CS%3E"],[9771,"impl-Div%3CT%3E-for-Angle%3CT%3E"],[9772,"impl-Div-for-Angle%3CT%3E"],[9796,"impl-CubicBezierSegment%3CS%3E"],[9797,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9799,"impl-QuadraticBezierSegment%3CS%3E"],[9800,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9802,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9803,"impl-CubicBezierSegment%3CS%3E"],[9805,"impl-QuadraticBezierSegment%3CS%3E"],[9806,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9842,"impl-Segment-for-Arc%3CS%3E"],[9843,"impl-Arc%3CS%3E"],[9844,"impl-CubicBezierSegment%3CS%3E"],[9845,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9846,"impl-Segment-for-LineSegment%3CS%3E"],[9847,"impl-LineSegment%3CS%3E"],[9848,"impl-QuadraticBezierSegment%3CS%3E"],[9849,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9866,"impl-Segment-for-Arc%3CS%3E"],[9867,"impl-Arc%3CS%3E"],[9869,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9870,"impl-CubicBezierSegment%3CS%3E"],[9872,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[9873,"impl-QuadraticBezierSegment%3CS%3E"],[9901,"impl-Arc%3CS%3E"],[9902,"impl-Segment-for-Arc%3CS%3E"],[9903,"impl-From%3CSvgArc%3CS%3E%3E-for-Arc%3CS%3E"],[9906,"impl-CubicBezierSegment%3CS%3E"],[9907,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[9909,"impl-LineSegment%3CS%3E"],[9910,"impl-Segment-for-LineSegment%3CS%3E"],[9914,"impl-QuadraticBezierSegment%3CS%3E"],[9916,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10101,"impl-Segment-for-Arc%3CS%3E"],[10102,"impl-Arc%3CS%3E"],[10103,"impl-CubicBezierSegment%3CS%3E"],[10104,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10105,"impl-Segment-for-LineSegment%3CS%3E"],[10106,"impl-LineSegment%3CS%3E"],[10107,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10108,"impl-QuadraticBezierSegment%3CS%3E"],[10125,"impl-Segment-for-Arc%3CS%3E"],[10126,"impl-Arc%3CS%3E"],[10127,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10128,"impl-CubicBezierSegment%3CS%3E"],[10129,"impl-Segment-for-LineSegment%3CS%3E"],[10130,"impl-LineSegment%3CS%3E"],[10131,"impl-QuadraticBezierSegment%3CS%3E"],[10132,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10135,"impl-Arc%3CS%3E"],[10136,"impl-Segment-for-Arc%3CS%3E"],[10137,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10138,"impl-CubicBezierSegment%3CS%3E"],[10139,"impl-LineSegment%3CS%3E"],[10140,"impl-Segment-for-LineSegment%3CS%3E"],[10141,"impl-QuadraticBezierSegment%3CS%3E"],[10142,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10150,"impl-Sum-for-Angle%3CT%3E"],[10151,"impl-Sum%3C%26Angle%3CT%3E%3E-for-Angle%3CT%3E"],[10156,"impl-Arc%3CS%3E"],[10157,"impl-Segment-for-Arc%3CS%3E"],[10158,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10159,"impl-CubicBezierSegment%3CS%3E"],[10160,"impl-Segment-for-LineSegment%3CS%3E"],[10161,"impl-LineSegment%3CS%3E"],[10162,"impl-QuadraticBezierSegment%3CS%3E"],[10163,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10283,"impl-Segment-for-Arc%3CS%3E"],[10284,"impl-Arc%3CS%3E"],[10285,"impl-CubicBezierSegment%3CS%3E"],[10286,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10287,"impl-Segment-for-LineSegment%3CS%3E"],[10288,"impl-LineSegment%3CS%3E"],[10289,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10290,"impl-QuadraticBezierSegment%3CS%3E"],[10301,"impl-Segment-for-Arc%3CS%3E"],[10302,"impl-Arc%3CS%3E"],[10303,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[10304,"impl-CubicBezierSegment%3CS%3E"],[10305,"impl-Segment-for-LineSegment%3CS%3E"],[10306,"impl-LineSegment%3CS%3E"],[10307,"impl-QuadraticBezierSegment%3CS%3E"],[10308,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[10476,"impl-PartialEq-for-ArrayVec%3CT,+CAP%3E"],[10477,"impl-PartialEq%3C%5BT%5D%3E-for-ArrayVec%3CT,+CAP%3E"],[10478,"impl-PartialEq-for-ArrayString%3CCAP%3E"],[10479,"impl-PartialEq%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10494,"impl-Debug-for-ArrayString%3CCAP%3E"],[10495,"impl-Display-for-ArrayString%3CCAP%3E"],[10496,"impl-Display-for-CapacityError%3CT%3E"],[10497,"impl-Debug-for-CapacityError%3CT%3E"],[10519,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[10520,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10522,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10523,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[10569,"impl-IntoIterator-for-ArrayVec%3CT,+CAP%3E"],[10570,"impl-IntoIterator-for-%26mut+ArrayVec%3CT,+CAP%3E"],[10571,"impl-IntoIterator-for-%26ArrayVec%3CT,+CAP%3E"],[10584,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[10585,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10591,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[10592,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10603,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[10604,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[10647,"impl-TryFrom%3C%26str%3E-for-ArrayString%3CCAP%3E"],[10648,"impl-TryFrom%3CArguments%3C\'a%3E%3E-for-ArrayString%3CCAP%3E"],[10831,"impl-Add-for-Length%3CT,+U%3E"],[10832,"impl-Add%3C%26Length%3CT,+U%3E%3E-for-Length%3CT,+U%3E"],[10833,"impl-Add%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[10834,"impl-Add%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[10835,"impl-Add%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[10836,"impl-Add%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[10839,"impl-Add%3C%26Size2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[10840,"impl-Add-for-Size2D%3CT,+U%3E"],[10841,"impl-Add-for-Size3D%3CT,+U%3E"],[10842,"impl-Add%3C%26Size3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[10845,"impl-Add-for-Vector2D%3CT,+U%3E"],[10846,"impl-Add%3C%26Vector2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[10847,"impl-Add%3C%26Vector3D%3CT,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[10848,"impl-Add-for-Vector3D%3CT,+U%3E"],[10850,"impl-AddAssign%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[10851,"impl-AddAssign%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[10852,"impl-AddAssign%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[10853,"impl-AddAssign%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[10887,"impl-ApproxEq%3CT%3E-for-Transform2D%3CT,+Src,+Dst%3E"],[10888,"impl-Transform2D%3CT,+Src,+Dst%3E"],[10889,"impl-Transform3D%3CT,+Src,+Dst%3E"],[10890,"impl-ApproxEq%3CT%3E-for-Transform3D%3CT,+Src,+Dst%3E"],[11070,"impl-Ceil-for-Point2D%3CT,+U%3E"],[11071,"impl-Point2D%3CT,+U%3E"],[11072,"impl-Point3D%3CT,+U%3E"],[11073,"impl-Ceil-for-Point3D%3CT,+U%3E"],[11074,"impl-Size2D%3CT,+U%3E"],[11075,"impl-Ceil-for-Size2D%3CT,+U%3E"],[11076,"impl-Size3D%3CT,+U%3E"],[11077,"impl-Ceil-for-Size3D%3CT,+U%3E"],[11078,"impl-Vector2D%3CT,+U%3E"],[11079,"impl-Ceil-for-Vector2D%3CT,+U%3E"],[11080,"impl-Ceil-for-Vector3D%3CT,+U%3E"],[11081,"impl-Vector3D%3CT,+U%3E"],[11256,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Box2D%3CT,+U2%3E"],[11257,"impl-Div%3CT%3E-for-Box2D%3CT,+U%3E"],[11258,"impl-Div%3CT%3E-for-Box3D%3CT,+U%3E"],[11259,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Box3D%3CT,+U2%3E"],[11260,"impl-Div%3CScale%3CT,+Src,+Dst%3E%3E-for-Length%3CT,+Dst%3E"],[11261,"impl-Div%3CT%3E-for-Length%3CT,+U%3E"],[11262,"impl-Div%3CLength%3CT,+Src%3E%3E-for-Length%3CT,+Dst%3E"],[11263,"impl-Div%3CT%3E-for-Point2D%3CT,+U%3E"],[11264,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Point2D%3CT,+U2%3E"],[11265,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Point3D%3CT,+U2%3E"],[11266,"impl-Div%3CT%3E-for-Point3D%3CT,+U%3E"],[11267,"impl-Div%3CT%3E-for-Rect%3CT,+U%3E"],[11268,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Rect%3CT,+U2%3E"],[11269,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-SideOffsets2D%3CT,+U2%3E"],[11270,"impl-Div%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[11271,"impl-Div%3CT%3E-for-Size2D%3CT,+U%3E"],[11272,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Size2D%3CT,+U2%3E"],[11273,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Size3D%3CT,+U2%3E"],[11274,"impl-Div%3CT%3E-for-Size3D%3CT,+U%3E"],[11275,"impl-Div%3CT%3E-for-Vector2D%3CT,+U%3E"],[11276,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Vector2D%3CT,+U2%3E"],[11277,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Vector3D%3CT,+U2%3E"],[11278,"impl-Div%3CT%3E-for-Vector3D%3CT,+U%3E"],[11279,"impl-DivAssign%3CT%3E-for-Box2D%3CT,+U%3E"],[11280,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Box2D%3CT,+U%3E"],[11281,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Box3D%3CT,+U%3E"],[11282,"impl-DivAssign%3CT%3E-for-Box3D%3CT,+U%3E"],[11284,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Point2D%3CT,+U%3E"],[11285,"impl-DivAssign%3CT%3E-for-Point2D%3CT,+U%3E"],[11286,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Point3D%3CT,+U%3E"],[11287,"impl-DivAssign%3CT%3E-for-Point3D%3CT,+U%3E"],[11288,"impl-DivAssign%3CT%3E-for-Rect%3CT,+U%3E"],[11289,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Rect%3CT,+U%3E"],[11290,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-SideOffsets2D%3CT,+U%3E"],[11291,"impl-DivAssign%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[11292,"impl-DivAssign%3CT%3E-for-Size2D%3CT,+U%3E"],[11293,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Size2D%3CT,+U%3E"],[11294,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Size3D%3CT,+U%3E"],[11295,"impl-DivAssign%3CT%3E-for-Size3D%3CT,+U%3E"],[11296,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[11297,"impl-DivAssign%3CT%3E-for-Vector2D%3CT,+U%3E"],[11298,"impl-DivAssign%3CT%3E-for-Vector3D%3CT,+U%3E"],[11299,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[11450,"impl-Point2D%3CT,+U%3E"],[11451,"impl-Floor-for-Point2D%3CT,+U%3E"],[11452,"impl-Floor-for-Point3D%3CT,+U%3E"],[11453,"impl-Point3D%3CT,+U%3E"],[11454,"impl-Size2D%3CT,+U%3E"],[11455,"impl-Floor-for-Size2D%3CT,+U%3E"],[11456,"impl-Floor-for-Size3D%3CT,+U%3E"],[11457,"impl-Size3D%3CT,+U%3E"],[11458,"impl-Floor-for-Vector2D%3CT,+U%3E"],[11459,"impl-Vector2D%3CT,+U%3E"],[11460,"impl-Floor-for-Vector3D%3CT,+U%3E"],[11461,"impl-Vector3D%3CT,+U%3E"],[11488,"impl-From%3CPoint3D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[11489,"impl-From%3CVector2D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[11491,"impl-From%3CVector3D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[11492,"impl-From%3CPoint2D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[11494,"impl-From%3C(T,+T)%3E-for-Point2D%3CT,+U%3E"],[11496,"impl-From%3C%5BT;+2%5D%3E-for-Point2D%3CT,+U%3E"],[11497,"impl-From%3C%5BT;+3%5D%3E-for-Point3D%3CT,+U%3E"],[11499,"impl-From%3C(T,+T,+T)%3E-for-Point3D%3CT,+U%3E"],[11506,"impl-From%3C(T,+T)%3E-for-Size2D%3CT,+U%3E"],[11508,"impl-From%3CVector2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[11509,"impl-From%3C%5BT;+2%5D%3E-for-Size2D%3CT,+U%3E"],[11510,"impl-From%3C%5BT;+3%5D%3E-for-Size3D%3CT,+U%3E"],[11512,"impl-From%3C(T,+T,+T)%3E-for-Size3D%3CT,+U%3E"],[11513,"impl-From%3CVector3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[11521,"impl-From%3C%5BT;+2%5D%3E-for-Vector2D%3CT,+U%3E"],[11522,"impl-From%3C(T,+T)%3E-for-Vector2D%3CT,+U%3E"],[11523,"impl-From%3CSize2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[11524,"impl-From%3C(T,+T,+T)%3E-for-Vector3D%3CT,+U%3E"],[11526,"impl-From%3C%5BT;+3%5D%3E-for-Vector3D%3CT,+U%3E"],[11527,"impl-From%3CRotation3D%3CT,+Src,+Dst%3E%3E-for-RigidTransform3D%3CT,+Src,+Dst%3E"],[11528,"impl-From%3CVector3D%3CT,+Dst%3E%3E-for-RigidTransform3D%3CT,+Src,+Dst%3E"],[11706,"impl-Into%3C%5BT;+2%5D%3E-for-Point2D%3CT,+U%3E"],[11707,"impl-Into%3C(T,+T)%3E-for-Point2D%3CT,+U%3E"],[11709,"impl-Into%3C%5BT;+3%5D%3E-for-Point3D%3CT,+U%3E"],[11710,"impl-Into%3C(T,+T,+T)%3E-for-Point3D%3CT,+U%3E"],[11716,"impl-Into%3C%5BT;+2%5D%3E-for-Size2D%3CT,+U%3E"],[11718,"impl-Into%3C(T,+T)%3E-for-Size2D%3CT,+U%3E"],[11719,"impl-Into%3C(T,+T,+T)%3E-for-Size3D%3CT,+U%3E"],[11721,"impl-Into%3C%5BT;+3%5D%3E-for-Size3D%3CT,+U%3E"],[11724,"impl-Into%3CTransform2D%3CT,+Src,+Dst%3E%3E-for-Translation2D%3CT,+Src,+Dst%3E"],[11725,"impl-Into%3CVector2D%3CT,+Src%3E%3E-for-Translation2D%3CT,+Src,+Dst%3E"],[11727,"impl-Into%3CTransform3D%3CT,+Src,+Dst%3E%3E-for-Translation3D%3CT,+Src,+Dst%3E"],[11729,"impl-Into%3CVector3D%3CT,+Src%3E%3E-for-Translation3D%3CT,+Src,+Dst%3E"],[11730,"impl-Into%3C(T,+T)%3E-for-Vector2D%3CT,+U%3E"],[11732,"impl-Into%3C%5BT;+2%5D%3E-for-Vector2D%3CT,+U%3E"],[11733,"impl-Into%3C(T,+T,+T)%3E-for-Vector3D%3CT,+U%3E"],[11735,"impl-Into%3C%5BT;+3%5D%3E-for-Vector3D%3CT,+U%3E"],[12004,"impl-Mul%3CT%3E-for-Box2D%3CT,+U%3E"],[12005,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Box2D%3CT,+U1%3E"],[12006,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Box3D%3CT,+U1%3E"],[12007,"impl-Mul%3CT%3E-for-Box3D%3CT,+U%3E"],[12008,"impl-Mul%3CScale%3CT,+Src,+Dst%3E%3E-for-Length%3CT,+Src%3E"],[12009,"impl-Mul%3CT%3E-for-Length%3CT,+U%3E"],[12010,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Point2D%3CT,+U1%3E"],[12011,"impl-Mul%3CT%3E-for-Point2D%3CT,+U%3E"],[12012,"impl-Mul%3CT%3E-for-Point3D%3CT,+U%3E"],[12013,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Point3D%3CT,+U1%3E"],[12014,"impl-Mul%3CT%3E-for-Rect%3CT,+U%3E"],[12015,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Rect%3CT,+U1%3E"],[12017,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-SideOffsets2D%3CT,+U1%3E"],[12018,"impl-Mul%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[12019,"impl-Mul%3CT%3E-for-Size2D%3CT,+U%3E"],[12020,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Size2D%3CT,+U1%3E"],[12021,"impl-Mul%3CT%3E-for-Size3D%3CT,+U%3E"],[12022,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Size3D%3CT,+U1%3E"],[12023,"impl-Mul%3CT%3E-for-Vector2D%3CT,+U%3E"],[12024,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Vector2D%3CT,+U1%3E"],[12025,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Vector3D%3CT,+U1%3E"],[12026,"impl-Mul%3CT%3E-for-Vector3D%3CT,+U%3E"],[12027,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Box2D%3CT,+U%3E"],[12028,"impl-MulAssign%3CT%3E-for-Box2D%3CT,+U%3E"],[12029,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Box3D%3CT,+U%3E"],[12030,"impl-MulAssign%3CT%3E-for-Box3D%3CT,+U%3E"],[12032,"impl-MulAssign%3CT%3E-for-Point2D%3CT,+U%3E"],[12033,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Point2D%3CT,+U%3E"],[12034,"impl-MulAssign%3CT%3E-for-Point3D%3CT,+U%3E"],[12035,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Point3D%3CT,+U%3E"],[12036,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Rect%3CT,+U%3E"],[12037,"impl-MulAssign%3CT%3E-for-Rect%3CT,+U%3E"],[12038,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-SideOffsets2D%3CT,+U%3E"],[12039,"impl-MulAssign%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[12040,"impl-MulAssign%3CT%3E-for-Size2D%3CT,+U%3E"],[12041,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Size2D%3CT,+U%3E"],[12042,"impl-MulAssign%3CT%3E-for-Size3D%3CT,+U%3E"],[12043,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Size3D%3CT,+U%3E"],[12044,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[12045,"impl-MulAssign%3CT%3E-for-Vector2D%3CT,+U%3E"],[12046,"impl-MulAssign%3CT%3E-for-Vector3D%3CT,+U%3E"],[12047,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[12142,"impl-Point2D%3CT,+U%3E"],[12143,"impl-Round-for-Point2D%3CT,+U%3E"],[12144,"impl-Point3D%3CT,+U%3E"],[12145,"impl-Round-for-Point3D%3CT,+U%3E"],[12147,"impl-Size2D%3CT,+U%3E"],[12148,"impl-Round-for-Size2D%3CT,+U%3E"],[12149,"impl-Size3D%3CT,+U%3E"],[12150,"impl-Round-for-Size3D%3CT,+U%3E"],[12151,"impl-Round-for-Vector2D%3CT,+U%3E"],[12152,"impl-Vector2D%3CT,+U%3E"],[12153,"impl-Round-for-Vector3D%3CT,+U%3E"],[12154,"impl-Vector3D%3CT,+U%3E"],[12195,"impl-Sub-for-Point2D%3CT,+U%3E"],[12196,"impl-Sub%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[12197,"impl-Sub%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[12198,"impl-Sub%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[12199,"impl-Sub-for-Point3D%3CT,+U%3E"],[12200,"impl-Sub%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[12210,"impl-SubAssign%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[12211,"impl-SubAssign%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[12212,"impl-SubAssign%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[12213,"impl-SubAssign%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[12221,"impl-Sum%3C%26Length%3CT,+U%3E%3E-for-Length%3CT,+U%3E"],[12222,"impl-Sum-for-Length%3CT,+U%3E"],[12223,"impl-Sum-for-Size2D%3CT,+U%3E"],[12224,"impl-Sum%3C%26Size2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[12225,"impl-Sum-for-Size3D%3CT,+U%3E"],[12226,"impl-Sum%3C%26Size3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[12227,"impl-Sum-for-Vector2D%3CT,+U%3E"],[12228,"impl-Sum%3C%26Vector2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[12229,"impl-Sum-for-Vector3D%3CT,+U%3E"],[12230,"impl-Sum%3C%26Vector3D%3CT,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[12401,"impl-Transformation%3CS%3E-for-Rotation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[12402,"impl-Rotation2D%3CT,+Src,+Dst%3E"],[12403,"impl-Transformation%3CS%3E-for-Scale%3CS,+UnknownUnit,+UnknownUnit%3E"],[12404,"impl-Scale%3CT,+Src,+Dst%3E"],[12405,"impl-Transform2D%3CT,+Src,+Dst%3E"],[12406,"impl-Transformation%3CS%3E-for-Transform2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[12407,"impl-Transformation%3CS%3E-for-Translation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[12408,"impl-Translation2D%3CT,+Src,+Dst%3E"],[12424,"impl-Transformation%3CS%3E-for-Rotation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[12425,"impl-Rotation2D%3CT,+Src,+Dst%3E"],[12426,"impl-Scale%3CT,+Src,+Dst%3E"],[12427,"impl-Transformation%3CS%3E-for-Scale%3CS,+UnknownUnit,+UnknownUnit%3E"],[12428,"impl-Transformation%3CS%3E-for-Transform2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[12429,"impl-Transform2D%3CT,+Src,+Dst%3E"],[12712,"impl-Zero-for-Point2D%3CT,+U%3E"],[12713,"impl-Point2D%3CT,+U%3E"],[12714,"impl-Zero-for-Point3D%3CT,+U%3E"],[12715,"impl-Point3D%3CT,+U%3E"],[12718,"impl-Zero-for-Size2D%3CT,+U%3E"],[12719,"impl-Size2D%3CT,+U%3E"],[12720,"impl-Zero-for-Size3D%3CT,+U%3E"],[12721,"impl-Size3D%3CT,+U%3E"],[12722,"impl-Vector2D%3CT,+U%3E"],[12723,"impl-Zero-for-Vector2D%3CT,+U%3E"],[12724,"impl-Zero-for-Vector3D%3CT,+U%3E"],[12725,"impl-Vector3D%3CT,+U%3E"],[13181,"impl-PathBuilder-for-BuilderWithAttributes"],[13182,"impl-BuilderWithAttributes"],[13196,"impl-BuilderWithAttributes"],[13197,"impl-Build-for-BuilderWithAttributes"],[13215,"impl-BuilderWithAttributes"],[13216,"impl-PathBuilder-for-BuilderWithAttributes"],[13243,"impl-PathBuilder-for-BuilderWithAttributes"],[13244,"impl-BuilderWithAttributes"],[13325,"impl-BuilderWithAttributes"],[13326,"impl-PathBuilder-for-BuilderWithAttributes"],[13334,"impl-PathBuilder-for-BuilderWithAttributes"],[13335,"impl-BuilderWithAttributes"],[13338,"impl-PathBuilder-for-BuilderWithAttributes"],[13339,"impl-BuilderWithAttributes"],[13341,"impl-PathBuilder-for-BuilderWithAttributes"],[13342,"impl-BuilderWithAttributes"],[13418,"impl-Builder%3C\'l%3E"],[13419,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13420,"impl-BuilderWithAttributes%3C\'l%3E"],[13421,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[13428,"impl-Builder%3C\'l%3E"],[13429,"impl-Build-for-Builder%3C\'l%3E"],[13430,"impl-Build-for-BuilderWithAttributes%3C\'l%3E"],[13431,"impl-BuilderWithAttributes%3C\'l%3E"],[13437,"impl-Builder%3C\'l%3E"],[13438,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13439,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[13440,"impl-BuilderWithAttributes%3C\'l%3E"],[13453,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13454,"impl-Builder%3C\'l%3E"],[13455,"impl-BuilderWithAttributes%3C\'l%3E"],[13456,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[13494,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13495,"impl-Builder%3C\'l%3E"],[13496,"impl-BuilderWithAttributes%3C\'l%3E"],[13497,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[13503,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13504,"impl-Builder%3C\'l%3E"],[13505,"impl-BuilderWithAttributes%3C\'l%3E"],[13506,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[13507,"impl-PathBuilder-for-Builder%3C\'l%3E"],[13508,"impl-Builder%3C\'l%3E"],[13509,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[13510,"impl-BuilderWithAttributes%3C\'l%3E"],[15494,"impl-Debug-for-Error"],[15495,"impl-Display-for-Error"],[16053,"impl-Scrollable-for-State"],[16054,"impl-State"],[16061,"impl-Scrollable-for-State"],[16062,"impl-State"],[17688,"impl-Flags-for-Backends"],[17689,"impl-Backends"],[17690,"impl-Flags-for-Features"],[17691,"impl-Features"],[17692,"impl-InstanceFlags"],[17693,"impl-Flags-for-InstanceFlags"],[17694,"impl-Flags-for-DownlevelFlags"],[17695,"impl-DownlevelFlags"],[17696,"impl-ShaderStages"],[17697,"impl-Flags-for-ShaderStages"],[17698,"impl-TextureFormatFeatureFlags"],[17699,"impl-Flags-for-TextureFormatFeatureFlags"],[17700,"impl-ColorWrites"],[17701,"impl-Flags-for-ColorWrites"],[17702,"impl-BufferUsages"],[17703,"impl-Flags-for-BufferUsages"],[17704,"impl-TextureUsages"],[17705,"impl-Flags-for-TextureUsages"],[17706,"impl-PipelineStatisticsTypes"],[17707,"impl-Flags-for-PipelineStatisticsTypes"],[18999,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[19000,"impl-RenderPass%3C\'a%3E"],[19001,"impl-RenderBundleEncoder%3C\'a%3E"],[19002,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[19003,"impl-RenderPass%3C\'a%3E"],[19004,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[19005,"impl-RenderBundleEncoder%3C\'a%3E"],[19006,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[19007,"impl-RenderPass%3C\'a%3E"],[19008,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[19009,"impl-RenderBundleEncoder%3C\'a%3E"],[19010,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[19011,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[19012,"impl-RenderPass%3C\'a%3E"],[19013,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[19014,"impl-RenderBundleEncoder%3C\'a%3E"],[19543,"impl-LowerHex-for-Backends"],[19544,"impl-Octal-for-Backends"],[19545,"impl-Debug-for-Backends"],[19546,"impl-UpperHex-for-Backends"],[19547,"impl-Binary-for-Backends"],[19549,"impl-Octal-for-Features"],[19550,"impl-Binary-for-Features"],[19551,"impl-Debug-for-Features"],[19552,"impl-LowerHex-for-Features"],[19553,"impl-UpperHex-for-Features"],[19554,"impl-Octal-for-InstanceFlags"],[19555,"impl-UpperHex-for-InstanceFlags"],[19556,"impl-Debug-for-InstanceFlags"],[19557,"impl-LowerHex-for-InstanceFlags"],[19558,"impl-Binary-for-InstanceFlags"],[19561,"impl-UpperHex-for-DownlevelFlags"],[19562,"impl-Binary-for-DownlevelFlags"],[19563,"impl-Debug-for-DownlevelFlags"],[19564,"impl-LowerHex-for-DownlevelFlags"],[19565,"impl-Octal-for-DownlevelFlags"],[19570,"impl-Binary-for-ShaderStages"],[19571,"impl-Debug-for-ShaderStages"],[19572,"impl-Octal-for-ShaderStages"],[19573,"impl-UpperHex-for-ShaderStages"],[19574,"impl-LowerHex-for-ShaderStages"],[19594,"impl-Debug-for-TextureFormatFeatureFlags"],[19595,"impl-Binary-for-TextureFormatFeatureFlags"],[19596,"impl-LowerHex-for-TextureFormatFeatureFlags"],[19597,"impl-Octal-for-TextureFormatFeatureFlags"],[19598,"impl-UpperHex-for-TextureFormatFeatureFlags"],[19632,"impl-UpperHex-for-ColorWrites"],[19633,"impl-Octal-for-ColorWrites"],[19634,"impl-Debug-for-ColorWrites"],[19635,"impl-Binary-for-ColorWrites"],[19636,"impl-LowerHex-for-ColorWrites"],[19659,"impl-Debug-for-SurfaceError"],[19660,"impl-Display-for-SurfaceError"],[19662,"impl-Debug-for-RequestDeviceError"],[19663,"impl-Display-for-RequestDeviceError"],[19664,"impl-Debug-for-CreateSurfaceError"],[19665,"impl-Display-for-CreateSurfaceError"],[19667,"impl-Debug-for-BufferAsyncError"],[19668,"impl-Display-for-BufferAsyncError"],[19674,"impl-Debug-for-Error"],[19675,"impl-Display-for-Error"],[19676,"impl-Debug-for-BufferUsages"],[19677,"impl-Binary-for-BufferUsages"],[19678,"impl-UpperHex-for-BufferUsages"],[19679,"impl-Octal-for-BufferUsages"],[19680,"impl-LowerHex-for-BufferUsages"],[19683,"impl-Debug-for-TextureUsages"],[19684,"impl-Binary-for-TextureUsages"],[19685,"impl-UpperHex-for-TextureUsages"],[19686,"impl-LowerHex-for-TextureUsages"],[19687,"impl-Octal-for-TextureUsages"],[19716,"impl-UpperHex-for-PipelineStatisticsTypes"],[19717,"impl-LowerHex-for-PipelineStatisticsTypes"],[19718,"impl-Binary-for-PipelineStatisticsTypes"],[19719,"impl-Debug-for-PipelineStatisticsTypes"],[19720,"impl-Octal-for-PipelineStatisticsTypes"],[20040,"impl-Flags-for-Backends"],[20041,"impl-Backends"],[20042,"impl-Features"],[20043,"impl-Flags-for-Features"],[20044,"impl-Flags-for-InstanceFlags"],[20045,"impl-InstanceFlags"],[20046,"impl-DownlevelFlags"],[20047,"impl-Flags-for-DownlevelFlags"],[20048,"impl-Flags-for-ShaderStages"],[20049,"impl-ShaderStages"],[20050,"impl-TextureFormatFeatureFlags"],[20051,"impl-Flags-for-TextureFormatFeatureFlags"],[20052,"impl-ColorWrites"],[20053,"impl-Flags-for-ColorWrites"],[20054,"impl-Flags-for-BufferUsages"],[20055,"impl-BufferUsages"],[20056,"impl-Flags-for-TextureUsages"],[20057,"impl-TextureUsages"],[20058,"impl-Flags-for-PipelineStatisticsTypes"],[20059,"impl-PipelineStatisticsTypes"],[21934,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[21935,"impl-RenderPass%3C\'a%3E"],[21937,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[21938,"impl-RenderBundleEncoder%3C\'a%3E"],[21941,"impl-RenderPass%3C\'a%3E"],[21942,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[21943,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[21944,"impl-RenderBundleEncoder%3C\'a%3E"],[21945,"impl-RenderPass%3C\'a%3E"],[21946,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[21948,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[21949,"impl-RenderBundleEncoder%3C\'a%3E"],[21950,"impl-RenderPass%3C\'a%3E"],[21951,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[21953,"impl-RenderBundleEncoder%3C\'a%3E"],[21954,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[21957,"impl-RenderEncoder%3C\'a%3E-for-RenderPass%3C\'a%3E"],[21958,"impl-RenderPass%3C\'a%3E"],[21959,"impl-RenderBundleEncoder%3C\'a%3E"],[21960,"impl-RenderEncoder%3C\'a%3E-for-RenderBundleEncoder%3C\'a%3E"],[23882,"impl-Display-for-BindGroupLayoutEntryError"],[23883,"impl-Debug-for-BindGroupLayoutEntryError"],[23884,"impl-Debug-for-CreateBindGroupLayoutError"],[23885,"impl-Display-for-CreateBindGroupLayoutError"],[23886,"impl-Display-for-CreateBindGroupError"],[23887,"impl-Debug-for-CreateBindGroupError"],[23888,"impl-Display-for-BindingZone"],[23889,"impl-Debug-for-BindingZone"],[23890,"impl-Display-for-BindingTypeMaxCountError"],[23891,"impl-Debug-for-BindingTypeMaxCountError"],[23897,"impl-Display-for-CreatePipelineLayoutError"],[23898,"impl-Debug-for-CreatePipelineLayoutError"],[23899,"impl-Display-for-PushConstantUploadError"],[23900,"impl-Debug-for-PushConstantUploadError"],[23905,"impl-Debug-for-BindError"],[23906,"impl-Display-for-BindError"],[23909,"impl-Display-for-GetBindGroupLayoutError"],[23910,"impl-Debug-for-GetBindGroupLayoutError"],[23911,"impl-Display-for-LateMinBufferBindingSizeMismatch"],[23912,"impl-Debug-for-LateMinBufferBindingSizeMismatch"],[23915,"impl-From%3CMissingFeatures%3E-for-BindGroupLayoutEntryError"],[23916,"impl-From%3CMissingDownlevelFlags%3E-for-BindGroupLayoutEntryError"],[23920,"impl-From%3CUsageConflict%3E-for-CreateBindGroupError"],[23921,"impl-From%3CMissingBufferUsageError%3E-for-CreateBindGroupError"],[23922,"impl-From%3CDeviceError%3E-for-CreateBindGroupError"],[23924,"impl-From%3CMissingTextureUsageError%3E-for-CreateBindGroupError"],[23932,"impl-From%3CMissingFeatures%3E-for-CreatePipelineLayoutError"],[23934,"impl-From%3CDeviceError%3E-for-CreatePipelineLayoutError"],[25378,"impl-Debug-for-CreateRenderBundleError"],[25379,"impl-Display-for-CreateRenderBundleError"],[25380,"impl-Display-for-ExecutionError"],[25381,"impl-Debug-for-ExecutionError"],[25383,"impl-Debug-for-RenderBundleError"],[25384,"impl-Display-for-RenderBundleError"],[25385,"impl-Display-for-ClearError"],[25386,"impl-Debug-for-ClearError"],[25389,"impl-Debug-for-DispatchError"],[25390,"impl-Display-for-DispatchError"],[25391,"impl-Debug-for-ComputePassErrorInner"],[25392,"impl-Display-for-ComputePassErrorInner"],[25393,"impl-Display-for-ComputePassError"],[25394,"impl-Debug-for-ComputePassError"],[25395,"impl-Display-for-DrawError"],[25396,"impl-Debug-for-DrawError"],[25397,"impl-Display-for-RenderCommandError"],[25398,"impl-Debug-for-RenderCommandError"],[25401,"impl-Debug-for-QueryError"],[25402,"impl-Display-for-QueryError"],[25403,"impl-Display-for-QueryUseError"],[25404,"impl-Debug-for-QueryUseError"],[25405,"impl-Display-for-ResolveError"],[25406,"impl-Debug-for-ResolveError"],[25415,"impl-Display-for-AttachmentErrorLocation"],[25416,"impl-Debug-for-AttachmentErrorLocation"],[25417,"impl-Debug-for-ColorAttachmentError"],[25418,"impl-Display-for-ColorAttachmentError"],[25419,"impl-Display-for-RenderPassErrorInner"],[25420,"impl-Debug-for-RenderPassErrorInner"],[25421,"impl-Display-for-RenderPassError"],[25422,"impl-Debug-for-RenderPassError"],[25424,"impl-Debug-for-TransferError"],[25425,"impl-Display-for-TransferError"],[25426,"impl-Display-for-CopyError"],[25427,"impl-Debug-for-CopyError"],[25429,"impl-Display-for-CommandEncoderError"],[25430,"impl-Debug-for-CommandEncoderError"],[25431,"impl-Display-for-PassErrorScope"],[25432,"impl-Debug-for-PassErrorScope"],[25461,"impl-From%3CMissingBufferUsageError%3E-for-ComputePassErrorInner"],[25462,"impl-From%3CPushConstantUploadError%3E-for-ComputePassErrorInner"],[25463,"impl-From%3CCommandEncoderError%3E-for-ComputePassErrorInner"],[25464,"impl-From%3CQueryUseError%3E-for-ComputePassErrorInner"],[25466,"impl-From%3CDispatchError%3E-for-ComputePassErrorInner"],[25467,"impl-From%3CMissingDownlevelFlags%3E-for-ComputePassErrorInner"],[25468,"impl-From%3CDeviceError%3E-for-ComputePassErrorInner"],[25469,"impl-From%3CUsageConflict%3E-for-ComputePassErrorInner"],[25470,"impl-From%3CBindError%3E-for-ComputePassErrorInner"],[25471,"impl-From%3CMissingFeatures%3E-for-ComputePassErrorInner"],[25476,"impl-From%3CUsageConflict%3E-for-RenderCommandError"],[25477,"impl-From%3CRenderPassCompatibilityError%3E-for-RenderCommandError"],[25478,"impl-From%3CPushConstantUploadError%3E-for-RenderCommandError"],[25479,"impl-From%3CMissingBufferUsageError%3E-for-RenderCommandError"],[25480,"impl-From%3CMissingTextureUsageError%3E-for-RenderCommandError"],[25484,"impl-From%3CQueryUseError%3E-for-QueryError"],[25485,"impl-From%3CDeviceError%3E-for-QueryError"],[25486,"impl-From%3CResolveError%3E-for-QueryError"],[25488,"impl-From%3CCommandEncoderError%3E-for-QueryError"],[25501,"impl-From%3CMissingBufferUsageError%3E-for-RenderPassErrorInner"],[25502,"impl-From%3CMissingFeatures%3E-for-RenderPassErrorInner"],[25503,"impl-From%3CCommandEncoderError%3E-for-RenderPassErrorInner"],[25504,"impl-From%3CRenderPassCompatibilityError%3E-for-RenderPassErrorInner"],[25505,"impl-From%3CQueryUseError%3E-for-RenderPassErrorInner"],[25507,"impl-From%3CColorAttachmentError%3E-for-RenderPassErrorInner"],[25508,"impl-From%3CRenderCommandError%3E-for-RenderPassErrorInner"],[25509,"impl-From%3CMissingTextureUsageError%3E-for-RenderPassErrorInner"],[25510,"impl-From%3CUsageConflict%3E-for-RenderPassErrorInner"],[25511,"impl-From%3CDeviceError%3E-for-RenderPassErrorInner"],[25512,"impl-From%3CBindError%3E-for-RenderPassErrorInner"],[25513,"impl-From%3CMissingDownlevelFlags%3E-for-RenderPassErrorInner"],[25514,"impl-From%3CDrawError%3E-for-RenderPassErrorInner"],[25518,"impl-From%3CClearError%3E-for-TransferError"],[25519,"impl-From%3CMissingDownlevelFlags%3E-for-TransferError"],[25520,"impl-From%3CCommandEncoderError%3E-for-CopyError"],[25521,"impl-From%3CDeviceError%3E-for-CopyError"],[25522,"impl-From%3CTransferError%3E-for-CopyError"],[26894,"impl-Debug-for-WaitIdleError"],[26895,"impl-Display-for-WaitIdleError"],[26898,"impl-Debug-for-RenderPassCompatibilityError"],[26899,"impl-Display-for-RenderPassCompatibilityError"],[26900,"impl-Debug-for-InvalidDevice"],[26901,"impl-Display-for-InvalidDevice"],[26902,"impl-Debug-for-DeviceError"],[26903,"impl-Display-for-DeviceError"],[26904,"impl-Debug-for-MissingFeatures"],[26905,"impl-Display-for-MissingFeatures"],[26906,"impl-Display-for-MissingDownlevelFlags"],[26907,"impl-Debug-for-MissingDownlevelFlags"],[27451,"impl-Debug-for-InvalidQueue"],[27452,"impl-Display-for-InvalidQueue"],[27453,"impl-Display-for-QueueWriteError"],[27454,"impl-Debug-for-QueueWriteError"],[27455,"impl-Debug-for-QueueSubmitError"],[27456,"impl-Display-for-QueueSubmitError"],[27463,"impl-From%3CTransferError%3E-for-QueueWriteError"],[27465,"impl-From%3CClearError%3E-for-QueueWriteError"],[27466,"impl-From%3CDeviceError%3E-for-QueueWriteError"],[27467,"impl-From%3CDeviceError%3E-for-QueueSubmitError"],[27469,"impl-From%3CBufferAccessError%3E-for-QueueSubmitError"],[27657,"impl-Debug-for-CreateDeviceError"],[27658,"impl-Display-for-CreateDeviceError"],[27719,"impl-Display-for-ContextError"],[27720,"impl-Debug-for-ContextError"],[28466,"impl-Display-for-FailedLimit"],[28467,"impl-Debug-for-FailedLimit"],[28468,"impl-Display-for-IsSurfaceSupportedError"],[28469,"impl-Debug-for-IsSurfaceSupportedError"],[28470,"impl-Display-for-GetSurfaceSupportError"],[28471,"impl-Debug-for-GetSurfaceSupportError"],[28472,"impl-Display-for-RequestDeviceError"],[28473,"impl-Debug-for-RequestDeviceError"],[28474,"impl-Display-for-InvalidAdapter"],[28475,"impl-Debug-for-InvalidAdapter"],[28476,"impl-Display-for-RequestAdapterError"],[28477,"impl-Debug-for-RequestAdapterError"],[29413,"impl-StorageAccess"],[29414,"impl-Flags-for-StorageAccess"],[29415,"impl-Barrier"],[29416,"impl-Flags-for-Barrier"],[30170,"impl-Display-for-WithSpan%3CE%3E"],[30171,"impl-Debug-for-WithSpan%3CE%3E"],[30185,"impl-Debug-for-StorageAccess"],[30186,"impl-UpperHex-for-StorageAccess"],[30187,"impl-LowerHex-for-StorageAccess"],[30188,"impl-Octal-for-StorageAccess"],[30189,"impl-Binary-for-StorageAccess"],[30211,"impl-Debug-for-Barrier"],[30212,"impl-Binary-for-Barrier"],[30213,"impl-Octal-for-Barrier"],[30214,"impl-LowerHex-for-Barrier"],[30215,"impl-UpperHex-for-Barrier"],[30345,"impl-StorageAccess"],[30346,"impl-Flags-for-StorageAccess"],[30347,"impl-Barrier"],[30348,"impl-Flags-for-Barrier"],[30460,"impl-Index%3CRange%3CT%3E%3E-for-Arena%3CT%3E"],[30461,"impl-Index%3CHandle%3CT%3E%3E-for-Arena%3CT%3E"],[31792,"impl-Flags-for-RayFlag"],[31793,"impl-RayFlag"],[31815,"impl-UpperHex-for-RayFlag"],[31816,"impl-Debug-for-RayFlag"],[31817,"impl-Binary-for-RayFlag"],[31818,"impl-Octal-for-RayFlag"],[31819,"impl-LowerHex-for-RayFlag"],[31823,"impl-Flags-for-RayFlag"],[31824,"impl-RayFlag"],[31987,"impl-Flags-for-Features"],[31988,"impl-Features"],[31989,"impl-Flags-for-WriterFlags"],[31990,"impl-WriterFlags"],[32111,"impl-Octal-for-Features"],[32112,"impl-UpperHex-for-Features"],[32113,"impl-LowerHex-for-Features"],[32114,"impl-Debug-for-Features"],[32115,"impl-Binary-for-Features"],[32116,"impl-Debug-for-Version"],[32117,"impl-Display-for-Version"],[32118,"impl-UpperHex-for-WriterFlags"],[32119,"impl-LowerHex-for-WriterFlags"],[32120,"impl-Debug-for-WriterFlags"],[32121,"impl-Octal-for-WriterFlags"],[32122,"impl-Binary-for-WriterFlags"],[32129,"impl-Display-for-Error"],[32130,"impl-Debug-for-Error"],[32156,"impl-Flags-for-Features"],[32157,"impl-Features"],[32158,"impl-Flags-for-WriterFlags"],[32159,"impl-WriterFlags"],[32560,"impl-Debug-for-EntryPointError"],[32561,"impl-Display-for-EntryPointError"],[32563,"impl-Display-for-Error"],[32564,"impl-Debug-for-Error"],[32919,"impl-Display-for-Error"],[32920,"impl-Debug-for-Error"],[32921,"impl-Display-for-EntryPointError"],[32922,"impl-Debug-for-EntryPointError"],[33770,"impl-ImageTypeFlags"],[33771,"impl-Flags-for-ImageTypeFlags"],[33772,"impl-Flags-for-WriterFlags"],[33773,"impl-WriterFlags"],[33912,"impl-Display-for-Error"],[33913,"impl-Debug-for-Error"],[33915,"impl-Debug-for-ImageTypeFlags"],[33916,"impl-LowerHex-for-ImageTypeFlags"],[33917,"impl-Binary-for-ImageTypeFlags"],[33918,"impl-UpperHex-for-ImageTypeFlags"],[33919,"impl-Octal-for-ImageTypeFlags"],[33920,"impl-Debug-for-WriterFlags"],[33921,"impl-LowerHex-for-WriterFlags"],[33922,"impl-Octal-for-WriterFlags"],[33923,"impl-Binary-for-WriterFlags"],[33924,"impl-UpperHex-for-WriterFlags"],[33951,"impl-ImageTypeFlags"],[33952,"impl-Flags-for-ImageTypeFlags"],[33953,"impl-Flags-for-WriterFlags"],[33954,"impl-WriterFlags"],[34315,"impl-Debug-for-ParseError"],[34316,"impl-Display-for-ParseError"],[34763,"impl-Display-for-ConstantEvaluatorError"],[34764,"impl-Debug-for-ConstantEvaluatorError"],[34768,"impl-Debug-for-IndexableLengthError"],[34769,"impl-Display-for-IndexableLengthError"],[34771,"impl-Display-for-Alignment"],[34772,"impl-Debug-for-Alignment"],[34775,"impl-Debug-for-LayoutErrorInner"],[34776,"impl-Display-for-LayoutErrorInner"],[34777,"impl-Display-for-LayoutError"],[34778,"impl-Debug-for-LayoutError"],[34781,"impl-Display-for-ResolveError"],[34782,"impl-Debug-for-ResolveError"],[35039,"impl-Mul%3Cu32%3E-for-Alignment"],[35040,"impl-Mul-for-Alignment"],[35697,"impl-UniformityRequirements"],[35698,"impl-Flags-for-UniformityRequirements"],[35699,"impl-GlobalUse"],[35700,"impl-Flags-for-GlobalUse"],[35701,"impl-TypeFlags"],[35702,"impl-Flags-for-TypeFlags"],[35703,"impl-Flags-for-ValidationFlags"],[35704,"impl-ValidationFlags"],[35705,"impl-Capabilities"],[35706,"impl-Flags-for-Capabilities"],[35707,"impl-ShaderStages"],[35708,"impl-Flags-for-ShaderStages"],[36000,"impl-Debug-for-UniformityRequirements"],[36001,"impl-UpperHex-for-UniformityRequirements"],[36002,"impl-Octal-for-UniformityRequirements"],[36003,"impl-LowerHex-for-UniformityRequirements"],[36004,"impl-Binary-for-UniformityRequirements"],[36006,"impl-UpperHex-for-GlobalUse"],[36007,"impl-Octal-for-GlobalUse"],[36008,"impl-LowerHex-for-GlobalUse"],[36009,"impl-Debug-for-GlobalUse"],[36010,"impl-Binary-for-GlobalUse"],[36013,"impl-Display-for-ComposeError"],[36014,"impl-Debug-for-ComposeError"],[36015,"impl-Display-for-ExpressionError"],[36016,"impl-Debug-for-ExpressionError"],[36017,"impl-Display-for-ConstExpressionError"],[36018,"impl-Debug-for-ConstExpressionError"],[36019,"impl-Debug-for-LiteralError"],[36020,"impl-Display-for-LiteralError"],[36021,"impl-Debug-for-CallError"],[36022,"impl-Display-for-CallError"],[36023,"impl-Display-for-LocalVariableError"],[36024,"impl-Debug-for-LocalVariableError"],[36025,"impl-Debug-for-FunctionError"],[36026,"impl-Display-for-FunctionError"],[36027,"impl-Debug-for-GlobalVariableError"],[36028,"impl-Display-for-GlobalVariableError"],[36029,"impl-Debug-for-VaryingError"],[36030,"impl-Display-for-VaryingError"],[36031,"impl-Debug-for-EntryPointError"],[36032,"impl-Display-for-EntryPointError"],[36033,"impl-UpperHex-for-TypeFlags"],[36034,"impl-Octal-for-TypeFlags"],[36035,"impl-LowerHex-for-TypeFlags"],[36036,"impl-Binary-for-TypeFlags"],[36037,"impl-Debug-for-TypeFlags"],[36038,"impl-Display-for-Disalignment"],[36039,"impl-Debug-for-Disalignment"],[36040,"impl-Display-for-TypeError"],[36041,"impl-Debug-for-TypeError"],[36042,"impl-LowerHex-for-ValidationFlags"],[36043,"impl-UpperHex-for-ValidationFlags"],[36044,"impl-Octal-for-ValidationFlags"],[36045,"impl-Binary-for-ValidationFlags"],[36046,"impl-Debug-for-ValidationFlags"],[36047,"impl-LowerHex-for-Capabilities"],[36048,"impl-Debug-for-Capabilities"],[36049,"impl-UpperHex-for-Capabilities"],[36050,"impl-Octal-for-Capabilities"],[36051,"impl-Binary-for-Capabilities"],[36052,"impl-LowerHex-for-ShaderStages"],[36053,"impl-Binary-for-ShaderStages"],[36054,"impl-Octal-for-ShaderStages"],[36055,"impl-UpperHex-for-ShaderStages"],[36056,"impl-Debug-for-ShaderStages"],[36059,"impl-Debug-for-ConstantError"],[36060,"impl-Display-for-ConstantError"],[36061,"impl-Display-for-ValidationError"],[36062,"impl-Debug-for-ValidationError"],[36069,"impl-From%3CIndexableLengthError%3E-for-ExpressionError"],[36070,"impl-From%3CComposeError%3E-for-ExpressionError"],[36071,"impl-From%3CResolveError%3E-for-ExpressionError"],[36072,"impl-From%3CLiteralError%3E-for-ExpressionError"],[36074,"impl-From%3CLiteralError%3E-for-ConstExpressionError"],[36075,"impl-From%3CResolveError%3E-for-ConstExpressionError"],[36077,"impl-From%3CWidthError%3E-for-ConstExpressionError"],[36078,"impl-From%3CComposeError%3E-for-ConstExpressionError"],[36087,"impl-From%3CFunctionError%3E-for-EntryPointError"],[36089,"impl-From%3CVaryingError%3E-for-EntryPointError"],[36100,"impl-From%3CLayoutError%3E-for-ValidationError"],[36101,"impl-From%3CBadHandle%3E-for-ValidationError"],[36102,"impl-From%3CFwdDepError%3E-for-ValidationError"],[36104,"impl-From%3CBadRangeError%3E-for-ValidationError"],[36105,"impl-From%3CInvalidHandleError%3E-for-ValidationError"],[36137,"impl-UniformityRequirements"],[36138,"impl-Flags-for-UniformityRequirements"],[36139,"impl-GlobalUse"],[36140,"impl-Flags-for-GlobalUse"],[36141,"impl-Flags-for-TypeFlags"],[36142,"impl-TypeFlags"],[36143,"impl-Flags-for-ValidationFlags"],[36144,"impl-ValidationFlags"],[36145,"impl-Flags-for-Capabilities"],[36146,"impl-Capabilities"],[36147,"impl-Flags-for-ShaderStages"],[36148,"impl-ShaderStages"],[36194,"impl-Index%3CHandle%3CExpression%3E%3E-for-FunctionInfo"],[36195,"impl-Index%3CHandle%3CGlobalVariable%3E%3E-for-FunctionInfo"],[36196,"impl-Index%3CHandle%3CExpression%3E%3E-for-ModuleInfo"],[36197,"impl-Index%3CHandle%3CFunction%3E%3E-for-ModuleInfo"],[36198,"impl-Index%3CHandle%3CType%3E%3E-for-ModuleInfo"],[37054,"impl-Flags-for-PipelineFlags"],[37055,"impl-PipelineFlags"],[37249,"impl-Display-for-ShaderError%3CParseError%3E"],[37250,"impl-Display-for-ShaderError%3CWithSpan%3CValidationError%3E%3E"],[37251,"impl-Debug-for-ShaderError%3CE%3E"],[37252,"impl-Debug-for-CreateShaderModuleError"],[37253,"impl-Display-for-CreateShaderModuleError"],[37255,"impl-Display-for-ImplicitLayoutError"],[37256,"impl-Debug-for-ImplicitLayoutError"],[37258,"impl-Display-for-CreateComputePipelineError"],[37259,"impl-Debug-for-CreateComputePipelineError"],[37265,"impl-Display-for-ColorStateError"],[37266,"impl-Debug-for-ColorStateError"],[37267,"impl-Debug-for-DepthStencilStateError"],[37268,"impl-Display-for-DepthStencilStateError"],[37269,"impl-Display-for-CreateRenderPipelineError"],[37270,"impl-Debug-for-CreateRenderPipelineError"],[37271,"impl-Debug-for-PipelineFlags"],[37272,"impl-Binary-for-PipelineFlags"],[37273,"impl-Octal-for-PipelineFlags"],[37274,"impl-UpperHex-for-PipelineFlags"],[37275,"impl-LowerHex-for-PipelineFlags"],[37284,"impl-From%3CShaderError%3CParseError%3E%3E-for-CreateShaderModuleError"],[37285,"impl-From%3CDeviceError%3E-for-CreateShaderModuleError"],[37286,"impl-From%3CMissingFeatures%3E-for-CreateShaderModuleError"],[37287,"impl-From%3CShaderError%3CWithSpan%3CValidationError%3E%3E%3E-for-CreateShaderModuleError"],[37290,"impl-From%3CCreatePipelineLayoutError%3E-for-ImplicitLayoutError"],[37291,"impl-From%3CCreateBindGroupLayoutError%3E-for-ImplicitLayoutError"],[37293,"impl-From%3CDeviceError%3E-for-CreateComputePipelineError"],[37294,"impl-From%3CImplicitLayoutError%3E-for-CreateComputePipelineError"],[37296,"impl-From%3CMissingDownlevelFlags%3E-for-CreateComputePipelineError"],[37297,"impl-From%3CStageError%3E-for-CreateComputePipelineError"],[37306,"impl-From%3CColorAttachmentError%3E-for-CreateRenderPipelineError"],[37307,"impl-From%3CDepthStencilStateError%3E-for-CreateRenderPipelineError"],[37308,"impl-From%3CMissingDownlevelFlags%3E-for-CreateRenderPipelineError"],[37309,"impl-From%3CMissingFeatures%3E-for-CreateRenderPipelineError"],[37310,"impl-From%3CDeviceError%3E-for-CreateRenderPipelineError"],[37311,"impl-From%3CImplicitLayoutError%3E-for-CreateRenderPipelineError"],[37336,"impl-PipelineFlags"],[37337,"impl-Flags-for-PipelineFlags"],[37863,"impl-Display-for-SurfaceError"],[37864,"impl-Debug-for-SurfaceError"],[37865,"impl-Debug-for-ConfigureSurfaceError"],[37866,"impl-Display-for-ConfigureSurfaceError"],[37871,"impl-From%3CWaitIdleError%3E-for-ConfigureSurfaceError"],[37872,"impl-From%3CDeviceError%3E-for-ConfigureSurfaceError"],[37873,"impl-From%3CMissingDownlevelFlags%3E-for-ConfigureSurfaceError"],[38589,"impl-Debug-for-BufferAccessError"],[38590,"impl-Display-for-BufferAccessError"],[38592,"impl-Debug-for-CreateBufferError"],[38593,"impl-Display-for-CreateBufferError"],[38600,"impl-Display-for-TextureDimensionError"],[38601,"impl-Debug-for-TextureDimensionError"],[38602,"impl-Display-for-CreateTextureError"],[38603,"impl-Debug-for-CreateTextureError"],[38605,"impl-Display-for-TextureViewNotRenderableReason"],[38606,"impl-Debug-for-TextureViewNotRenderableReason"],[38608,"impl-Debug-for-CreateTextureViewError"],[38609,"impl-Display-for-CreateTextureViewError"],[38610,"impl-Display-for-TextureViewDestroyError"],[38611,"impl-Debug-for-TextureViewDestroyError"],[38615,"impl-Debug-for-CreateSamplerError"],[38616,"impl-Display-for-CreateSamplerError"],[38617,"impl-Debug-for-CreateQuerySetError"],[38618,"impl-Display-for-CreateQuerySetError"],[38620,"impl-Debug-for-DestroyError"],[38621,"impl-Display-for-DestroyError"],[38629,"impl-From%3CMissingBufferUsageError%3E-for-BufferAccessError"],[38630,"impl-From%3CDeviceError%3E-for-BufferAccessError"],[38633,"impl-From%3CDeviceError%3E-for-CreateBufferError"],[38634,"impl-From%3CBufferAccessError%3E-for-CreateBufferError"],[38636,"impl-From%3CMissingDownlevelFlags%3E-for-CreateBufferError"],[38645,"impl-From%3CMissingDownlevelFlags%3E-for-CreateTextureError"],[38646,"impl-From%3CCreateTextureViewError%3E-for-CreateTextureError"],[38647,"impl-From%3CTextureDimensionError%3E-for-CreateTextureError"],[38648,"impl-From%3CDeviceError%3E-for-CreateTextureError"],[38657,"impl-From%3CDeviceError%3E-for-CreateSamplerError"],[38659,"impl-From%3CMissingFeatures%3E-for-CreateSamplerError"],[38660,"impl-From%3CMissingFeatures%3E-for-CreateQuerySetError"],[38661,"impl-From%3CDeviceError%3E-for-CreateQuerySetError"],[39529,"impl-Display-for-NumericType"],[39530,"impl-Debug-for-NumericType"],[39531,"impl-Display-for-InterfaceVar"],[39532,"impl-Debug-for-InterfaceVar"],[39534,"impl-Debug-for-MissingBufferUsageError"],[39535,"impl-Display-for-MissingBufferUsageError"],[39536,"impl-Display-for-MissingTextureUsageError"],[39537,"impl-Debug-for-MissingTextureUsageError"],[39538,"impl-Debug-for-BindingError"],[39539,"impl-Display-for-BindingError"],[39540,"impl-Display-for-FilteringError"],[39541,"impl-Debug-for-FilteringError"],[39542,"impl-Debug-for-InputError"],[39543,"impl-Display-for-InputError"],[39544,"impl-Display-for-StageError"],[39545,"impl-Debug-for-StageError"],[40447,"impl-Flags-for-PipelineLayoutFlags"],[40448,"impl-PipelineLayoutFlags"],[40449,"impl-BindGroupLayoutFlags"],[40450,"impl-Flags-for-BindGroupLayoutFlags"],[40451,"impl-TextureFormatCapabilities"],[40452,"impl-Flags-for-TextureFormatCapabilities"],[40453,"impl-FormatAspects"],[40454,"impl-Flags-for-FormatAspects"],[40455,"impl-Flags-for-MemoryFlags"],[40456,"impl-MemoryFlags"],[40457,"impl-Flags-for-AccelerationStructureBuildFlags"],[40458,"impl-AccelerationStructureBuildFlags"],[40459,"impl-AttachmentOps"],[40460,"impl-Flags-for-AttachmentOps"],[40461,"impl-Flags-for-AccelerationStructureGeometryFlags"],[40462,"impl-AccelerationStructureGeometryFlags"],[40463,"impl-Flags-for-BufferUses"],[40464,"impl-BufferUses"],[40465,"impl-Flags-for-TextureUses"],[40466,"impl-TextureUses"],[40467,"impl-AccelerationStructureUses"],[40468,"impl-Flags-for-AccelerationStructureUses"],[41409,"impl-Debug-for-DeviceError"],[41410,"impl-Display-for-DeviceError"],[41411,"impl-Debug-for-ShaderError"],[41412,"impl-Display-for-ShaderError"],[41413,"impl-Debug-for-PipelineError"],[41414,"impl-Display-for-PipelineError"],[41415,"impl-Debug-for-SurfaceError"],[41416,"impl-Display-for-SurfaceError"],[41417,"impl-Display-for-InstanceError"],[41418,"impl-Debug-for-InstanceError"],[41419,"impl-UpperHex-for-PipelineLayoutFlags"],[41420,"impl-Octal-for-PipelineLayoutFlags"],[41421,"impl-Binary-for-PipelineLayoutFlags"],[41422,"impl-LowerHex-for-PipelineLayoutFlags"],[41423,"impl-Debug-for-PipelineLayoutFlags"],[41424,"impl-UpperHex-for-BindGroupLayoutFlags"],[41425,"impl-Octal-for-BindGroupLayoutFlags"],[41426,"impl-Binary-for-BindGroupLayoutFlags"],[41427,"impl-LowerHex-for-BindGroupLayoutFlags"],[41428,"impl-Debug-for-BindGroupLayoutFlags"],[41429,"impl-UpperHex-for-TextureFormatCapabilities"],[41430,"impl-Debug-for-TextureFormatCapabilities"],[41431,"impl-LowerHex-for-TextureFormatCapabilities"],[41432,"impl-Octal-for-TextureFormatCapabilities"],[41433,"impl-Binary-for-TextureFormatCapabilities"],[41434,"impl-Octal-for-FormatAspects"],[41435,"impl-Binary-for-FormatAspects"],[41436,"impl-LowerHex-for-FormatAspects"],[41437,"impl-UpperHex-for-FormatAspects"],[41438,"impl-Debug-for-FormatAspects"],[41439,"impl-Binary-for-MemoryFlags"],[41440,"impl-Debug-for-MemoryFlags"],[41441,"impl-Octal-for-MemoryFlags"],[41442,"impl-UpperHex-for-MemoryFlags"],[41443,"impl-LowerHex-for-MemoryFlags"],[41444,"impl-Debug-for-AccelerationStructureBuildFlags"],[41445,"impl-Binary-for-AccelerationStructureBuildFlags"],[41446,"impl-Octal-for-AccelerationStructureBuildFlags"],[41447,"impl-LowerHex-for-AccelerationStructureBuildFlags"],[41448,"impl-UpperHex-for-AccelerationStructureBuildFlags"],[41449,"impl-Octal-for-AttachmentOps"],[41450,"impl-Debug-for-AttachmentOps"],[41451,"impl-UpperHex-for-AttachmentOps"],[41452,"impl-Binary-for-AttachmentOps"],[41453,"impl-LowerHex-for-AttachmentOps"],[41454,"impl-LowerHex-for-AccelerationStructureGeometryFlags"],[41455,"impl-Debug-for-AccelerationStructureGeometryFlags"],[41456,"impl-Octal-for-AccelerationStructureGeometryFlags"],[41457,"impl-UpperHex-for-AccelerationStructureGeometryFlags"],[41458,"impl-Binary-for-AccelerationStructureGeometryFlags"],[41459,"impl-Debug-for-BufferUses"],[41460,"impl-UpperHex-for-BufferUses"],[41461,"impl-Binary-for-BufferUses"],[41462,"impl-LowerHex-for-BufferUses"],[41463,"impl-Octal-for-BufferUses"],[41464,"impl-Debug-for-TextureUses"],[41465,"impl-Octal-for-TextureUses"],[41466,"impl-Binary-for-TextureUses"],[41467,"impl-UpperHex-for-TextureUses"],[41468,"impl-LowerHex-for-TextureUses"],[41521,"impl-LowerHex-for-AccelerationStructureUses"],[41522,"impl-UpperHex-for-AccelerationStructureUses"],[41523,"impl-Binary-for-AccelerationStructureUses"],[41524,"impl-Debug-for-AccelerationStructureUses"],[41525,"impl-Octal-for-AccelerationStructureUses"],[41538,"impl-From%3CAllocationError%3E-for-DeviceError"],[41539,"impl-From%3CAllocationError%3E-for-DeviceError"],[41541,"impl-From%3CResult%3E-for-DeviceError"],[41542,"impl-From%3CMapError%3E-for-DeviceError"],[41699,"impl-Flags-for-PipelineLayoutFlags"],[41700,"impl-PipelineLayoutFlags"],[41701,"impl-BindGroupLayoutFlags"],[41702,"impl-Flags-for-BindGroupLayoutFlags"],[41703,"impl-Flags-for-TextureFormatCapabilities"],[41704,"impl-TextureFormatCapabilities"],[41705,"impl-FormatAspects"],[41706,"impl-Flags-for-FormatAspects"],[41707,"impl-MemoryFlags"],[41708,"impl-Flags-for-MemoryFlags"],[41709,"impl-AccelerationStructureBuildFlags"],[41710,"impl-Flags-for-AccelerationStructureBuildFlags"],[41711,"impl-Flags-for-AttachmentOps"],[41712,"impl-AttachmentOps"],[41713,"impl-AccelerationStructureGeometryFlags"],[41714,"impl-Flags-for-AccelerationStructureGeometryFlags"],[41715,"impl-Flags-for-BufferUses"],[41716,"impl-BufferUses"],[41717,"impl-TextureUses"],[41718,"impl-Flags-for-TextureUses"],[41719,"impl-AccelerationStructureUses"],[41720,"impl-Flags-for-AccelerationStructureUses"],[44816,"impl-Workarounds"],[44817,"impl-Flags-for-Workarounds"],[45085,"impl-Octal-for-Workarounds"],[45086,"impl-Binary-for-Workarounds"],[45087,"impl-LowerHex-for-Workarounds"],[45088,"impl-Debug-for-Workarounds"],[45089,"impl-UpperHex-for-Workarounds"],[45157,"impl-Flags-for-Workarounds"],[45158,"impl-Workarounds"],[46395,"impl-Display-for-HandleError"],[46396,"impl-Debug-for-HandleError"],[46426,"impl-From%3CHaikuWindowHandle%3E-for-RawWindowHandle"],[46427,"impl-From%3CWaylandWindowHandle%3E-for-RawWindowHandle"],[46428,"impl-From%3CWinRtWindowHandle%3E-for-RawWindowHandle"],[46429,"impl-From%3CWebOffscreenCanvasWindowHandle%3E-for-RawWindowHandle"],[46430,"impl-From%3CWindowHandle%3C\'_%3E%3E-for-RawWindowHandle"],[46431,"impl-From%3CWebWindowHandle%3E-for-RawWindowHandle"],[46432,"impl-From%3CAndroidNdkWindowHandle%3E-for-RawWindowHandle"],[46433,"impl-From%3COrbitalWindowHandle%3E-for-RawWindowHandle"],[46434,"impl-From%3CWebCanvasWindowHandle%3E-for-RawWindowHandle"],[46435,"impl-From%3CDrmWindowHandle%3E-for-RawWindowHandle"],[46436,"impl-From%3CXlibWindowHandle%3E-for-RawWindowHandle"],[46437,"impl-From%3CXcbWindowHandle%3E-for-RawWindowHandle"],[46439,"impl-From%3CUiKitWindowHandle%3E-for-RawWindowHandle"],[46440,"impl-From%3CWin32WindowHandle%3E-for-RawWindowHandle"],[46441,"impl-From%3CAppKitWindowHandle%3E-for-RawWindowHandle"],[46442,"impl-From%3CGbmWindowHandle%3E-for-RawWindowHandle"],[46443,"impl-From%3CWindowsDisplayHandle%3E-for-RawDisplayHandle"],[46444,"impl-From%3CAppKitDisplayHandle%3E-for-RawDisplayHandle"],[46445,"impl-From%3CAndroidDisplayHandle%3E-for-RawDisplayHandle"],[46446,"impl-From%3CHaikuDisplayHandle%3E-for-RawDisplayHandle"],[46447,"impl-From%3CGbmDisplayHandle%3E-for-RawDisplayHandle"],[46448,"impl-From%3CDrmDisplayHandle%3E-for-RawDisplayHandle"],[46449,"impl-From%3CXlibDisplayHandle%3E-for-RawDisplayHandle"],[46450,"impl-From%3CUiKitDisplayHandle%3E-for-RawDisplayHandle"],[46452,"impl-From%3COrbitalDisplayHandle%3E-for-RawDisplayHandle"],[46453,"impl-From%3CWaylandDisplayHandle%3E-for-RawDisplayHandle"],[46454,"impl-From%3CDisplayHandle%3C\'_%3E%3E-for-RawDisplayHandle"],[46455,"impl-From%3CXcbDisplayHandle%3E-for-RawDisplayHandle"],[46456,"impl-From%3CWebDisplayHandle%3E-for-RawDisplayHandle"],[47759,"impl-From%3CPixels%3E-for-LineHeight"],[47760,"impl-From%3Cf32%3E-for-LineHeight"],[48209,"impl-Debug-for-Value"],[48210,"impl-Display-for-Value"],[48217,"impl-Focusable-for-State%3CP%3E"],[48218,"impl-State%3CP%3E"],[48312,"impl-Focusable-for-State%3CP%3E"],[48313,"impl-State%3CP%3E"],[48318,"impl-State%3CP%3E"],[48319,"impl-TextInput-for-State%3CP%3E"],[48321,"impl-TextInput-for-State%3CP%3E"],[48322,"impl-State%3CP%3E"],[48324,"impl-TextInput-for-State%3CP%3E"],[48325,"impl-State%3CP%3E"],[48337,"impl-TextInput-for-State%3CP%3E"],[48338,"impl-State%3CP%3E"],[48403,"impl-State%3CP%3E"],[48404,"impl-Focusable-for-State%3CP%3E"],[49380,"impl-Debug-for-Error"],[49381,"impl-Display-for-Error"],[49382,"impl-From%3CError%3E-for-Error"],[49383,"impl-From%3CImageError%3E-for-Error"],[49384,"impl-From%3CError%3E-for-Error"],[49428,"impl-Display-for-CropError"],[49429,"impl-Debug-for-CropError"]]},\ "iced_core":{"doc":"The core library of Iced.","t":"ETGEEFPPGPFFEPPPPEEPFTEGPTETFFFTFFEPFFPFFTETFTETTTONNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOCNNNOONCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCONNNNNCNNNNNNNNNNNNNNNNOCNNNNNNONCNNONNNNNNNNNCCCNNNNNNNNNNNNNNNNNNNNOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOOCNNOOOOOOGPPPPPGPPPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNONKFNNNNNNNNNNNNNNNNNMNNNNNNNNNMNPGPPGPPGPPGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPTPPPPPGPFPPTPPPPPPPPPPPPGGPPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONFGFPNNNNNONNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNFPGGFRPPPKPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOTTTGEPPTPGFPPPTPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFTFNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNHNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNHNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNGPPNNNNNNNNNNNNNNNHNNNNNNNPPGPPEPGPPPGPPPPGPPPPPPPPPPGPPPPNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOFPGPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFKNNNNNNNNNNNNNMNNNNNNNHNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFKFNNNNNNNNNONNNNNNOMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNMNMNPGFPKNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTPPPPTPGERRREGTGPKRPKPGFNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNMNNNNNONNNMMCNNNNMMMNNNNNONNNNNNNNNNNNNNNNNMNNCMMONNNNNNNNNNNNNNNNNNNNNNNNNOMMNNNNMOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMOMGPPPGPGPPPPGPKPPRPPPPGPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNMOFRKRFRNNNNNNNNNNMNNNNNONNMNNNNNONNNNNNMNNNNNNNNNNNMNNNNNNNNNNNNNNNNNMNFFTTTTTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGFPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOFEEEKNNNNNNNNNNMNNNNNNNNNNNMNNNNCNMNNNCNCNNNNNNNNPEPKGEPENNNNNNMNNNCNNNNNNNNNHHCNCNNNNNNNNFKNNNNNNNNHNNHNHMHHONNNNNNNNMNONNNNNNNMFTFTKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHMHMNNNNNNNNNNNNNNNNOOOOKHMHMHMHMFEEFRKFNNNMNNNNNNNNNNNNNNNNONNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPGFFNNNNNNNNNNNNNNNONNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNNNNNNNNNNPPPPPPPPGPPPPPPEFPGTGPPPPGGPPEPPGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOPPGFNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOFFNNONNNNNNNNNNNNNNONNNONNNNNNNNONNNNNNNNNNOOOOOOONNONNNNNNNNNNNNNNO","n":["Alignment","BLACK","Background","Border","Clipboard","Color","Color","Contain","ContentFit","Cover","Degrees","Element","Event","Fill","Fill","FillPortion","Fixed","Font","Gradient","Gradient","Hasher","INFINITY","Layout","Length","None","ORIGIN","Overlay","PI","Padding","Pixels","Point","RANGE","Radians","Rectangle","Renderer","ScaleDown","Shadow","Shell","Shrink","Size","SmolStr","TRANSPARENT","Text","UNIT","Vector","WHITE","Widget","ZERO","ZERO","ZERO","a","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add","add","add","add","add_assign","alignment","are_widgets_invalid","area","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_ref","as_str","as_widget","as_widget_mut","b","blur_radius","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom","center","center_x","center_y","clipboard","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","color","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","default","default","default","default","default","default","default","deref","distance","div","div","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","event","expand","expand","explain","fill_factor","finish","fit","fit","fluid","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_f64","from_i64","from_iter","from_iter","from_iter","from_iter","from_linear_rgba","from_rgb","from_rgb8","from_rgba","from_rgba8","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_str","from_u64","g","gradient","hash","hash","hash","height","height","horizontal","image","intersection","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_linear","into_rgba8","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invalidate_layout","invalidate_widgets","inverse","invert","is_empty","is_empty","is_fill","is_heap_allocated","is_layout_invalid","is_within","keyboard","layout","left","len","map","max","merge","min","mouse","mul","mul","mul","mul","new","new","new","new","new","new","new","new","new","new_inline","new_inline_from_ascii","new_static","offset","overlay","partial_cmp","partial_cmp","partial_cmp","partial_cmp","position","publish","r","redraw_request","renderer","request_redraw","revalidate_layout","right","size","snap","sub","sub","sub","sub","sub","sub","sub_assign","svg","text","time","to_distance","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","to_string","top","touch","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","vertical","widget","width","width","window","with_size","write","x","x","x","y","y","y","Alignment","Bottom","Center","Center","Center","End","Horizontal","Left","Right","Start","Top","Vertical","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","components_from","components_from","components_from","eq","eq","eq","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","into","into","into","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","Border","Radius","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","default","default","eq","eq","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_stimulus","from_stimulus","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","radius","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","width","with_radius","Clipboard","Null","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","clone","clone_into","components_from","fmt","from","from_angle","from_stimulus","into","into_angle","into_color","into_color_unclamped","into_stimulus","read","read","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","write","write","Captured","Event","Ignored","Keyboard","MacOS","MacOS","Mouse","PlatformSpecific","PlatformSpecific","ReceivedUrl","Status","Touch","Window","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","eq","eq","eq","eq","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","merge","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","Black","Bold","Condensed","Cursive","DEFAULT","Expanded","ExtraBold","ExtraCondensed","ExtraExpanded","ExtraLight","Family","Fantasy","Font","Italic","Light","MONOSPACE","Medium","Monospace","Name","Normal","Normal","Normal","Oblique","SansSerif","SemiCondensed","SemiExpanded","Semibold","Serif","Stretch","Style","Thin","UltraCondensed","UltraExpanded","Weight","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","default","default","default","default","default","eq","eq","eq","eq","eq","family","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","hash","hash","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","stretch","style","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","weight","with_name","ColorStop","Gradient","Linear","Linear","adapt_into_using","adapt_into_using","adapt_into_using","add_stop","add_stops","angle","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","default","eq","eq","eq","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","into","into","into","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","mul_alpha","new","offset","stops","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","Bytes","Bytes","Data","FilterMethod","Handle","Handle","Linear","Nearest","Path","Renderer","Rgba","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_ref","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","data","default","deref","dimensions","draw","eq","eq","eq","eq","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_memory","from_path","from_pixels","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","hash","id","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","height","pixels","width","ALT","COMMAND","CTRL","Event","Key","KeyPressed","KeyReleased","LOGO","Left","Location","Modifiers","ModifiersChanged","Numpad","Right","SHIFT","Standard","adapt_into_using","adapt_into_using","adapt_into_using","all","alt","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","bitand","bitand_assign","bitor","bitor_assign","bits","bitxor","bitxor_assign","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","command","complement","components_from","components_from","components_from","contains","control","default","difference","empty","eq","eq","eq","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_bits","from_bits_truncate","from_bits_unchecked","from_iter","from_stimulus","from_stimulus","from_stimulus","hash","insert","intersection","intersects","into","into","into","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","is_all","is_empty","key","logo","not","partial_cmp","remove","set","shift","sub","sub_assign","symmetric_difference","to_owned","to_owned","to_owned","toggle","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","union","key","key","location","location","modifiers","modifiers","text","AVRInput","AVRPower","Accept","Again","AllCandidates","Alphanumeric","Alt","AltGraph","AppSwitch","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Attn","AudioBalanceLeft","AudioBalanceRight","AudioBassBoostDown","AudioBassBoostToggle","AudioBassBoostUp","AudioFaderFront","AudioFaderRear","AudioSurroundModeNext","AudioTrebleDown","AudioTrebleUp","AudioVolumeDown","AudioVolumeMute","AudioVolumeUp","Backspace","BrightnessDown","BrightnessUp","BrowserBack","BrowserFavorites","BrowserForward","BrowserHome","BrowserRefresh","BrowserSearch","BrowserStop","Call","Camera","CameraFocus","Cancel","CapsLock","ChannelDown","ChannelUp","Character","Clear","Close","ClosedCaptionToggle","CodeInput","ColorF0Red","ColorF1Green","ColorF2Yellow","ColorF3Blue","ColorF4Grey","ColorF5Brown","Compose","ContextMenu","Control","Convert","Copy","CrSel","Cut","DVR","Delete","Dimmer","DisplaySwap","Eisu","Eject","End","EndCall","Enter","EraseEof","Escape","ExSel","Execute","Exit","F1","F10","F11","F12","F13","F14","F15","F16","F17","F18","F19","F2","F20","F21","F22","F23","F24","F25","F26","F27","F28","F29","F3","F30","F31","F32","F33","F34","F35","F4","F5","F6","F7","F8","F9","FavoriteClear0","FavoriteClear1","FavoriteClear2","FavoriteClear3","FavoriteRecall0","FavoriteRecall1","FavoriteRecall2","FavoriteRecall3","FavoriteStore0","FavoriteStore1","FavoriteStore2","FavoriteStore3","FinalMode","Find","Fn","FnLock","GoBack","GoHome","GroupFirst","GroupLast","GroupNext","GroupPrevious","Guide","GuideNextDay","GuidePreviousDay","HangulMode","HanjaMode","Hankaku","HeadsetHook","Help","Hibernate","Hiragana","HiraganaKatakana","Home","Hyper","Info","Insert","InstantReplay","JunjaMode","KanaMode","KanjiMode","Katakana","Key","Key11","Key12","LastNumberRedial","LaunchApplication1","LaunchApplication2","LaunchCalendar","LaunchContacts","LaunchMail","LaunchMediaPlayer","LaunchMusicPlayer","LaunchPhone","LaunchScreenSaver","LaunchSpreadsheet","LaunchWebBrowser","LaunchWebCam","LaunchWordProcessor","Link","ListProgram","LiveContent","Lock","LogOff","MailForward","MailReply","MailSend","MannerMode","MediaApps","MediaAudioTrack","MediaClose","MediaFastForward","MediaLast","MediaPause","MediaPlay","MediaPlayPause","MediaRecord","MediaRewind","MediaSkipBackward","MediaSkipForward","MediaStepBackward","MediaStepForward","MediaStop","MediaTopMenu","MediaTrackNext","MediaTrackPrevious","Meta","MicrophoneToggle","MicrophoneVolumeDown","MicrophoneVolumeMute","MicrophoneVolumeUp","ModeChange","Named","Named","NavigateIn","NavigateNext","NavigateOut","NavigatePrevious","New","NextCandidate","NextFavoriteChannel","NextUserProfile","NonConvert","Notification","NumLock","OnDemand","Open","PageDown","PageUp","Pairing","Paste","Pause","PinPDown","PinPMove","PinPToggle","PinPUp","Play","PlaySpeedDown","PlaySpeedReset","PlaySpeedUp","Power","PowerOff","PreviousCandidate","Print","PrintScreen","Process","Props","RandomToggle","RcLowBattery","RecordSpeedNext","Redo","RfBypass","Romaji","STBInput","STBPower","Save","ScanChannelsToggle","ScreenModeNext","ScrollLock","Select","Settings","Shift","SingleCandidate","Soft1","Soft2","Soft3","Soft4","Space","SpeechCorrectionList","SpeechInputToggle","SpellCheck","SplitScreenToggle","Standby","Subtitle","Super","Symbol","SymbolLock","TV","TV3DMode","TVAntennaCable","TVAudioDescription","TVAudioDescriptionMixDown","TVAudioDescriptionMixUp","TVContentsMenu","TVDataService","TVInput","TVInputComponent1","TVInputComponent2","TVInputComposite1","TVInputComposite2","TVInputHDMI1","TVInputHDMI2","TVInputHDMI3","TVInputHDMI4","TVInputVGA1","TVMediaContext","TVNetwork","TVNumberEntry","TVPower","TVRadioService","TVSatellite","TVSatelliteBS","TVSatelliteCS","TVSatelliteToggle","TVTerrestrialAnalog","TVTerrestrialDigital","TVTimer","Tab","Teletext","Undo","Unidentified","VideoModeNext","VoiceDial","WakeUp","Wink","Zenkaku","ZenkakuHankaku","ZoomIn","ZoomOut","ZoomToggle","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_ref","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","cmp","components_from","components_from","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","hash","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","partial_cmp","partial_cmp","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","Layout","Limits","NONE","Node","adapt_into_using","adapt_into_using","adapt_into_using","align","align_mut","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","atomic","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","bounds","bounds","children","children","clone","clone","clone","clone_into","clone_into","clone_into","components_from","components_from","components_from","contained","container","default","eq","flex","fmt","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","height","into","into","into","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","loose","max","max_height","max_width","min","min_height","min_width","move_to","move_to_mut","new","new","new","next_to_each_other","padded","position","positioned","resolve","shrink","size","sized","to_owned","to_owned","to_owned","translate","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","width","with_children","with_offset","Axis","Horizontal","Vertical","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","components_from","fmt","from","from_angle","from_stimulus","into","into_angle","into_color","into_color_unclamped","into_stimulus","resolve","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Available","Back","Button","ButtonPressed","ButtonReleased","Click","Crosshair","Cursor","CursorEntered","CursorLeft","CursorMoved","Event","Forward","Grab","Grabbing","Idle","Interaction","Left","Lines","Middle","NotAllowed","Other","Pixels","Pointer","ResizingHorizontally","ResizingVertically","Right","ScrollDelta","Text","Unavailable","WheelScrolled","Working","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","click","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","components_from","components_from","components_from","components_from","components_from","default","default","eq","eq","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_over","partial_cmp","position","position_from","position_in","position_over","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","delta","position","x","x","y","y","Click","Double","Kind","Single","Triple","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","kind","new","position","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","Element","Group","Overlay","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","components_from","components_from","default","draw","draw","draw","from","from","from","from_angle","from_angle","from_children","from_stimulus","from_stimulus","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_over","is_over","is_over","layout","layout","layout","map","mouse_interaction","mouse_interaction","mouse_interaction","new","new","on_event","on_event","on_event","operate","operate","operate","overlay","overlay","overlay","overlay","position","push","translate","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","with_children","Null","Quad","Renderer","Style","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","bounds","clear","clear","clone","clone","clone","clone_into","clone_into","clone_into","components_from","components_from","components_from","default","default","default","default_font","default_size","eq","eq","fill_editor","fill_paragraph","fill_quad","fill_quad","fill_text","fmt","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","into","into","into","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","load_font","new","shadow","text_color","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","with_layer","with_layer","with_translation","with_translation","Bytes","Data","Handle","Path","Renderer","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","data","dimensions","draw","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_memory","from_path","from_stimulus","from_stimulus","hash","hash","id","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","ARROW_DOWN_ICON","Absolute","Advanced","Basic","Bounds","CHECKMARK_ICON","CharOffset","Difference","Editor","Editor","Font","Font","Highlighter","Hit","ICON_FONT","LineHeight","None","Paragraph","Paragraph","Relative","Renderer","Shape","Shaping","Text","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","compare","components_from","components_from","components_from","components_from","components_from","content","cursor","default","default","default_font","default_size","editor","eq","eq","eq","eq","fill_editor","fill_paragraph","fill_text","fmt","fmt","fmt","fmt","fmt","font","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","grapheme_position","hash","hash","highlighter","hit_test","horizontal_alignment","horizontal_alignment","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line_height","load_font","min_bounds","min_height","min_height","min_width","min_width","resize","shaping","size","to_absolute","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","update","update","vertical_alignment","vertical_alignment","with_text","Action","Backspace","Caret","Click","Cursor","Delete","Direction","DocumentEnd","DocumentStart","Down","Drag","Edit","Edit","Editor","End","Enter","Font","Home","Insert","Left","Left","Motion","Move","PageDown","PageUp","Paste","Right","Right","Scroll","Select","SelectLine","SelectWord","Selection","Up","WordLeft","WordRight","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","cursor","cursor_position","direction","eq","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","highlight","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_edit","line","line_count","perform","selection","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","update","widen","with_text","lines","Format","Highlight","Highlighter","Iterator","PlainText","Settings","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","change_line","change_line","clone","clone","clone_into","clone_into","color","components_from","components_from","current_line","current_line","default","eq","fmt","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","highlight_line","highlight_line","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","new","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","update","update","Duration","Instant","MAX","MICROSECOND","MILLISECOND","NANOSECOND","SECOND","ZERO","abs_diff","adapt_into_using","adapt_into_using","add","add","add_assign","add_assign","arrays_from","arrays_from","arrays_into","arrays_into","as_micros","as_millis","as_nanos","as_secs","as_secs_f32","as_secs_f64","borrow","borrow","borrow_mut","borrow_mut","checked_add","checked_add","checked_div","checked_duration_since","checked_mul","checked_sub","checked_sub","clone","clone","clone_into","clone_into","cmp","cmp","components_from","components_from","default","div","div_assign","div_duration_f32","div_duration_f64","div_f32","div_f64","duration_since","elapsed","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_micros","from_millis","from_nanos","from_secs","from_secs_f32","from_secs_f64","from_stimulus","from_stimulus","hash","hash","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_zero","mul","mul_assign","mul_f32","mul_f64","new","now","partial_cmp","partial_cmp","saturating_add","saturating_duration_since","saturating_mul","saturating_sub","sub","sub","sub","sub_assign","sub_assign","subsec_micros","subsec_millis","subsec_nanos","sum","sum","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_from_secs_f32","try_from_secs_f64","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","Event","Finger","FingerLifted","FingerLost","FingerMoved","FingerPressed","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hash","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","id","id","id","id","position","position","position","position","Id","Operation","Text","Tree","Widget","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","children","clone","clone_into","components_from","diff","draw","eq","fmt","from","from_angle","from_stimulus","hash","into","into_angle","into_color","into_color_unclamped","into_stimulus","layout","mouse_interaction","new","on_event","operate","operation","overlay","size","size_hint","state","tag","text","to_owned","tree","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","unique","Chain","Focusable","None","Operation","Outcome","Scrollable","Some","TextInput","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","components_from","container","custom","finish","fmt","focusable","focusable","from","from_angle","from_stimulus","into","into_angle","into_color","into_color_unclamped","into_stimulus","map","scope","scrollable","scrollable","text_input","text_input","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Count","Focusable","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","clone","clone_into","components_from","count","default","eq","find_focused","fmt","focus","focus","focus_next","focus_previous","focused","from","from_angle","from_stimulus","into","into_angle","into_color","into_color_unclamped","into_stimulus","is_focused","to_owned","total","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","unfocus","AbsoluteOffset","END","RelativeOffset","START","Scrollable","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","default","default","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","scroll_to","scroll_to","snap_to","snap_to","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","x","x","y","y","TextInput","move_cursor_to","move_cursor_to","move_cursor_to_end","move_cursor_to_end","move_cursor_to_front","move_cursor_to_front","select_all","select_all","Appearance","LineHeight","Shaping","State","Style","StyleSheet","Text","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","components_from","default","default","draw","draw","fmt","fmt","font","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","height","horizontal_alignment","into","into","into","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","line_height","new","shaping","size","size","state","style","tag","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","vertical_alignment","width","None","Some","State","Tag","Tree","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","children","clone","clone_into","cmp","components_from","components_from","components_from","diff","diff_children","diff_children_custom","diff_children_custom_with_search","downcast_mut","downcast_ref","empty","eq","fmt","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hash","into","into","into","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","new","new","of","partial_cmp","state","stateless","tag","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","AlwaysOnBottom","AlwaysOnTop","At","Centered","CloseRequested","Closed","Critical","Default","Event","FileDropped","FileHovered","FilesHoveredLeft","Focused","Fullscreen","Hidden","Icon","Id","Informational","Level","MAIN","Mode","Moved","NextFrame","Normal","Opened","Position","RedrawRequest","RedrawRequested","Resized","Settings","Specific","Unfocused","UserAttention","Windowed","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","components_from","components_from","components_from","components_from","components_from","components_from","components_from","default","default","eq","eq","eq","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","icon","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","partial_cmp","partial_cmp","settings","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unique","height","position","size","width","x","y","ByteCountNotDivisibleBy4","DimensionsVsPixelCount","Error","Icon","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","fmt","fmt","fmt","from","from","from_angle","from_angle","from_rgba","from_stimulus","from_stimulus","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_raw","into_stimulus","into_stimulus","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","byte_count","height","pixel_count","width","width_x_height","PlatformSpecific","Settings","adapt_into_using","adapt_into_using","application_id","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","decorations","default","default","eq","exit_on_close_request","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","icon","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","level","max_size","min_size","platform_specific","position","resizable","size","to_owned","to_owned","transparent","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","visible"],"q":[[0,"iced_core"],[680,"iced_core::alignment"],[775,"iced_core::border"],[838,"iced_core::clipboard"],[869,"iced_core::event"],[987,"iced_core::font"],[1166,"iced_core::gradient"],[1258,"iced_core::image"],[1389,"iced_core::image::Data"],[1392,"iced_core::keyboard"],[1530,"iced_core::keyboard::Event"],[1537,"iced_core::keyboard::key"],[1907,"iced_core::layout"],[2023,"iced_core::layout::flex"],[2049,"iced_core::mouse"],[2222,"iced_core::mouse::Event"],[2224,"iced_core::mouse::ScrollDelta"],[2228,"iced_core::mouse::click"],[2286,"iced_core::overlay"],[2363,"iced_core::renderer"],[2466,"iced_core::svg"],[2531,"iced_core::text"],[2722,"iced_core::text::editor"],[2900,"iced_core::text::editor::Action"],[2901,"iced_core::text::highlighter"],[2971,"iced_core::time"],[3093,"iced_core::touch"],[3152,"iced_core::touch::Event"],[3160,"iced_core::widget"],[3209,"iced_core::widget::operation"],[3250,"iced_core::widget::operation::focusable"],[3289,"iced_core::widget::operation::scrollable"],[3356,"iced_core::widget::operation::text_input"],[3365,"iced_core::widget::text"],[3465,"iced_core::widget::tree"],[3557,"iced_core::window"],[3782,"iced_core::window::Event"],[3788,"iced_core::window::icon"],[3844,"iced_core::window::icon::Error"],[3849,"iced_core::window::settings"],[3917,"palette::chromatic_adaptation"],[3918,"core::ops::arith"],[3919,"core::clone"],[3920,"core::cmp"],[3921,"core::default"],[3922,"num_traits::float"],[3923,"num_traits"],[3924,"alloc::string"],[3925,"core::cmp"],[3926,"core::fmt"],[3927,"core::fmt"],[3928,"core::fmt"],[3929,"alloc::borrow"],[3930,"alloc::sync"],[3931,"palette::rgb"],[3932,"palette::rgb"],[3933,"core::iter::traits::collect"],[3934,"core::hash"],[3935,"core::hash"],[3936,"core::ops::arith"],[3937,"core::convert"],[3938,"core::ops::function"],[3939,"core::any"],[3940,"std::path"],[3941,"core::marker"],[3942,"core::ops::range"],[3943,"core::time"],[3944,"core::ops::function"]],"d":["","The black color.","The background of some element.","","","A color in the sRGB color space.","A solid color.","Scale as big as it can be without needing to crop or hide …","The strategy used to fit the contents of a widget to its …","Scale the image to cover all of the bounding box, cropping …","Degrees","A generic Widget.","","Distort the image so the widget is 100% covered without …","Fill all the remaining space","Fill a portion of the remaining space relative to other …","Fill a fixed amount of space","","","Linearly interpolate between several colors.","The hasher used to compare layouts.","A Size with infinite width and height.","","The strategy used to fill space in a specific dimension.","Don’t resize or scale the image at all.","The origin (i.e. a Point at (0, 0)).","","The amount of radians in half a circle.","An amount of space to pad for each side of a box","An amount of logical pixels.","A 2D point.","The range of radians of a circle.","Radians","A rectangle.","","Scale the image down if it’s too big for the space, but …","A shadow.","A connection to the state of a shell.","Fill the least amount of space","An amount of space in 2 dimensions.","A SmolStr is a string type that has the following …","A color with no opacity.","","A Size with a width and height of 1 unit.","A 2D vector.","The white color.","","Padding of zero","A Size with zero width and height.","The zero Vector.","Transparency, 0.0 - 1.0","","","","","","","","","","","","","","","","","","","","","","","Align and position widgets.","Returns whether the widgets of the current application …","Returns the area of the Rectangle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a reference to the Widget of the Element,","Returns a mutable reference to the Widget of the Element,","Blue component, 0.0 - 1.0","The blur radius of the shadow.","Draw lines around containers.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Bottom padding","Returns the Point at the center of the Rectangle.","Returns the X coordinate of the Point at the center of the …","Returns the Y coordinate of the Point at the center of the …","Access the clipboard.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The color of the shadow.","Creates a Color with shorter and cleaner syntax.","","","","","","","","","","","","","","","","","","Returns true if the given Point is contained in the …","","","","","","","","","Computes the distance to another Point.","","","","","","","","","","","","","","","","","","","","Handle events of a user interface.","Expands the Rectangle a given amount.","Expands this Size by the given amount.","Marks the Element as to-be-explained.","Returns the fill factor of the Length.","","Attempt to apply the given fit for a content size within …","Fits the Padding between the provided inner and outer Size.","Returns the “fluid” variant of the Length.","","","","","","","","","","","","","","","","","","Load and use fonts.","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Color from its linear RGBA components.","Creates a Color from its RGB components.","Creates a Color from its RGB8 components.","Creates a Color from its RGBA components.","Creates a Color from its RGB8 components and an alpha …","","","","","","","","","","","","","","","","","","","","Green component, 0.0 - 1.0","Colors that transition progressively.","","","","Height of the rectangle.","The height.","Returns the total amount of horizontal Padding.","Load and draw raster graphics.","Computes the intersection with the given Rectangle.","Returns whether the Rectangle intersects with the given …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Converts the Color into its linear values.","Converts the Color into its RGBA8 equivalent.","","","","","","","","","","","","","","","","","","Invalidates the current application layout.","Invalidates the current application widgets.","Returns the inverted Color.","Inverts the Color in-place.","","Returns true if the Shell contains no published messages","Returns true iff the Length is either Length::Fill or","","Returns whether the current layout is invalid or not.","Returns true if the current Rectangle is completely within …","Listen to keyboard events.","Position your widgets properly.","Left padding","","Applies a transformation to the produced message of the …","Returns the maximum of each component of this size and …","Merges the current Shell with another one by applying the …","Returns the minimum of each component of this size and …","Handle mouse events.","","","","","","Creates a new Element containing the given Widget.","Creates a new Color.","Create a Padding that is equal on all sides","Creates a new Point with the given coordinates.","Creates a new Rectangle with its top-left corner in the …","Creates a new Shell with the provided buffer of messages.","Creates a new Size with the given width and height.","Creates a new Vector with the given components.","Constructs inline variant of SmolStr.","","Constructs a SmolStr from a statically allocated string.","The offset of the shadow.","Display interactive elements on top of other widgets.","","","","","Returns the position of the top left corner of the …","Publish the given Message for an application to process it.","Red component, 0.0 - 1.0","Returns the request a redraw should happen, if any.","Write your own renderer.","Requests a new frame to be drawn.","Triggers the given function if the layout is invalid, …","Right padding","Returns the Size of the Rectangle.","Snaps the Rectangle to unsigned integer coordinates.","","","","","","","","Load and draw vector graphics.","Draw and interact with text.","Keep track of time, both in native and web platforms!","Calculates the line in which the angle intercepts the …","","","","","","","","","","","","","","","","","","","","Top padding","Build touch events.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the union with the given Rectangle.","Returns the total amount of vertical Padding.","Create custom widgets and operate on them.","Width of the rectangle.","The width.","Build window-based GUI applications.","Creates a new Rectangle with its top-left corner at the …","","The X coordinate.","X coordinate of the top-left corner.","The X component of the Vector","The Y coordinate.","Y coordinate of the top-left corner.","The Y component of the Vector","Alignment on the axis of a container.","Align bottom","Align at the center of the axis.","Horizontally centered","Vertically centered","Align at the end of the axis.","The horizontal Alignment of some resource.","Align left","Align right","Align at the start of the axis.","Align top","The vertical Alignment of some resource.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A border.","The border radii for the corners of a graphics primitive …","","","","","","","","","","","","","","","The color of the border.","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","The radius of the border.","","","","","","","","","","","","","","","","","The width of the border.","Creates a new default Border with the given Radius.","A buffer for short-term storage and transfer within and …","A null implementation of the Clipboard trait.","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","Reads the current content of the Clipboard as text.","","","","","","","","","","Writes the given text contents to the Clipboard.","","The Event was handled and processed by a widget.","A user interface event.","The Event was NOT handled by any widget.","A keyboard event","Describes an event specific to MacOS","A MacOS specific event","A mouse event","A platform specific event","A platform specific event","Triggered when the app receives an URL from the system","The status of an Event after being processed.","A touch event","A window event","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","Merges two Status into one.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Glyphs in cursive fonts generally use a more informal …","A non-monospaced sans-serif font with normal Weight.","","","","","","A font family.","Fantasy fonts are primarily decorative or expressive fonts …","A font.","","","A monospaced font with normal Weight.","","The sole criterion of a monospace font is that all glyphs …","The name of a font family of choice.","","","","","Glyphs in sans-serif fonts, as the term is used in CSS, …","","","","Serif fonts represent the formal text style for a script.","The width of some text.","The style of some text.","","","","The weight of some text.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Family of the Font.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","The Stretch of the Font.","The Style of the Font.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Weight of the Font.","Creates a non-monospaced Font with the given Family::Name …","A point along the gradient vector where the specified color…","A fill which transitions colors progressively along a …","A linear gradient.","A linear gradient interpolates colors along a direction at …","","","","Adds a new ColorStop, defined by an offset and a color, to …","Adds multiple ColorStops to the gradient.","How the Gradient is angled within its bounds.","","","","","","","","","","","","","","","","","","","The color of the gradient at the specified offset.","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","Adjust the opacity of the gradient by a multiplier applied …","Creates a new Linear gradient with the given angle in …","Offset along the gradient vector.","ColorStops along the linear gradient path.","","","","","","","","","","","","","","","","","","","","","","","","","A wrapper around raw image data.","In-memory data","The data of a raster image.","Image filtering strategy.","A handle of some image data.","The image Handle to be displayed. Iced exposes its own …","Bilinear interpolation.","Nearest neighbor.","File data","A Renderer that can render raster graphics.","Decoded image pixels in RGBA format.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a reference to the image Data.","","","Returns the dimensions of an image for the given Handle.","Draws an image with the given Handle and inside the …","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Creates an image Handle containing the image data directly.","Creates an image Handle pointing to the image of the given …","Creates an image Handle containing the image pixels …","","","","","","","","","Returns the unique identifier of the Handle.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","Creates new Bytes around data.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The height of the image.","The pixels.","The width of the image.","The “alt” key.","The “command” key.","The “control” key.","A keyboard event.","","A keyboard key was pressed.","A keyboard key was released.","The “windows” key on Windows, “command” key on …","The left side of the keyboard.","The location of a key on the keyboard.","The current state of the keyboard modifiers.","The keyboard modifiers have changed.","The numpad of the keyboard.","The right side of the keyboard.","The “shift” key.","The standard group of keys on the keyboard.","","","","Returns the set containing all flags.","Returns true if the ALT key is pressed in the Modifiers.","","","","","","","Returns the intersection between the two sets of flags.","Disables all flags disabled in the set.","Returns the union of the two sets of flags.","Adds the set of flags.","Returns the raw value of the flags currently stored.","Returns the left flags, but with all the right flags …","Toggles the set of flags.","","","","","","","","","","","","","","Returns true if a “command key” is pressed in the …","Returns the complement of this set of flags.","","","","Returns true if all of the flags in other are contained …","Returns true if the CTRL key is pressed in the Modifiers.","","Returns the difference between the flags in self and other.","Returns an empty set of flags.","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Convert from underlying bit representation, unless that …","Convert from underlying bit representation, dropping any …","Convert from underlying bit representation, preserving all …","","","","","","Inserts the specified flags in-place.","Returns the intersection between the flags in self and …","Returns true if there are flags common to both self and …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","Returns true if all flags are currently set.","Returns true if no flags are currently stored.","Identify keyboard keys.","Returns true if the LOGO key is pressed in the Modifiers.","Returns the complement of this set of flags.","","Removes the specified flags in-place.","Inserts or removes the specified flags depending on the …","Returns true if the SHIFT key is pressed in the Modifiers.","Returns the set difference of the two sets of flags.","Disables all flags enabled in the set.","Returns the symmetric difference between the flags in self …","","","","Toggles the specified flags in-place.","","","","","","","","","","","","","","","","","","","","","","Returns the union of between the flags in self and other.","The key pressed.","The key released.","The location of the key.","The location of the key.","The state of the modifier keys.","The state of the modifier keys.","The text produced by the key press, if any.","Switch the input mode on an external AVR (audio/video …","Toggle the power on an external AVR (audio/video …","The Accept (Commit, OK) key. Accept current option or …","Redo or repeat an action.","Initate the multi-candidate mode.","","The Alt (Alternative) key.","The Alternate Graphics (AltGr or AltGraph) key.","The Application switch key, which provides a list of …","Navigate or traverse downward. (KEYCODE_DPAD_DOWN)","Navigate or traverse leftward. (KEYCODE_DPAD_LEFT)","Navigate or traverse rightward. (KEYCODE_DPAD_RIGHT)","Navigate or traverse upward. (KEYCODE_DPAD_UP)","The Attention (Attn) key.","Adjust audio balance leftward. (VK_AUDIO_BALANCE_LEFT)","Adjust audio balance rightward. (VK_AUDIO_BALANCE_RIGHT)","Decrease audio bass boost or cycle down through bass boost …","Toggle bass boost on/off. (APPCOMMAND_BASS_BOOST)","Increase audio bass boost or cycle up through bass boost …","Adjust audio fader towards front. (VK_FADER_FRONT)","Adjust audio fader towards rear. (VK_FADER_REAR)","Advance surround audio mode to next available mode. (…","Decrease treble. (APPCOMMAND_TREBLE_DOWN)","Increase treble. (APPCOMMAND_TREBLE_UP)","Decrease audio volume. (APPCOMMAND_VOLUME_DOWN, …","Toggle between muted state and prior volume level. (…","Increase audio volume. (APPCOMMAND_VOLUME_UP, …","Used to remove the character to the left of the cursor. …","The Brightness Down key. Typically controls the display …","The Brightness Up key. Typically controls the display …","Navigate to previous content or page in current history. (…","Open the list of browser favorites. (…","Navigate to next content or page in current history. (…","Go to the user’s preferred home page. (…","Refresh the current page or content. (…","Call up the user’s preferred search page. (…","Stop loading the current page or content. (…","The Call key. (KEYCODE_CALL)","The Camera key. (KEYCODE_CAMERA)","The Camera focus key. (KEYCODE_FOCUS)","","The Caps Lock (Capital) key.","Select next (numerically or logically) lower channel. (…","Select next (numerically or logically) higher channel. (…","A key string that corresponds to the character typed by …","Remove the currently selected input.","Close the current document or message (Note: This …","Toggle the display of Closed Captions. (VK_CC, …","Initiate the Code Input mode to allow characters to be …","General purpose color-coded media function key, as index 0 …","General purpose color-coded media function key, as index 1 …","General purpose color-coded media function key, as index 2 …","General purpose color-coded media function key, as index 3 …","General purpose color-coded media function key, as index 4 …","General purpose color-coded media function key, as index 5 …","The Compose key, also known as “Multi_key” on the X …","Show the application’s context menu. This key is …","The Control or Ctrl key.","Convert the current input method sequence.","Copy the current selection. (APPCOMMAND_COPY)","The Cursor Select key.","Cut the current selection. (APPCOMMAND_CUT)","Select Digital Video Rrecorder. (KEYCODE_DVR)","Used to delete the character to the right of the cursor. …","Adjust brightness of device, by toggling between or …","Swap video sources. (VK_DISPLAY_SWAP)","The Eisu key. This key may close the IME, but its purpose …","Toggle removable media to eject (open) and insert (close) …","The End key, used with keyboard entry to go to the end of …","The End Call key. (KEYCODE_ENDCALL)","The Enter or key. Used to activate current selection …","The Erase to End of Field key. This key deletes all …","The Esc key. This key was originally used to initiate an …","The Extend Selection (Exsel) key.","","Exit the current application. (VK_EXIT)","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key. Usually found at the top of …","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key.","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","General-purpose function key. Usually found at the top of …","Clear program or content stored as favorite 0. (…","Clear program or content stored as favorite 1. (…","Clear program or content stored as favorite 2. (…","Clear program or content stored as favorite 3. (…","Select (recall) program or content stored as favorite 0. (…","Select (recall) program or content stored as favorite 1. (…","Select (recall) program or content stored as favorite 2. (…","Select (recall) program or content stored as favorite 3. (…","Store current program or content as favorite 0. (…","Store current program or content as favorite 1. (…","Store current program or content as favorite 2. (…","Store current program or content as favorite 3. (…","The Final Mode Final key used on some Asian keyboards, to …","Open the Find dialog. (APPCOMMAND_FIND)","The Function switch Fn key. Activating this key …","The Function-Lock (FnLock or F-Lock) key. Activating this …","The Back key. (KEYCODE_BACK)","The Home key, which goes to the phone’s main screen. (…","Switch to the first character group. (ISO/IEC 9995)","Switch to the last character group. (ISO/IEC 9995)","Switch to the next character group. (ISO/IEC 9995)","Switch to the previous character group. (ISO/IEC 9995)","Toggle display of program or content guide. (VK_GUIDE, …","If guide is active and displayed, then display next …","If guide is active and displayed, then display previous …","Toggle between Hangul and English modes.","","The (Half-Width) Characters key.","The Headset Hook key. (KEYCODE_HEADSETHOOK)","Open a help dialog or toggle display of help information. (…","The Hibernate key. This key saves the current state of the …","The Hiragana (Japanese Kana characters) key.","The Hiragana/Katakana toggle key. (…","The Home key, used with keyboard entry, to go to start of …","","Toggle display of information about currently selected …","Toggle between text modes for insertion or overtyping. (…","Toggle instant replay. (VK_INSTANT_REPLAY)","","The Kana Mode (Kana Lock) key. This key is used to enter …","The Kanji (Japanese name for ideographic characters of …","The Katakana (Japanese Kana characters) key.","A key on the keyboard.","The 11 key found on media numpads that have buttons from 1 …","The 12 key found on media numpads that have buttons from 1 …","","The first generic “LaunchApplication” key. This is …","The second generic “LaunchApplication” key. This is …","The “Calendar” key. (KEYCODE_CALENDAR)","The “Contacts” key. (KEYCODE_CONTACTS)","The “Mail” key. (APPCOMMAND_LAUNCH_MAIL)","The “Media Player” key. (APPCOMMAND_LAUNCH_MEDIA_SELECT…","","","","","","","","Launch linked content, if available and appropriate. (…","List the current program. (VK_LIST)","Toggle display listing of currently available live content …","Lock or unlock current content or program. (VK_LOCK)","","Open an editor to forward the current message. (…","Open an editor to reply to the current message. (…","Send the current message. (APPCOMMAND_SEND_MAIL)","Toggle between manner mode state: silent, vibrate, ring, …","Show a list of media applications: audio/video players and …","Audio track key. (KEYCODE_MEDIA_AUDIO_TRACK)","Close the current media, for example to close a CD or DVD …","Initiate or continue forward playback at faster than …","Select previously selected channel or media. (VK_LAST, …","Pause the currently playing media. (APPCOMMAND_MEDIA_PAUSE…","Initiate or continue media playback at normal speed, if …","Toggle media between play and pause states. (…","Initiate or resume recording of currently selected media. (…","Initiate or continue reverse playback at faster than …","Skip backward to next content or program. (…","Skip forward to next content or program. (VK_SKIP, …","Step backward to next content or program. (…","Step forward to next content or program. (…","Stop media playing, pausing, forwarding, rewinding, or …","Media top menu. (KEYCODE_MEDIA_TOP_MENU)","Seek to next media or program track. (…","Seek to previous media or program track. (…","","Toggle the microphone on/off. (APPCOMMAND_MIC_ON_OFF_TOGGLE…","Decrease microphone volume. (…","Mute the microphone. (APPCOMMAND_MICROPHONE_VOLUME_MUTE, …","Increase microphone volume. (…","Toggle between or cycle through input modes of IMEs.","A named key.","A key with an established name.","Navigate in. (KEYCODE_NAVIGATE_IN)","Navigate to next key. (KEYCODE_NAVIGATE_NEXT)","Navigate out. (KEYCODE_NAVIGATE_OUT)","Navigate to previous key. (KEYCODE_NAVIGATE_PREVIOUS)","Open a new document or message. (APPCOMMAND_NEW)","","Cycle to next favorite channel (in favorites list). (…","Cycle to next user profile (if there are multiple user …","Accept current input method sequence without conversion in …","The Notification key. (KEYCODE_NOTIFICATION)","The NumLock or Number Lock key. Used to toggle numpad mode …","Access on-demand content or programs. (VK_ON_DEMAND)","Open an existing document or message. (APPCOMMAND_OPEN)","Scroll down or display next page of content.","Scroll up or display previous page of content.","Pairing key to pair devices. (KEYCODE_PAIRING)","The Paste key. (APPCOMMAND_PASTE)","Pause the current state or application (as appropriate).","Move picture-in-picture window down. (VK_PINP_DOWN)","Move picture-in-picture window. (VK_PINP_MOVE)","Toggle display of picture-in-picture window. (…","Move picture-in-picture window up. (VK_PINP_UP)","Play or resume the current state or application (as …","Decrease media playback speed. (VK_PLAY_SPEED_DOWN)","Reset playback to normal speed. (VK_PLAY_SPEED_RESET)","Increase media playback speed. (VK_PLAY_SPEED_UP)","Toggle power state. (KEYCODE_POWER) Note: Note: Some …","The PowerOff key. Sometime called PowerDown.","","Print the current document or message. (APPCOMMAND_PRINT)","Initiate print-screen function.","","The properties (Props) key.","Toggle random media or content shuffle mode. (…","Not a physical key, but this key code is sent when the …","Toggle or cycle between media recording speeds. (…","Redo the last action. (APPCOMMAND_REDO)","Toggle RF (radio frequency) input bypass mode (pass RF …","The Roman characters function key.","Switch the input mode on an external STB (set top box). (…","Toggle the power on an external STB (set top box). (…","Save the current document or message. (APPCOMMAND_SAVE)","Toggle scan channels mode. (VK_SCAN_CHANNELS_TOGGLE)","Advance display screen mode to next available mode. (…","Toggle between scrolling and cursor movement modes.","","Toggle display of device settings screen. (VK_SETTINGS, …","Used to enable shift modifier function for interpreting …","","General purpose virtual function key, as index 1.","General purpose virtual function key, as index 2.","General purpose virtual function key, as index 3.","General purpose virtual function key, as index 4.","Used in text to insert a space between words. Usually …","Show correction list when a word is incorrectly …","Toggle between dictation mode and command/control mode. (…","Spellcheck the current document or selection. (…","Toggle split screen mode. (VK_SPLIT_SCREEN_TOGGLE)","The Standby key. This key turns off the display and places …","Toggle display of subtitles, if available. (VK_SUBTITLE)","Used to enable “super” modifier function for …","The Symbol modifier key (used on some virtual keyboards).","","Switch to viewing TV. (KEYCODE_TV)","TV 3D Mode. (KEYCODE_3D_MODE)","Toggle between antenna and cable input. (…","Audio description. (KEYCODE_TV_AUDIO_DESCRIPTION)","Audio description mixing volume down. (…","Audio description mixing volume up. (…","Contents menu. (KEYCODE_TV_CONTENTS_MENU)","Contents menu. (KEYCODE_TV_DATA_SERVICE)","Switch the input mode on an external TV. (KEYCODE_TV_INPUT)","Switch to component input #1. (KEYCODE_TV_INPUT_COMPONENT_1…","Switch to component input #2. (KEYCODE_TV_INPUT_COMPONENT_2…","Switch to composite input #1. (KEYCODE_TV_INPUT_COMPOSITE_1…","Switch to composite input #2. (KEYCODE_TV_INPUT_COMPOSITE_2…","Switch to HDMI input #1. (KEYCODE_TV_INPUT_HDMI_1)","Switch to HDMI input #2. (KEYCODE_TV_INPUT_HDMI_2)","Switch to HDMI input #3. (KEYCODE_TV_INPUT_HDMI_3)","Switch to HDMI input #4. (KEYCODE_TV_INPUT_HDMI_4)","Switch to VGA input #1. (KEYCODE_TV_INPUT_VGA_1)","Media context menu. (KEYCODE_TV_MEDIA_CONTEXT_MENU)","Toggle network. (KEYCODE_TV_NETWORK)","Number entry. (KEYCODE_TV_NUMBER_ENTRY)","Toggle the power on an external TV. (KEYCODE_TV_POWER)","Radio. (KEYCODE_TV_RADIO_SERVICE)","Satellite. (KEYCODE_TV_SATELLITE)","Broadcast Satellite. (KEYCODE_TV_SATELLITE_BS)","Communication Satellite. (KEYCODE_TV_SATELLITE_CS)","Toggle between available satellites. (…","Analog Terrestrial. (KEYCODE_TV_TERRESTRIAL_ANALOG)","Digital Terrestrial. (KEYCODE_TV_TERRESTRIAL_DIGITAL)","Timer programming. (KEYCODE_TV_TIMER_PROGRAMMING)","The Horizontal Tabulation Tab key.","Toggle display of teletext, if available (VK_TELETEXT, …","Undo the last action. (APPCOMMAND_UNDO)","An unidentified key.","Advance video mode to next available mode. (…","","The WakeUp key. (KEYCODE_WAKEUP)","Cause device to identify itself in some manner, e.g., …","The Zenkaku (Full-Width) Characters key.","The Zenkaku/Hankaku (full-width/half-width) toggle key. (…","The ZoomIn key. (KEYCODE_ZOOM_IN)","The ZoomOut key. (KEYCODE_ZOOM_OUT)","Toggle between full-screen and scaled content, or alter …","","","","","","","Convert Key::Character(SmolStr) to Key::Character(&str) so …","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","The bounds of a Node and its children, using absolute …","A set of size constraints for layouting.","No limits","The bounds of an element and its children.","","","","Aligns the Node in the given space.","Mutable reference version of Self::align.","","","","","","","Computes the resulting Node that fits the Limits given …","","","","","","","Returns the bounds of the Node.","Returns the bounds of the Layout.","Returns the children of the Node.","Returns an iterator over the Layout of the children of a …","","","","","","","","","","Computes the resulting Node that fits the Limits given …","Creates a new Node that wraps a single child with some …","","","Distribute elements using a flex-based layout.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Applies a height constraint to the current Limits.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","Removes the minimum width constraint for the current Limits…","Returns the maximum Size of the Limits.","Applies a maximum height constraint to the current Limits.","Applies a maximum width constraint to the current Limits.","Returns the minimum Size of the Limits.","Applies a minimum height constraint to the current Limits.","Applies a minimum width constraint to the current Limits.","Moves the Node to the given position.","Mutable reference version of Self::move_to.","Creates new Limits with the given minimum and maximum Size.","Creates a new Node with the given Size.","Creates a new Layout for the given Node at the origin.","Produces a Node with two children nodes one right next to …","Computes the Node that fits the Limits given some width, …","Returns the position of the Layout.","Computes a padded Node with a positioning step.","Computes the resulting Size that fits the Limits given …","Shrinks the current Limits by the given Size.","Returns the Size of the Node.","Computes the resulting Node that fits the Limits given …","","","","Translates the Node by the given translation.","","","","","","","","","","","","","","","","","","","","","","Applies a width constraint to the current Limits.","Creates a new Node with the given Size and children.","Creates a new Layout for the given Node with the provided …","The main axis of a flex layout.","The horizontal axis","The vertical axis","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","Computes the flex layout with the given axis and limits, …","","","","","","","","The cursor has a defined position.","The back mouse button.","The button of a mouse.","A mouse button was pressed.","A mouse button was released.","","","The mouse cursor state.","The mouse cursor entered the window.","The mouse cursor left the window.","The mouse cursor was moved","A mouse event.","The forward mouse button.","","","","The interaction of a mouse cursor.","The left mouse button.","A line-based scroll movement","The middle (wheel) button.","","Some other button.","A pixel-based scroll movement","","","","The right mouse button.","A scroll movement.","","The cursor is currently unavailable (i.e. out of bounds or …","The mouse wheel was scrolled.","","","","","","","","","","","","","","","","","","","","","","","","","","","Track mouse clicks.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Returns true if the Cursor is over the given bounds.","","Returns the absolute position of the Cursor, if available.","Returns the relative position of the Cursor from the given …","Returns the relative position of the Cursor inside the …","Returns the absolute position of the Cursor, if available …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The scroll movement.","The new position of the mouse cursor","The number of horizontal lines scrolled","The number of horizontal pixels scrolled","The number of vertical lines scrolled","The number of vertical pixels scrolled","A mouse click.","A double click","The kind of mouse click.","A single click","A triple click","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Returns the Kind of Click.","Creates a new Click with the given position and previous …","Returns the position of the Click.","","","","","","","","","","","","","","","","","A generic Overlay.","An Overlay container that displays multiple overlay …","An interactive component that can be displayed on top of …","","","","","","","","","","","","","","Draws the Overlay using the associated Renderer.","Draws the Element and its children using the given Layout.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns a Group of overlay Element children.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Returns true if the cursor is over the Element.","","Returns true if the cursor is over the Overlay.","Returns the layout Node of the Overlay.","Computes the layout of the Element in the given bounds.","","Applies a transformation to the produced message of the …","Returns the current mouse::Interaction of the Element.","","Returns the current mouse::Interaction of the Overlay.","Creates a new Element containing the given Overlay.","Creates an empty Group.","Processes a runtime Event.","","Processes a runtime Event.","Applies a widget::Operation to the Element.","","Applies a widget::Operation to the Overlay.","Returns the nested overlay of the Element, if there is any.","","Turns the Group into an overlay overlay::Element.","Returns the nested overlay of the Overlay, if there is any.","Returns the position of the Element.","Adds an overlay::Element to the Group.","Translates the Element.","","","","","","","","","","","","","","","Creates a Group with the given elements.","A renderer that does nothing.","A polygon with four sides.","A component that can be used by widgets to draw themselves …","The styling attributes of a Renderer.","","","","","","","","","","The Border of the Quad.","","","","","","","The bounds of the Quad.","Clears all of the recorded primitives in the Renderer.","","","","","","","","","","","","","","","","","","","","Fills a Quad with the provided Background.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Creates a new Null renderer.","The Shadow of the Quad.","The text color","","","","","","","","","","","","","","","","","","","","","","","","","Draws the primitives recorded in the given closure in a …","","Applies a translation to the primitives recorded in the …","","In-memory data","The data of a vectorial image.","A handle of Svg data.","File data","A Renderer that can render vector graphics.","","","","","","","","","","","","","","","","","Returns a reference to the SVG Data.","Returns the default dimensions of an SVG for the given …","Draws an SVG with the given Handle, an optional Color …","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Creates an SVG Handle from raw bytes containing either an …","Creates an SVG Handle pointing to the vector image of the …","","","","","Returns the unique identifier of the Handle.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","The char representing a ▼ icon in the built-in ICON_FONT.","An absolute height in logical pixels.","Advanced text shaping and font fallback.","No shaping and no font fallback.","A bounds difference.","The char representing a ✔ icon in the ICON_FONT.","The point was within the bounds of the returned character …","The difference detected in some text.","","The Editor of this Renderer.","The font of this Paragraph.","The font type used.","","The result of hit testing on text.","The icon font of the backend.","The height of a line of text in a paragraph.","No difference.","A text paragraph.","The Paragraph of this Renderer.","A factor of the size of the text.","A renderer capable of measuring and drawing Text.","A shape difference.","The shaping strategy of some text.","A paragraph.","","","","","","","","","","","","","","","","","","","","","","","","","","The bounds of the paragraph.","","","","","","","","","","","Compares the Paragraph with some desired Text and returns …","","","","","","The content of the paragraph.","Computes the cursor position of the Hit .","","","Returns the default Self::Font.","Returns the default size of Text.","Edit text.","","","","","Draws the given Editor at the given position and with the …","Draws the given Paragraph at the given position and with …","Draws the given Text at the given position and with the …","","","","","","The font of the Text.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Returns the distance to the given grapheme index in the …","","","Highlight text.","Tests whether the provided point is within the boundaries …","Returns the horizontal alignment of the Paragraph.","The horizontal alignment of the Text.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","The line height of the Text.","Loads a Self::Font from its bytes.","Returns the minimum boundaries that can fit the contents …","Returns the minimum height that can fit the contents of …","Returns the minimum height that can fit the contents of …","Returns the minimum width that can fit the contents of the …","Returns the minimum width that can fit the contents of the …","Lays out the Paragraph with some new boundaries.","The Shaping strategy of the Text.","The size of the Text in logical pixels.","Returns the LineHeight in absolute logical pixels.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Updates the Paragraph to match the given Text, if needed.","Updates the Paragraph to match the given Text, if needed.","Returns the vertical alignment of the Paragraph.","The vertical alignment of the Text.","Creates a new Paragraph laid out with the given Text.","An interaction with an Editor.","Delete the previous character.","Cursor without a selection","Click the Editor at the given Point.","The cursor of an Editor.","Delete the next character.","A direction in some text.","Move to the end of the text.","Move to the start of the text.","Move down.","Drag the mouse on the Editor to the given Point.","An action that edits text.","Perform an Edit.","A component that can be used by widgets to edit multi-line …","Move to the end of the line.","Break the current line.","The font of the Editor.","Move to the start of the line.","Insert the given character.","Move left.","<-","A cursor movement.","Apply a Motion.","Move to the start of the next window.","Move to the start of the previous window.","Paste the given text.","Move right.","->","Scroll the Editor a certain amount of lines.","Select text with a given Motion.","Select the line at the current cursor.","Select the word at the current cursor.","Cursor selecting a range of text","Move up.","Move to the left boundary of a word.","Move to the right boundary of a word.","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the current boundaries of the Editor.","","","","","","","","","","","","","","","","Returns the current Cursor of the Editor.","Returns the current cursor position of the Editor.","Returns the Direction of the Motion.","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Runs a text Highlighter in the Editor.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Returns whether the Action is an editing action.","Returns the text of the given line in the Editor, if it …","Returns the amount of lines in the Editor.","Performs an Action on the Editor.","Returns the current selected text of the Editor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Updates the Editor with some new attributes.","Widens the Motion, if possible.","Creates a new Editor laid out with the given text.","The amount of lines to scroll.","The format of some text.","The output of the Highlighter.","A type capable of highlighting text.","The highlight iterator type.","A highlighter that highlights nothing.","The settings to configure the Highlighter.","","","","","","","","","","","Notifies the Highlighter that the line at the given index …","","","","","","The Color of the text.","","","Returns the current line of the Highlighter.","","","","","","The Font of the text.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Highlights the given line.","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Creates a new Highlighter from its Self::Settings.","","","","","","","","","","","","","","","","","","Updates the Highlighter with some new Self::Settings.","","A Duration type to represent a span of time, typically …","A measurement of a monotonically nondecreasing clock. …","The maximum duration.","The duration of one microsecond.","The duration of one millisecond.","The duration of one nanosecond.","The duration of one second.","A duration of zero time.","Computes the absolute difference between self and other.","","","Panics","","","","","","","","Returns the total number of whole microseconds contained …","Returns the total number of whole milliseconds contained …","Returns the total number of nanoseconds contained by this …","Returns the number of whole seconds contained by this …","Returns the number of seconds contained by this Duration …","Returns the number of seconds contained by this Duration …","","","","","Returns Some(t) where t is the time self + duration if t …","Checked Duration addition. Computes self + other, …","Checked Duration division. Computes self / other, …","Returns the amount of time elapsed from another instant to …","Checked Duration multiplication. Computes self * other, …","Returns Some(t) where t is the time self - duration if t …","Checked Duration subtraction. Computes self - other, …","","","","","","","","","","","","Divide Duration by Duration and return f32.","Divide Duration by Duration and return f64.","Divide Duration by f32.","Divide Duration by f64.","Returns the amount of time elapsed from another instant to …","Returns the amount of time elapsed since this instant.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of whole …","Creates a new Duration from the specified number of …","Creates a new Duration from the specified number of …","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Returns true if this Duration spans no time.","","","Multiplies Duration by f32.","Multiplies Duration by f64.","Creates a new Duration from the specified number of whole …","Returns an instant corresponding to “now”.","","","Saturating Duration addition. Computes self + other, …","Returns the amount of time elapsed from another instant to …","Saturating Duration multiplication. Computes self * other, …","Saturating Duration subtraction. Computes self - other, …","Returns the amount of time elapsed from another instant to …","","","","","Returns the fractional part of this Duration, in whole …","Returns the fractional part of this Duration, in whole …","Returns the fractional part of this Duration, in …","","","","","","","","","The checked version of from_secs_f32.","The checked version of from_secs_f64.","","","","","","","","","","","A touch interaction.","A unique identifier representing a finger on a touch …","A touch interaction was ended.","A touch interaction was canceled.","An on-going touch interaction was moved.","A touch interaction was started.","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The identifier of a generic widget.","","","","A component that displays information and allows …","","","","","","Returns the state Tree of the children of the Widget.","","","","Reconciliates the Widget with the provided Tree.","Draws the Widget using the associated Renderer.","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","Returns the layout::Node of the Widget.","Returns the current mouse::Interaction of the Widget.","Creates a custom Id.","Processes a runtime Event.","Applies an Operation to the Widget.","Query or update internal widget state.","Returns the overlay of the Widget, if there is any.","Returns the Size of the Widget in lengths.","Returns a Size hint for laying out the Widget.","Returns the State of the Widget.","Returns the Tag of the Widget.","Write some text for your users to read.","","Store internal widget state in a state tree to ensure …","","","","","","","","Creates a unique Id.","The Operation needs to be followed by another Operation.","","The Operation produced no result.","A piece of logic that can traverse the widget tree of an …","The result of an Operation.","","The Operation produced some result.","","","","","","","","Operates on a widget that contains other widgets.","Operates on a custom widget with some state.","Finishes the Operation and returns its Outcome.","","Operate on widgets that can be focused.","Operates on a widget that can be focused.","Returns the argument unchanged.","","","Calls U::from(self).","","","","","Maps the output of an Operation using the given function.","Produces an Operation that applies the given Operation to …","Operate on widgets that can be scrolled.","Operates on a widget that can be scrolled.","Operate on widgets that have text input.","Operates on a widget that has text input.","","","","","","","","A summary of the focusable widgets present on a widget …","The internal state of a widget that can be focused.","","","","","","","","","Produces an Operation that generates a Count and chains it …","","","Produces an Operation that searches for the current …","","Produces an Operation that focuses the widget with the …","Focuses the widget.","Produces an Operation that searches for the current …","Produces an Operation that searches for the current …","The index of the current focused widget, if any.","Returns the argument unchanged.","","","Calls U::from(self).","","","","","Returns whether the widget is focused or not.","","The total amount of focusable widgets.","","","","","","","","Unfocuses the widget.","The amount of absolute offset in each direction of a …","A relative offset that points to the bottom-right of a …","The amount of relative offset in each direction of a …","A relative offset that points to the top-left of a …","The internal state of a widget that can be scrolled.","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Produces an Operation that scrolls the widget with the …","Scroll the widget to the given AbsoluteOffset along the …","Produces an Operation that snaps the widget with the given …","Snaps the scroll of the widget to the given percentage …","","","","","","","","","","","","","","","","","The amount of horizontal offset","The amount of horizontal offset","The amount of vertical offset","The amount of vertical offset","The internal state of a widget that has text input.","Produces an Operation that moves the cursor of the widget …","Moves the cursor of the text input to an arbitrary …","Produces an Operation that moves the cursor of the widget …","Moves the cursor of the text input to the end of the input …","Produces an Operation that moves the cursor of the widget …","Moves the cursor of the text input to the front of the …","Produces an Operation that selects all the content of the …","Selects all the content of the text input.","The apperance of some text.","","","The internal state of a Text widget.","The supported style of the StyleSheet.","The style sheet of some text.","A paragraph of text.","","","","Produces the Appearance of some text.","","","","","","","","","","","","","","","","","The Color of the text.","","","","","","Draws text using the same logic as the Text widget.","","","","Sets the Font of the Text.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Sets the height of the Text boundaries.","Sets the alignment::Horizontal of the Text.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","Produces the layout::Node of a Text widget.","","Sets the LineHeight of the Text.","Create a new fragment of Text with the given contents.","Sets the Shaping strategy of the Text.","Sets the size of the Text.","","","Sets the style of the Text.","","","","","","","","","","","","","","","","","","","","","","","","","Sets the alignment::Vertical of the Text.","Sets the width of the Text boundaries.","No meaningful internal state.","Some meaningful internal state.","The internal State of a widget.","The identifier of some widget state.","A persistent state widget tree.","","","","","","","","","","","","","","","","The children of the root widget of the Tree.","","","","","","","Reconciliates the current tree with the provided Widget.","Reconciles the children of the tree with the provided list …","Reconciliates the children of the tree with the provided …","Reconciliates the current_children with the provided list …","Downcasts the State to T and returns a mutable reference …","Downcasts the State to T and returns a reference to it.","Creates an empty, stateless Tree with no children.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","Creates a new State.","Creates a new Tree for the provided Widget.","Creates a Tag for a state of type T.","","The State of the Tree.","Creates a Tag for a stateless widget.","The tag of the Tree.","","","","","","","","","","","","","","","","","","","","","","","The window will always be below normal windows.","The window will always be on top of normal windows.","Redraw at the given time.","The window is completely centered on the screen.","The user has requested for the window to close.","A window was closed.","Platform-specific","The platform-specific default position for a new window.","A window-related event.","A file has been dropped into the window.","A file is being hovered over the window.","A file was hovered, but has exited the window.","A window was focused.","The application takes the whole screen of its current …","The application is hidden","","The id of the window.","Platform-specific","A window level groups windows with respect to their …","The reserved window Id for the first window in an Iced …","The mode of a window-based application.","A window was moved.","Redraw the next frame.","The default behavior.","A window was opened.","The position of a window in a given screen.","A request to redraw a window.","A window redraw was requested.","A window was resized.","","The window is positioned with specific coordinates: (X, Y).","A window was unfocused.","The type of user attention to request.","The application appears in its own window.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","Change the icon of a window.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Configure your windows.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new unique window Id.","The new logical height of the window","The position of the opened window. This is relative to the …","The size of the created window. This is its “inner” …","The new logical width of the window","The new logical x location of the window","The new logical y location of the window","Produced when the length of the rgba argument isn’t …","Produced when the number of pixels (rgba.len() / 4) isn’…","An error produced when using from_rgba with invalid …","An window icon normally used for the titlebar or taskbar.","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Builds an Icon from its RGBA pixels in the sRGB color …","","","Calls U::from(self).","Calls U::from(self).","","","","","","","Returns the raw data of the Icon.","","","","","","","","","","","","","","","","","","","","The length of the provided RGBA data.","The provided height.","The amount of pixels of the provided RGBA data.","The provided width.","The product of width and height.","The platform specific window settings of an application.","The window settings of an application.","","","Sets the application id of the window.","","","","","","","","","","","","","","","Whether the window should have a border, a title bar, etc. …","","","","Whether the window will close when the user requests it, …","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","The icon of the window.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","The window Level.","The maximum size of the window.","The minimum size of the window.","Platform specific settings.","The initial position of the window.","Whether the window should be resizable or not.","The initial logical dimensions of the window.","","","Whether the window should be transparent.","","","","","","","","","","","","","","","Whether the window should be visible or not."],"i":[0,18,0,0,0,0,17,19,0,19,0,0,0,19,20,20,20,0,0,17,0,25,0,0,19,3,0,2,0,0,0,2,0,0,0,19,0,0,20,0,0,18,0,25,0,18,0,21,25,4,18,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,2,3,7,4,2,0,9,7,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,12,14,14,18,24,0,12,12,14,14,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,21,7,7,7,0,12,16,2,17,18,19,20,21,22,3,7,24,25,4,12,16,2,17,18,19,20,21,22,3,7,24,25,4,12,24,0,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,7,12,18,27,3,7,24,4,12,3,2,2,12,12,12,12,12,16,2,17,18,19,20,22,3,7,24,25,4,0,7,25,14,20,27,19,21,20,12,12,16,2,17,18,19,20,21,22,3,3,7,24,9,25,4,0,12,12,12,12,12,12,12,12,14,14,14,16,2,2,2,2,17,17,17,17,18,18,18,18,18,19,27,20,20,20,20,21,21,21,21,21,21,21,22,22,22,3,3,3,7,7,24,9,25,25,25,25,25,4,4,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,2,2,12,12,12,12,18,18,18,18,18,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,2,18,0,12,19,25,7,25,21,0,7,7,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,18,18,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,9,9,18,18,12,9,20,12,9,7,0,0,21,12,14,25,9,25,0,2,2,7,4,12,14,18,21,3,7,9,25,4,12,12,12,24,0,12,16,2,22,7,9,18,9,0,9,9,21,7,7,2,3,3,7,25,4,2,0,0,0,2,12,16,2,17,18,19,20,21,22,3,7,24,25,4,12,3,12,12,3,21,0,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,12,14,16,2,17,18,19,27,20,21,22,3,7,24,9,25,4,7,21,0,7,25,0,7,27,3,7,4,3,7,4,0,78,76,77,78,76,0,77,77,76,78,0,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,76,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,76,77,78,0,0,79,80,79,80,79,80,79,80,79,80,79,80,79,80,79,79,80,79,80,79,80,79,80,79,80,80,80,80,79,80,79,80,79,80,79,80,79,80,79,80,79,80,79,79,80,79,80,79,80,79,80,79,80,79,80,79,80,79,80,79,79,0,0,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,82,81,81,81,81,81,81,81,81,81,82,81,86,0,86,83,0,84,83,0,83,85,0,83,83,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,83,84,85,86,89,89,90,88,87,90,89,90,90,89,0,88,0,91,89,87,89,88,88,89,90,91,91,88,90,90,89,88,0,0,89,90,90,0,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,87,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,88,89,90,91,87,87,0,0,0,51,51,92,50,50,50,50,51,92,50,51,92,50,51,92,50,51,92,50,51,92,50,51,92,50,92,51,92,50,92,51,92,50,51,92,50,51,51,92,50,51,92,50,51,92,50,51,92,50,51,92,50,51,92,50,51,92,50,51,92,50,51,50,92,50,51,92,50,51,92,50,51,92,50,51,92,50,51,92,50,51,92,50,51,92,50,51,92,50,0,95,0,0,0,98,96,96,95,0,95,94,93,95,96,94,93,95,96,94,93,95,96,93,94,93,95,96,94,93,95,96,94,93,95,96,94,93,95,96,94,93,95,96,94,96,93,98,98,94,93,95,96,94,93,95,96,94,94,93,95,96,94,93,95,96,94,94,94,94,93,95,96,94,93,95,96,94,94,93,95,96,94,93,95,96,94,93,95,96,94,93,95,96,94,93,95,96,93,94,93,95,96,94,93,95,96,94,93,95,96,94,93,95,96,94,93,95,96,94,93,95,96,94,93,95,96,94,93,95,96,186,186,186,102,102,102,0,0,103,103,102,104,0,0,103,104,104,102,104,103,104,102,102,102,103,104,102,103,104,102,102,102,102,102,102,102,102,103,104,102,103,104,102,103,104,102,103,104,102,102,102,102,103,104,102,102,102,102,102,102,103,104,102,102,103,104,102,102,102,102,102,103,104,102,103,104,102,102,102,102,102,103,104,102,102,102,102,102,103,104,102,103,104,102,103,104,102,103,104,102,103,104,102,102,102,0,102,102,102,102,102,102,102,102,102,103,104,102,102,103,104,102,103,104,102,103,104,102,103,104,102,103,104,102,103,104,102,103,104,102,102,187,188,187,188,187,188,187,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,105,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,0,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,0,105,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,105,106,106,106,106,106,106,106,106,106,105,106,105,106,105,106,105,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,105,106,0,0,110,0,110,109,111,109,109,110,109,111,110,109,111,0,110,109,111,110,109,111,109,111,109,111,110,109,111,110,109,111,110,109,111,0,109,109,110,0,110,109,111,110,109,111,110,109,111,110,109,111,110,110,109,111,110,109,111,110,109,111,110,109,111,110,109,111,110,110,110,110,110,110,110,109,109,110,109,111,0,0,111,0,110,110,109,0,110,109,111,109,110,109,111,110,109,111,110,109,111,110,109,111,110,109,111,110,109,111,110,109,111,110,109,111,0,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,0,113,113,113,113,113,113,113,116,115,0,117,117,0,119,0,117,117,117,0,115,119,119,119,0,115,118,115,119,115,118,119,119,119,115,0,119,116,117,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,0,115,116,117,118,119,115,116,117,118,119,119,115,116,117,118,119,116,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,116,119,116,116,116,116,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,189,190,191,192,191,192,0,121,0,121,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,120,120,120,121,120,121,120,121,120,121,120,121,120,121,120,121,120,121,0,0,0,125,122,125,122,125,122,125,122,125,122,125,122,122,123,125,122,125,125,122,125,122,0,125,122,125,122,125,122,125,122,125,122,125,122,125,122,123,123,125,122,125,125,122,123,125,122,125,122,123,125,122,123,125,122,122,123,125,122,125,125,122,125,122,125,122,125,122,125,122,125,122,125,122,122,0,0,0,0,127,128,124,127,128,124,127,128,124,128,127,128,124,127,128,124,128,34,127,127,128,124,127,128,124,127,128,124,127,128,124,127,127,128,124,127,127,34,127,127,127,128,124,127,128,124,127,128,124,127,128,124,127,128,124,127,128,124,127,128,124,127,128,124,127,128,124,127,127,128,124,127,128,124,127,128,124,127,128,124,127,128,124,127,128,124,127,128,124,127,128,124,127,128,124,34,127,34,127,131,0,0,131,0,130,131,130,131,130,131,130,131,130,131,130,131,130,131,130,131,130,132,132,130,131,130,131,130,131,130,131,130,130,130,131,130,131,130,130,131,130,131,130,131,130,131,130,131,130,131,130,131,130,131,130,131,130,131,130,131,130,131,130,131,48,134,133,133,136,48,135,0,0,48,138,48,0,0,48,0,136,0,48,134,0,136,0,0,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,129,129,133,134,135,136,129,133,134,135,136,138,129,133,134,135,136,129,135,133,134,48,48,0,133,134,135,136,48,48,48,129,133,134,135,136,129,129,133,134,134,134,135,136,129,133,134,135,136,129,133,134,135,136,138,133,134,0,138,138,129,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,129,48,138,138,138,138,138,138,129,129,134,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,129,133,134,135,136,138,138,138,129,138,0,143,146,142,0,143,0,144,144,144,142,0,142,0,144,143,141,144,143,144,145,0,142,144,144,143,144,145,142,142,142,142,146,144,144,144,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,141,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,141,141,144,142,143,144,145,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,141,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,142,141,141,141,141,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,142,143,144,145,146,141,144,141,193,0,147,0,147,0,147,153,148,153,148,153,148,153,148,153,148,147,153,153,148,153,148,148,153,148,147,153,148,148,153,148,148,153,148,153,148,153,148,147,153,153,148,153,148,153,148,153,148,153,148,147,153,153,148,153,148,153,148,153,148,153,148,153,148,153,148,153,148,147,153,0,0,154,154,154,154,154,154,154,155,154,155,154,155,154,155,154,155,154,154,154,154,154,154,154,155,154,155,154,155,154,154,155,154,155,154,155,154,155,154,155,154,155,154,154,154,154,154,154,154,154,155,155,155,154,155,154,155,154,155,154,154,154,154,154,154,154,155,154,155,154,155,154,155,154,155,154,155,154,155,154,154,154,154,154,154,154,155,155,154,154,155,154,154,155,155,154,155,154,154,154,154,154,154,155,154,155,154,155,154,154,154,155,154,155,154,155,154,155,154,155,154,0,0,158,158,158,158,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,158,159,194,195,196,197,194,195,196,197,0,0,0,0,0,160,160,160,160,160,15,160,160,160,15,15,160,160,160,160,160,160,160,160,160,160,160,15,15,160,15,15,0,15,15,15,15,15,0,160,0,160,160,160,160,160,160,160,160,165,0,165,0,0,0,165,0,165,165,165,165,165,165,126,126,126,165,0,126,165,165,165,165,165,165,165,165,0,0,0,126,0,126,165,165,165,165,165,165,165,0,0,169,169,169,169,169,169,169,169,0,169,169,0,169,0,166,0,0,169,169,169,169,169,169,169,169,169,166,169,169,169,169,169,169,169,169,169,166,0,171,0,171,0,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,0,167,0,167,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,170,171,0,0,168,0,168,0,168,0,168,0,0,0,0,47,0,0,46,174,173,47,46,174,173,46,174,173,46,174,173,46,174,173,46,173,46,173,173,46,174,173,174,173,0,46,174,173,46,46,46,174,173,46,174,173,46,174,173,46,46,46,174,173,46,174,173,46,174,173,46,174,173,46,174,173,0,46,46,46,46,46,46,46,46,46,46,173,46,174,173,46,174,173,46,174,173,46,174,173,46,174,173,46,174,173,46,174,173,46,46,161,161,0,0,0,161,114,162,161,114,162,161,114,162,161,114,162,161,114,162,114,162,162,162,161,114,162,114,114,114,0,161,161,114,162,161,114,162,161,114,162,161,114,162,161,114,162,162,161,114,162,161,114,162,161,114,162,161,114,162,161,114,162,161,114,162,162,114,162,114,162,161,114,162,161,114,162,161,114,162,161,114,162,161,114,162,161,114,162,161,114,162,178,178,71,180,176,176,181,180,0,176,176,176,176,179,179,0,0,181,0,177,0,176,71,178,176,0,0,176,176,0,180,176,0,179,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,177,71,176,177,178,179,180,71,181,178,180,176,177,178,179,180,71,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,177,0,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,177,71,0,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,176,177,178,179,180,71,181,177,198,199,199,198,200,200,183,183,0,0,182,183,182,183,182,183,182,183,182,183,182,182,182,183,182,183,183,182,183,182,183,0,182,183,182,183,182,183,182,183,182,183,182,182,183,182,183,183,182,183,182,183,182,183,182,183,182,183,182,183,182,183,201,202,202,202,202,0,0,184,185,184,184,185,184,185,184,185,184,185,184,185,184,185,184,185,185,184,185,184,185,184,185,184,185,184,185,184,185,185,184,185,184,185,184,185,184,185,184,185,185,185,185,185,185,185,185,184,185,185,184,185,184,185,184,185,184,185,184,185,184,185,184,185,185],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[2,2],-1,[]],[[[3,[-1]],[4,[-1]]],[[3,[-1]]],[[6,[],[[5,[]]]]]],[[[7,[-1]],[4,[-1]]],[[7,[-1]]],[[6,[],[[5,[]]]]]],[[[4,[-1]],[4,[-1]]],[[4,[-1]]],[[6,[],[[5,[]]]]]],[[2,2],8],0,[[[9,[-1]]],10,[]],[[[7,[11]]],11],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[12,13],[12,13],[[[14,[-1,-2,-3]]],15,[],[],[]],[[[14,[-1,-2,-3]]],15,[],[],[]],0,0,0,[12,13],[-1,-2,[],[]],[[[14,[-1,-2,-3]]],15,[],[],[]],[[[14,[-1,-2,-3]]],15,[],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[7,[11]]],3],[[[7,[11]]],11],[[[7,[11]]],11],0,[12,12],[16,16],[2,2],[17,17],[18,18],[19,19],[20,20],[21,21],[22,22],[[[3,[-1]]],[[3,[-1]]],23],[[[7,[-1]]],[[7,[-1]]],23],[24,24],[[[25,[-1]]],[[25,[-1]]],23],[[[4,[-1]]],[[4,[-1]]],23],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[12,12],26],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[7,[11]],3],10],[[],12],[[],18],[[],27],[[],[[3,[-1]]],28],[[],[[7,[-1]]],28],[[],24],[[],[[4,[-1]]],28],[12,13],[[[3,[-1]],[3,[-1]]],-1,[29,30]],[[2,2],-1,[]],[[2,11],-1,[]],[[12,13],10],[[12,31],10],[[12,12],10],[[12,13],10],[[12,31],10],[[16,16],10],[[2,2],10],[[17,17],10],[[18,18],10],[[19,19],10],[[20,20],10],[[22,22],10],[[[3,[-1]],[3,[-1]]],10,32],[[[7,[-1]],[7,[-1]]],10,32],[[24,24],10],[[[25,[-1]],[25,[-1]]],10,32],[[[4,[-1]],[4,[-1]]],10,32],0,[[[7,[11]],11],[[7,[11]]]],[[25,-1],25,[[33,[25]]]],[[[14,[-1,-2,-3]],-4],[[14,[-1,-2,-3]]],[],[],34,[[33,[18]]]],[20,35],[27,36],[[19,25,25],25],[[21,25,25],21],[20,20],[[12,37],[[39,[8,38]]]],[[12,37],[[39,[8,38]]]],[[16,37],40],[[2,37],40],[[17,37],40],[[18,37],40],[[19,37],40],[[20,37],40],[[21,37],40],[[22,37],40],[[[3,[-1]],37],40,41],[[[3,[-1]],37],40,42],[[[7,[-1]],37],40,42],[[24,37],40],[[[9,[-1]],37],40,42],[[[25,[-1]],37],40,42],[[[4,[-1]],37],40,42],0,[31,12],[13,12],[[[43,[13]]],12],[-1,-1,[]],[[[44,[13]]],12],[13,12],[[[45,[13]]],12],[31,12],[-1,-1,[]],[[[46,[-1,-2]]],[[14,[-3,-1,-2]]],47,48,[]],[13,[[14,[-1,-2,-3]]],[],47,48],[-1,-1,[]],[-1,-1,[]],[11,2],[49,2],[16,2],[50,17],[18,17],[-1,-1,[]],[51,17],[-1,-1,[]],[[[52,[11]]],18],[53,18],[54,18],[[[52,[11]]],18],[-1,-1,[]],[-1,-1,[]],[22,20],[35,20],[11,20],[-1,-1,[]],[[[52,[11]]],21],[-1,-1,[]],[[[52,[35]]],21],[35,21],[[[52,[35]]],21],[[[52,[11]]],21],[11,21],[35,22],[-1,-1,[]],[11,22],[[[8,[-1,-1]]],[[3,[-1]]],30],[-1,-1,[]],[[[52,[-1]]],[[3,[-1]]],30],[[[7,[55]]],[[7,[11]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[52,[35]]],25],[-1,-1,[]],[[[4,[11]]],25],[21,25],[[[52,[11]]],25],[-1,-1,[]],[25,[[4,[11]]]],[[[52,[-1]]],[[4,[-1]]],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[56,[[57,[2]]]],[58,[[57,[2]]]],[-1,12,[[60,[],[[59,[31]]]]]],[-1,12,[[60,[],[[59,[61]]]]]],[-1,12,[[60,[],[[59,[13]]]]]],[-1,12,[[60,[],[[59,[31]]]]]],[[11,11,11,11],18],[[11,11,11],18],[[49,49,49],18],[[11,11,11,11],18],[[49,49,49,11],18],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[13,[[39,[12]]]],[36,[[57,[2]]]],0,0,[[12,-1],8,62],[[19,-1],8,62],[[[25,[-1]],-2],8,63,62],0,0,[21,11],0,[[[7,[11]],[7,[11]]],[[57,[[7,[11]]]]]],[[[7,[11]],[7,[11]]],10],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[18,[[52,[11]]]],[18,[[52,[49]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[9,[-1]]],8,[]],[[[9,[-1]]],8,[]],[18,18],[18,8],[12,10],[[[9,[-1]]],10,[]],[20,10],[12,10],[[[9,[-1]]],10,[]],[[[7,[11]],7],10],0,0,0,[12,64],[[[14,[-1,-2,-3]],-5],[[14,[-4,-2,-3]]],[],[],34,[],[[65,[-1],[[5,[-4]]]]]],[[25,25],25],[[[9,[-1]],[9,[-2]],-3],8,[],[],[[65,[-2],[[5,[-1]]]]]],[[25,25],25],0,[[2,11],-1,[]],[[2,2],-1,[]],[[[7,[11]],11],[[7,[11]]]],[[[4,[-1]],-1],[[4,[-1]]],[[66,[],[[5,[]]]],67]],[-1,12,[[68,[13]]]],[-4,[[14,[-1,-2,-3]]],[],[],34,[[15,[-1,-2,-3]]]],[[11,11,11,11],18],[11,21],[[-1,-1],[[3,[-1]]],30],[[3,25],[[7,[11]]]],[[[69,[-1]]],[[9,[-1]]],[]],[[-1,-1],[[25,[-1]]],[]],[[-1,-1],[[4,[-1]]],[]],[13,12],[[64,[70,[49]]],12],[13,12],0,0,[[12,12],[[57,[26]]]],[[16,16],[[57,[26]]]],[[2,2],[[57,[26]]]],[[22,22],[[57,[26]]]],[[[7,[11]]],3],[[[9,[-1]],-1],8,[]],0,[[[9,[-1]]],[[57,[71]]],[]],0,[[[9,[-1]],71],8,[]],[[[9,[-1]],-2],8,[],72],0,[[[7,[11]]],25],[[[7,[11]]],[[7,[55]]]],[[2,2],-1,[]],[[[3,[-1]],[4,[-1]]],[[3,[-1]]],[[73,[],[[5,[]]]]]],[[[3,[-1]],[3,[-1]]],[[4,[-1]]],[[73,[],[[5,[]]]]]],[[[7,[-1]],[4,[-1]]],[[7,[-1]]],[[73,[],[[5,[]]]]]],[[25,25],-1,[]],[[[4,[-1]],[4,[-1]]],[[4,[-1]]],[[73,[],[[5,[]]]]]],[[2,2],8],0,0,0,[[2,7],[[8,[3,3]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,12,[]],[-1,12,[]],[-1,31,[]],[12,31],[-1,31,[]],0,0,[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[7,[11]],[7,[11]]],[[7,[11]]]],[21,11],0,0,0,0,[25,[[7,[11]]]],[[27,[70,[49]]],8],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[76,76],[77,77],[78,78],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[76,76],10],[[77,77],10],[[78,78],10],[[76,37],40],[[77,37],40],[[78,37],40],[78,76],[-1,-1,[]],[77,76],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[76,-1],8,62],[[77,-1],8,62],[[78,-1],8,62],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[79,79],[80,80],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[],79],[[],80],[[79,79],10],[[80,80],10],[[79,37],40],[[80,37],40],[-1,-1,[]],[11,80],[49,80],[[[52,[11]]],80],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,79,[[33,[80]]]],0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[81,81],[[-1,-2],8,[],[]],[-1,-2,[],[]],[[81,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[82,[[57,[31]]]],[81,[[57,[31]]]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[82,31],8],[[81,31],8],0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[83,83],[84,84],[85,85],[86,86],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[83,83],10],[[84,84],10],[[85,85],10],[[86,86],10],[[83,37],40],[[84,37],40],[[85,37],40],[[86,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[86,86],86],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[87,87],[88,88],[89,89],[90,90],[91,91],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],87],[[],88],[[],89],[[],90],[[],91],[[87,87],10],[[88,88],10],[[89,89],10],[[90,90],10],[[91,91],10],0,[[87,37],40],[[88,37],40],[[89,37],40],[[90,37],40],[[91,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[87,-1],8,62],[[88,-1],8,62],[[89,-1],8,62],[[90,-1],8,62],[[91,-1],8,62],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[13,87],0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[50,11,18],50],[[50,-1],50,[[60,[],[[59,[92]]]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[51,51],[92,92],[50,50],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],92],[[51,51],10],[[92,92],10],[[50,50],10],[[51,37],40],[[92,37],40],[[50,37],40],[50,51],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[51,11],51],[-1,50,[[33,[2]]]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[93,[[70,[49]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[94,94],[93,93],[95,95],[96,96],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[94,95],[[],96],[93,[[70,[49]]]],[[[98,[],[[97,[-1]]]],-1],[[25,[55]]],[23,63]],[[[98,[],[[97,[-1]]]],-1,96,7],8,[23,63]],[[94,94],10],[[93,93],10],[[95,95],10],[[96,96],10],[[94,37],40],[[93,37],40],[[95,37],40],[[96,37],40],[-1,94,[[33,[99]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,94,[[68,[[70,[49]]]],100,101]],[-1,94,[[33,[99]]]],[[55,55,-1],94,[[68,[[70,[49]]]],100,101]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[94,-1],8,62],[[93,-1],8,62],[[95,-1],8,62],[[96,-1],8,62],[94,36],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,93,[[68,[[70,[49]]]],100,101]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[],102],[102,10],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[102,102],102],[[102,102],8],[[102,102],102],[[102,102],8],[102,55],[[102,102],102],[[102,102],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[103,103],[104,104],[102,102],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[102,102],26],[102,10],[102,102],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[102,102],10],[102,10],[[],102],[[102,102],102],[[],102],[[103,103],10],[[104,104],10],[[102,102],10],[[102,-1],8,[[60,[],[[59,[102]]]]]],[[103,37],40],[[104,37],40],[[102,37],40],[[102,37],40],[[102,37],40],[[102,37],40],[[102,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[55,[[57,[102]]]],[55,102],[55,102],[-1,102,[[60,[],[[59,[102]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[102,-1],8,62],[[102,102],8],[[102,102],102],[[102,102],10],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[102,10],[102,10],0,[102,10],[102,102],[[102,102],[[57,[26]]]],[[102,102],8],[[102,102,10],8],[102,10],[[102,102],102],[[102,102],8],[[102,102],102],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[102,102],8],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[102,102],102],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[105,[[105,[13]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[105,[-1]]],[[105,[-1]]],23],[106,106],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[[105,[-1]],[105,[-1]]],26,107],[[106,106],26],[-1,-2,[],[]],[-1,-2,[],[]],[[[105,[-1]],[105,[-1]]],10,32],[[106,106],10],[[[105,[-1]],37],40,42],[[106,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[105,[-1]],-2],8,63,62],[[106,-1],8,62],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[105,[-1]],[105,[-1]]],[[57,[26]]],108],[[106,106],[[57,[26]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[109,76,76,25],109],[[109,76,76,25],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[110,-1,-2],109,[[33,[20]]],[[33,[20]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[109,7],[111,7],[109,[[70,[109]]]],[111,[[0,[[112,[],[[59,[111]]]]]]]],[110,110],[109,109],[111,111],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[110,-1,-2,-3],109,[[33,[20]]],[[33,[20]]],[[72,[110],[[5,[109]]]]]],[[109,21],109],[[],109],[[110,110],10],0,[[110,37],40],[[109,37],40],[[111,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[110,-1],110,[[33,[20]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[110,110],[110,25],[[110,11],110],[[110,11],110],[110,25],[[110,11],110],[[110,11],110],[[109,-1],109,[[33,[3]]]],[[109,-1],8,[[33,[3]]]],[[25,25],110],[25,109],[109,111],[[110,11,-1,-2],109,[[72,[110],[[5,[109]]]]],[[72,[110],[[5,[109]]]]]],[[110,-1,-2,-3,-4],109,[[33,[20]]],[[33,[20]]],[[33,[21]]],[[72,[110],[[5,[109]]]]]],[111,3],[[110,-1,-2,-3,-4,-5],109,[[33,[20]]],[[33,[20]]],[[33,[21]]],[[72,[110],[[5,[109]]]]],[[72,[109,25],[[5,[109]]]]]],[[110,-1,-2,25],25,[[33,[20]]],[[33,[20]]]],[[110,-1],110,[[33,[25]]]],[109,25],[[110,-1,-2,-3],109,[[33,[20]]],[[33,[20]]],[[72,[110],[[5,[25]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[109,-1],109,[[33,[4]]]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[110,-1],110,[[33,[20]]]],[[25,[69,[109]]],109],[[4,109],111],0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[113,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[113,-1,110,20,20,21,11,76,[70,[[14,[-2,-3,-1]]]],[70,[114]]],109,34,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[115,115],[116,116],[117,117],[118,118],[119,119],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[119,119],26],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],116],[[],119],[[115,115],10],[[116,116],10],[[117,117],10],[[118,118],10],[[119,119],10],[[115,37],40],[[116,37],40],[[117,37],40],[[118,37],40],[[119,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[115,-1],8,62],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[116,7],10],[[119,119],[[57,[26]]]],[116,[[57,[3]]]],[[116,3],[[57,[3]]]],[[116,7],[[57,[3]]]],[[116,7],[[57,[3]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[120,120],[121,121],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[120,37],40],[[121,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[120,121],[[3,[57,[120]]],120],[120,3],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[122,[-1,-2,-3]]],[],[],34],[[123,-1,-2,124,111,116],8,34,[]],[[[125,[-1,-2,-3]],-3,-2,124,111,116],8,[],[],34],[[[122,[-1,-2,-3]],-3,-2,124,111,116],8,[],[],34],[-1,-1,[]],[[[122,[-1,-2,-3]]],[[125,[-1,-2,-3]]],[],[],34],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[70,[[14,[-1,-2,-3]]]],114,111,-3],[[57,[[125,[-1,-2,-3]]]]],[],[],34],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[125,[-1,-2,-3]],111,-3,3],10,[],[],34],[[[122,[-1,-2,-3]],111,-3,3],10,[],[],34],[[123,111,-1,3],10,34],[[123,-1,25,3,4],109,34],[[[125,[-1,-2,-3]],-3,25,4],109,[],[],34],[[[122,[-1,-2,-3]],-3,25,3,4],109,[],[],34],[[[125,[-1,-2,-3]],65],[[125,[-4,-2,-3]]],[],[],34,[]],[[[125,[-1,-2,-3]],111,116,7,-3],119,[],[],34],[[[122,[-1,-2,-3]],111,116,7,-3],119,[],[],34],[[123,111,116,7,-1],119,34],[[3,[43,[123]]],[[125,[-1,-2,-3]]],[],[],34],[[],[[122,[-1,-2,-3]]],[],[],34],[[[125,[-1,-2,-3]],83,111,116,-3,82,[9,[-1]]],86,[],[],34],[[[122,[-1,-2,-3]],83,111,116,-3,82,[9,[-1]]],86,[],[],34],[[123,83,111,116,-1,82,[9,[-2]]],86,34,[]],[[[125,[-1,-2,-3]],111,-3,126],8,[],[],34],[[[122,[-1,-2,-3]],111,-3,126],8,[],[],34],[[123,111,-1,126],8,34],[[[125,[-1,-2,-3]],111,-3],[[57,[[125,[-1,-2,-3]]]]],[],[],34],[[[122,[-1,-2,-3]],111,-3],[[57,[[125,[-1,-2,-3]]]]],[],[],34],[[[122,[-1,-2,-3]]],[[125,[-1,-2,-3]]],[],[],34],[[123,111,-1],[[57,[[125,[-2,-3,-1]]]]],34,[],[]],[[[125,[-1,-2,-3]]],3,[],[],34],[[[122,[-1,-2,-3]],-4],[[122,[-1,-2,-3]]],[],[],34,[[33,[[125,[-1,-2,-3]]]]]],[[[125,[-1,-2,-3]],4],[[125,[-1,-2,-3]]],[],[],34],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[69,[[125,[-1,-2,-3]]]]],[[122,[-1,-2,-3]]],[],[],34],0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[34,8],[127,8],[127,127],[128,128],[124,124],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],127],[[],128],[[],124],[127,-1,[]],[127,22],[[128,128],10],[[124,124],10],[[127,-1,3,18,7],8,[]],[[127,-1,3,18,7],8,[]],[[34,128,-1],8,[[33,[17]]]],[[127,128,-1],8,[[33,[17]]]],[[127,[129,[-1]],3,18,7],8,[]],[[127,37],40],[[128,37],40],[[124,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[127,[44,[[70,[49]]]]],8],[[],127],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[34,7,-1],8,[[72,[34]]]],[[127,7,-1],8,[[72,[127]]]],[[34,4,-1],8,[[72,[34]]]],[[127,4,-1],8,[[72,[127]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[130,130],[131,131],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[130,131],[[132,130],[[25,[55]]]],[[132,130,[57,[18]],7],8],[[130,130],10],[[131,131],10],[[130,37],40],[[131,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,130,[[33,[[44,[[70,[49]]]]]]]],[-1,130,[[33,[99]]]],[-1,-2,[],[]],[-1,-2,[],[]],[[130,-1],8,62],[[131,-1],8,62],[130,36],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[129,[-1]]],[[129,[-1]]],23],[133,133],[134,134],[135,135],[136,136],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[[138,[],[[137,[-1]]]],[129,[-1]]],136,[67,32]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[135,64],[[],133],[[],134],[[[48,[],[[137,[-1]],[139,[-2]],[140,[-3]]]]],-1,[67,32],[[138,[],[[137,[-1]]]]],[[141,[],[[137,[-1]]]]]],[[[48,[],[[137,[-1]],[139,[-2]],[140,[-3]]]]],22,[67,32],[[138,[],[[137,[-1]]]]],[[141,[],[[137,[-1]]]]]],0,[[133,133],10],[[134,134],10],[[135,135],10],[[136,136],10],[[[48,[],[[137,[-1]],[139,[-2]],[140,[-3]]]],-3,3,18,7],8,[67,32],[[138,[],[[137,[-1]]]]],[[141,[],[[137,[-1]]]]]],[[[48,[],[[137,[-1]],[139,[-2]],[140,[-3]]]],-2,3,18,7],8,[67,32],[[138,[],[[137,[-1]]]]],[[141,[],[[137,[-1]]]]]],[[[48,[],[[137,[-1]],[139,[-2]],[140,[-3]]]],[129,[-1]],3,18,7],8,[67,32],[[138,[],[[137,[-1]]]]],[[141,[],[[137,[-1]]]]]],[[[129,[-1]],37],40,42],[[133,37],40],[[134,37],40],[[135,37],40],[[136,37],40],0,[-1,-1,[]],[-1,-1,[]],[22,134],[11,134],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[138,[],[[137,[-1]]]],64,64],[[57,[3]]],[67,32]],[[133,-1],8,62],[[134,-1],8,62],0,[[[138,[],[[137,[-1]]]],3],[[57,[135]]],[67,32]],[[[138,[],[[137,[-1]]]]],77,[67,32]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[48,[],[[137,[-1]],[139,[-2]],[140,[-3]]]],[44,[[70,[49]]]]],8,[67,32],[[138,[],[[137,[-1]]]]],[[141,[],[[137,[-1]]]]]],[[[138,[],[[137,[-1]]]]],25,[67,32]],[[[138,[],[[137,[-1]]]]],11,[67,32]],[[[138,[],[[137,[-1]]]]],11,[67,32]],[[[138,[],[[137,[-1]]]]],11,[67,32]],[[[138,[],[[137,[-1]]]]],11,[67,32]],[[[138,[],[[137,[-1]]]],25],8,[67,32]],0,0,[[134,22],22],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[138,[],[[137,[-1]]]],[129,[-1]]],8,[67,32]],[[[138,[],[[137,[-1]]]],[129,[-1]]],8,[67,32]],[[[138,[],[[137,[-1]]]]],78,[67,32]],0,[[[129,[-1]]],[[138,[],[[137,[-1]]]]],[67,32]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[],[[137,[-1]]]]],25,[67,32,28]],[142,142],[143,143],[144,144],[145,145],[146,146],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[],[[137,[-1]]]]],146,[67,32,28]],[[[141,[],[[137,[-1]]]]],[[8,[64,64]]],[67,32,28]],[144,145],[[142,142],10],[[143,143],10],[[144,144],10],[[145,145],10],[[142,37],40],[[143,37],40],[[144,37],40],[[145,37],40],[[146,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[],[[137,[-1]]]],-1,-2,-3],8,[67,32,28],147,[[65,[],[[5,[[148,[-1]]]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[142,10],[[[141,[],[[137,[-1]]]],64],[[57,[13]]],[67,32,28]],[[[141,[],[[137,[-1]]]]],64,[67,32,28]],[[[141,[],[[137,[-1]]]],142],8,[67,32,28]],[[[141,[],[[137,[-1]]]]],[[57,[31]]],[67,32,28]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[],[[137,[-1]]]],25,-1,22,134,-2],8,[67,32,28],147],[144,144],[13,[[141,[],[[137,[-1]]]]],[67,32,28]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[147,[],[[149,[-1]],[150,[-2]],[151,[-3]]]],64],8,[32,23],[],[[112,[],[[59,[[8,[[152,[64]],-2]]]]]]]],[[153,64],8],[153,153],[[[148,[-1]]],[[148,[-1]]],23],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[[147,[],[[149,[-1]],[150,[-2]],[151,[-3]]]]],64,[32,23],[],[[112,[],[[59,[[8,[[152,[64]],-2]]]]]]]],[153,64],[[],[[148,[-1]]],[]],[[[148,[-1]],[148,[-1]]],10,32],[[153,37],40],[[[148,[-1]],37],40,42],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[147,[],[[149,[-1]],[150,[-2]],[151,[-3]]]],13],-3,[32,23],[],[[112,[],[[59,[[8,[[152,[64]],-2]]]]]]]],[[153,13],-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[147,[],[[149,[-1]],[150,[-2]],[151,[-3]]]]],[32,23],[],[[112,[],[[59,[[8,[[152,[64]],-2]]]]]]]],[-1,153,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[147,[],[[149,[-1]],[150,[-2]],[151,[-3]]]],-1],8,[32,23],[],[[112,[],[[59,[[8,[[152,[64]],-2]]]]]]]],[[153,-1],8,[]],0,0,0,0,0,0,0,0,[[154,154],154],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[155,154],155],[[154,154],154],[[155,154],8],[[154,154],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[154,156],[154,156],[154,156],[154,36],[154,11],[154,56],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[155,154],[[57,[155]]]],[[154,154],[[57,[154]]]],[[154,55],[[57,[154]]]],[[155,155],[[57,[154]]]],[[154,55],[[57,[154]]]],[[155,154],[[57,[155]]]],[[154,154],[[57,[154]]]],[155,155],[154,154],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[155,155],26],[[154,154],26],[-1,-2,[],[]],[-1,-2,[],[]],[[],154],[[154,55],154],[[154,55],8],[[154,154],11],[[154,154],56],[[154,11],154],[[154,56],154],[[155,155],154],[155,154],[[155,155],10],[[154,154],10],[[155,37],[[39,[8,38]]]],[[154,37],[[39,[8,38]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[36,154],[36,154],[36,154],[36,154],[11,154],[56,154],[-1,-2,[],[]],[-1,-2,[],[]],[[155,-1],8,62],[[154,-1],8,62],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[154,10],[[154,55],154],[[154,55],8],[[154,11],154],[[154,56],154],[[36,55],154],[[],155],[[155,155],[[57,[26]]]],[[154,154],[[57,[26]]]],[[154,154],154],[[155,155],154],[[154,55],154],[[154,154],154],[[155,155],154],[[155,154],155],[[154,154],154],[[155,154],8],[[154,154],8],[154,55],[154,55],[154,55],[-1,154,[[112,[],[[59,[154]]]]]],[-1,154,[[112,[],[[59,[154]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[11,[[39,[154,157]]]],[56,[[39,[154,157]]]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[158,158],[159,159],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[158,158],10],[[159,159],10],[[158,37],40],[[159,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[159,-1],8,62],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[15,[[69,[114]]]],[160,160],[[-1,-2],8,[],[]],[-1,-2,[],[]],[[15,114],8],[[15,114,-1,-2,124,111,116,7],8,34,[]],[[160,160],10],[[160,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[160,-1],8,62],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[15,114,-1,110],109,34],[[15,114,111,116,7,-1],119,34],[-1,160,[[33,[[44,[13]]]]]],[[15,114,83,111,116,-1,82,[9,[-2]],7],86,34,[]],[[15,114,111,-1,126],8,34],0,[[15,114,111,-1],[[57,[[125,[-2,-3,-1]]]]],34,[],[]],[15,[[25,[20]]]],[15,[[25,[20]]]],[15,161],[15,162],0,[-1,-2,[],[]],0,[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],160],0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[126,[57,[160]],7,163],8],[[126,164,[57,[160]]],8],[126,[[165,[-1]]],[]],[[[165,[-1]],37],40,42],0,[[126,166,[57,[160]]],8],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[43,[126]],-3],[[0,[[126,[-2]]]]],[],[],[[65,[-1],[[5,[-2]]]]]],[[160,-2],[[0,[[126,[-1]]]]],[],[[126,[-1]]]],0,[[126,167,[57,[160]],7,4],8],0,[[126,168,[57,[160]]],8],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[169,169],[[-1,-2],8,[],[]],[-1,-2,[],[]],[[],[[0,[[126,[-1]]]]],[]],[[],169],[[169,169],10],[[],[[0,[[126,[160]]]]]],[[169,37],40],[160,[[0,[[126,[-1]]]]],[]],[166,8],[[],[[0,[[126,[-1]]]]],[]],[[],[[0,[[126,[-1]]]]],[]],0,[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[166,10],[-1,-2,[],[]],0,[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[166,8],0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[170,170],[171,171],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],170],[[],171],[[170,170],10],[[171,171],10],[[170,37],40],[[171,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[160,170],[[0,[[126,[-1]]]]],[]],[[167,170],8],[[160,171],[[0,[[126,[-1]]]]],[]],[[167,171],8],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[[160,64],[[0,[[126,[-1]]]]],[]],[[168,64],8],[160,[[0,[[126,[-1]]]]],[]],[168,8],[160,[[0,[[126,[-1]]]]],[]],[168,8],[160,[[0,[[126,[-1]]]]],[]],[168,8],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[[47,[],[[172,[-1]]]],-1],173,[28,23]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[46,[-1,-2]]],[[46,[-1,-2]]],47,48],[173,173],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[174,[-1]]],[28,138]],[[],173],[[-1,124,111,174,173,7],8,48],[[[46,[-1,-2]],114,-2,-1,124,111,116,7],8,47,48],[[[174,[-1]],37],40,[42,138]],[[173,37],40],[[[46,[-1,-2]],-3],[[46,[-1,-2]]],47,48,33],[-1,-1,[]],[13,[[46,[-1,-2]]],47,48],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[46,[-1,-2]],-3],[[46,[-1,-2]]],47,48,[[33,[20]]]],[[[46,[-1,-2]],77],[[46,[-1,-2]]],47,48],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[174,-1,110,20,20,13,134,[57,[22]],57,77,78,133],109,48],[[[46,[-1,-2]],114,-2,110],109,47,48],[[[46,[-1,-2]],-3],[[46,[-1,-2]]],47,48,[[33,[134]]]],[-1,[[46,[-2,-3]]],[[33,[[44,[13]]]]],47,48],[[[46,[-1,-2]],133],[[46,[-1,-2]]],47,48],[[[46,[-1,-2]],-3],[[46,[-1,-2]]],47,48,[[33,[22]]]],[[[46,[-1,-2]]],[[25,[20]]],47,48],[[[46,[-1,-2]]],161,47,48],[[[46,[-1,-2]],-3],[[46,[-1,-2]]],47,48,33],[[[46,[-1,-2]]],162,47,48],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[46,[-1,-2]],78],[[46,[-1,-2]]],47,48],[[[46,[-1,-2]],-3],[[46,[-1,-2]]],47,48,[[33,[20]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[162,162],[[-1,-2],8,[],[]],[[162,162],26],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[114,-1],8,[[175,[15]]]],[[114,[70,[-1]]],8,[[175,[15]]]],[[114,[70,[-1]],-2,-3],8,[],[[65,[114,-1]]],[[65,[-1],[[5,[114]]]]]],[[[69,[114]],[70,[-1]],-2,-3,-4],8,[],[[65,[114,-1]]],[[65,[64],[[5,[10]]]]],[[65,[-1],[[5,[114]]]]]],[161,-1,[]],[161,-1,[]],[[],114],[[162,162],10],[[161,37],40],[[114,37],40],[[162,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[162,-1],8,62],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,161,[]],[-1,114,[[175,[15]]]],[[],162],[[162,162],[[57,[26]]]],0,[[],162],0,[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[176,176],[177,177],[178,178],[179,179],[180,180],[71,71],[181,181],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[[177,177],26],[[71,71],26],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],178],[[],180],[[176,176],10],[[177,177],10],[[178,178],10],[[179,179],10],[[180,180],10],[[71,71],10],[[176,37],40],[[177,37],40],[[178,37],40],[[179,37],40],[[180,37],40],[[71,37],40],[[181,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[177,-1],8,62],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[177,177],[[57,[26]]]],[[71,71],[[57,[26]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],177],0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[182,182],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[182,37],40],[[183,37],40],[[183,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[69,[49]],55,55],[[39,[182,183]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[182,[[8,[[69,[49]],[25,[55]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,12,[]],[-1,31,[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[184,184],[185,185],[[-1,-2],8,[],[]],[[-1,-2],8,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],184],[[],185],[[184,184],10],0,[[184,37],40],[[185,37],40],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,[[39,[-2,[74,[-2]]]]],[],[]],[-1,75,[]],[-1,75,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0],"c":[497],"p":[[10,"TransformMatrix",3917],[5,"Radians",0],[5,"Point",0],[5,"Vector",0],[17,"Output"],[10,"Add",3918],[5,"Rectangle",0],[1,"tuple"],[5,"Shell",0],[1,"bool"],[1,"f32"],[5,"SmolStr",0],[1,"str"],[5,"Element",0],[10,"Widget",3160],[5,"Degrees",0],[6,"Background",0],[5,"Color",0],[6,"ContentFit",0],[6,"Length",0],[5,"Padding",0],[5,"Pixels",0],[10,"Clone",3919],[5,"Shadow",0],[5,"Size",0],[6,"Ordering",3920],[5,"Hasher",0],[10,"Default",3921],[10,"Float",3922],[10,"Num",3923],[5,"String",3924],[10,"PartialEq",3920],[10,"Into",3925],[10,"Renderer",2363],[1,"u16"],[1,"u64"],[5,"Formatter",3926],[5,"Error",3926],[6,"Result",3927],[8,"Result",3926],[10,"Display",3926],[10,"Debug",3926],[5,"Box",3928],[6,"Cow",3929],[5,"Arc",3930],[5,"Text",3365],[10,"StyleSheet",3365],[10,"Renderer",2531],[1,"u8"],[5,"Linear",1166],[6,"Gradient",1166],[1,"array"],[8,"Srgba",3931],[8,"Srgb",3931],[1,"u32"],[1,"f64"],[6,"Option",3932],[1,"i64"],[17,"Item"],[10,"IntoIterator",3933],[1,"char"],[10,"Hasher",3934],[10,"Hash",3934],[1,"usize"],[10,"Fn",3935],[10,"Mul",3918],[10,"Copy",3936],[10,"AsRef",3925],[5,"Vec",3937],[1,"slice"],[6,"RedrawRequest",3557],[10,"FnOnce",3935],[10,"Sub",3918],[5,"OutOfBounds",3938],[5,"TypeId",3939],[6,"Alignment",680],[6,"Horizontal",680],[6,"Vertical",680],[5,"Border",775],[5,"Radius",775],[5,"Null",838],[10,"Clipboard",838],[6,"Event",869],[6,"PlatformSpecific",869],[6,"MacOS",869],[6,"Status",869],[5,"Font",987],[6,"Family",987],[6,"Weight",987],[6,"Stretch",987],[6,"Style",987],[5,"ColorStop",1166],[5,"Bytes",1258],[5,"Handle",1258],[6,"Data",1258],[6,"FilterMethod",1258],[17,"Handle"],[10,"Renderer",1258],[5,"PathBuf",3940],[10,"Send",3936],[10,"Sync",3936],[5,"Modifiers",1392],[6,"Event",1392],[6,"Location",1392],[6,"Key",1537],[6,"Named",1537],[10,"Ord",3920],[10,"PartialOrd",3920],[5,"Node",1907],[5,"Limits",1907],[5,"Layout",1907],[10,"Iterator",3941],[6,"Axis",2023],[5,"Tree",3465],[6,"Button",2049],[6,"Cursor",2049],[6,"Event",2049],[6,"ScrollDelta",2049],[6,"Interaction",2049],[5,"Click",2228],[6,"Kind",2228],[5,"Group",2286],[10,"Overlay",2286],[5,"Style",2363],[5,"Element",2286],[10,"Operation",3209],[5,"Null",2363],[5,"Quad",2363],[5,"Text",2531],[5,"Handle",2466],[6,"Data",2466],[10,"Renderer",2466],[6,"Shaping",2531],[6,"LineHeight",2531],[6,"Hit",2531],[6,"Difference",2531],[17,"Font"],[10,"Paragraph",2531],[17,"Paragraph"],[17,"Editor"],[10,"Editor",2722],[6,"Action",2722],[6,"Edit",2722],[6,"Motion",2722],[6,"Direction",2722],[6,"Cursor",2722],[10,"Highlighter",2901],[5,"Format",2901],[17,"Settings"],[17,"Highlight"],[17,"Iterator"],[5,"Range",3942],[5,"PlainText",2901],[5,"Duration",2971],[5,"Instant",2971],[1,"u128"],[5,"TryFromFloatSecsError",3943],[6,"Event",3093],[5,"Finger",3093],[5,"Id",3160],[6,"State",3465],[5,"Tag",3465],[10,"FnMut",3935],[10,"Any",3939],[6,"Outcome",3209],[10,"Focusable",3250],[10,"Scrollable",3289],[10,"TextInput",3356],[5,"Count",3250],[5,"AbsoluteOffset",3289],[5,"RelativeOffset",3289],[17,"Style"],[5,"Appearance",3365],[5,"State",3365],[10,"Borrow",3944],[6,"Event",3557],[5,"Id",3557],[6,"Level",3557],[6,"Mode",3557],[6,"Position",3557],[6,"UserAttention",3557],[5,"Icon",3788],[6,"Error",3788],[5,"PlatformSpecific",3849],[5,"Settings",3849],[15,"Rgba",1389],[15,"KeyPressed",1530],[15,"KeyReleased",1530],[15,"WheelScrolled",2222],[15,"CursorMoved",2222],[15,"Lines",2224],[15,"Pixels",2224],[15,"Scroll",2900],[15,"FingerPressed",3152],[15,"FingerMoved",3152],[15,"FingerLifted",3152],[15,"FingerLost",3152],[15,"Resized",3782],[15,"Opened",3782],[15,"Moved",3782],[15,"ByteCountNotDivisibleBy4",3844],[15,"DimensionsVsPixelCount",3844]],"b":[[119,"impl-Borrow%3Cdyn+Widget%3CMessage,+Theme,+Renderer%3E%3E-for-%26Element%3C\'a,+Message,+Theme,+Renderer%3E"],[120,"impl-Borrow%3Cdyn+Widget%3CMessage,+Theme,+Renderer%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[217,"impl-Div-for-Radians"],[218,"impl-Div%3Cf32%3E-for-Radians"],[219,"impl-PartialEq%3C%26str%3E-for-SmolStr"],[220,"impl-PartialEq%3C%26String%3E-for-SmolStr"],[221,"impl-PartialEq-for-SmolStr"],[222,"impl-PartialEq%3Cstr%3E-for-SmolStr"],[223,"impl-PartialEq%3CString%3E-for-SmolStr"],[245,"impl-Display-for-SmolStr"],[246,"impl-Debug-for-SmolStr"],[255,"impl-Display-for-Point%3CT%3E"],[256,"impl-Debug-for-Point%3CT%3E"],[263,"impl-From%3CString%3E-for-SmolStr"],[264,"impl-From%3C%26mut+str%3E-for-SmolStr"],[265,"impl-From%3CBox%3Cstr%3E%3E-for-SmolStr"],[267,"impl-From%3CCow%3C\'a,+str%3E%3E-for-SmolStr"],[268,"impl-From%3C%26str%3E-for-SmolStr"],[269,"impl-From%3CArc%3Cstr%3E%3E-for-SmolStr"],[270,"impl-From%3C%26String%3E-for-SmolStr"],[272,"impl-From%3CText%3C\'a,+Theme,+Renderer%3E%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[273,"impl-From%3C%26str%3E-for-Element%3C\'a,+Message,+Theme,+Renderer%3E"],[276,"impl-From%3Cf32%3E-for-Radians"],[277,"impl-From%3Cu8%3E-for-Radians"],[278,"impl-From%3CDegrees%3E-for-Radians"],[279,"impl-From%3CLinear%3E-for-Background"],[280,"impl-From%3CColor%3E-for-Background"],[282,"impl-From%3CGradient%3E-for-Background"],[284,"impl-From%3C%5Bf32;+3%5D%3E-for-Color"],[285,"impl-From%3CAlpha%3CRgb,+f32%3E%3E-for-Color"],[286,"impl-From%3CRgb%3E-for-Color"],[287,"impl-From%3C%5Bf32;+4%5D%3E-for-Color"],[290,"impl-From%3CPixels%3E-for-Length"],[291,"impl-From%3Cu16%3E-for-Length"],[292,"impl-From%3Cf32%3E-for-Length"],[294,"impl-From%3C%5Bf32;+2%5D%3E-for-Padding"],[296,"impl-From%3C%5Bu16;+2%5D%3E-for-Padding"],[297,"impl-From%3Cu16%3E-for-Padding"],[298,"impl-From%3C%5Bu16;+4%5D%3E-for-Padding"],[299,"impl-From%3C%5Bf32;+4%5D%3E-for-Padding"],[300,"impl-From%3Cf32%3E-for-Padding"],[301,"impl-From%3Cu16%3E-for-Pixels"],[303,"impl-From%3Cf32%3E-for-Pixels"],[304,"impl-From%3C(T,+T)%3E-for-Point%3CT%3E"],[306,"impl-From%3C%5BT;+2%5D%3E-for-Point%3CT%3E"],[311,"impl-From%3C%5Bu16;+2%5D%3E-for-Size"],[313,"impl-From%3CVector%3E-for-Size"],[314,"impl-From%3CPadding%3E-for-Size"],[315,"impl-From%3C%5Bf32;+2%5D%3E-for-Size"],[317,"impl-From%3CSize%3E-for-Vector"],[318,"impl-From%3C%5BT;+2%5D%3E-for-Vector%3CT%3E"],[338,"impl-FromIterator%3C%26String%3E-for-SmolStr"],[339,"impl-FromIterator%3Cchar%3E-for-SmolStr"],[340,"impl-FromIterator%3C%26str%3E-for-SmolStr"],[341,"impl-FromIterator%3CString%3E-for-SmolStr"],[483,"impl-Mul%3Cf32%3E-for-Radians"],[484,"impl-Mul-for-Radians"],[516,"impl-Sub%3CVector%3CT%3E%3E-for-Point%3CT%3E"],[517,"impl-Sub-for-Point%3CT%3E"],[722,"impl-From%3CVertical%3E-for-Alignment"],[724,"impl-From%3CHorizontal%3E-for-Alignment"],[801,"impl-From%3Cf32%3E-for-Radius"],[802,"impl-From%3Cu8%3E-for-Radius"],[803,"impl-From%3C%5Bf32;+4%5D%3E-for-Radius"],[1455,"impl-UpperHex-for-Modifiers"],[1456,"impl-Octal-for-Modifiers"],[1457,"impl-Debug-for-Modifiers"],[1458,"impl-LowerHex-for-Modifiers"],[1459,"impl-Binary-for-Modifiers"],[2342,"impl-Overlay%3CMessage,+Theme,+Renderer%3E-for-Group%3C\'a,+Message,+Theme,+Renderer%3E"],[2343,"impl-Group%3C\'a,+Message,+Theme,+Renderer%3E"],[2619,"impl-From%3CPixels%3E-for-LineHeight"],[2620,"impl-From%3Cf32%3E-for-LineHeight"],[3065,"impl-Sub-for-Instant"],[3066,"impl-Sub%3CDuration%3E-for-Instant"],[3073,"impl-Sum%3C%26Duration%3E-for-Duration"],[3074,"impl-Sum-for-Duration"],[3435,"impl-Text%3C\'a,+Theme,+Renderer%3E"],[3436,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Text%3C\'a,+Theme,+Renderer%3E"],[3807,"impl-Debug-for-Error"],[3808,"impl-Display-for-Error"]]},\ "iced_futures":{"doc":"Asynchronous tasks for GUI programming, inspired by Elm.","t":"IIEKKFENNNCNNHNNENCCNNNNENNNNNCNNNCNNNNNNNNCCCCCCCFNNNNNNNNNNNNNNNNNCNNNNNNNHFNNNNNNNNNNNNNNNNNCNNNNNNNHINNCINNNCHFNNNNNNNNNNNNNNNNNCNNNNNNNHHHKNMMHHIRKFFNNNNNNNNNNNNHNNNNNNNNNNNNMNNNNNNNNNNNNNNHHMNNNNNNNNNNNNNNHNN","n":["BoxFuture","BoxStream","Executor","MaybeSend","MaybeSync","Runtime","Subscription","adapt_into_using","arrays_from","arrays_into","backend","borrow","borrow_mut","boxed_stream","broadcast","components_from","core","enter","event","executor","fmt","from","from_angle","from_stimulus","futures","into","into_angle","into_color","into_color_unclamped","into_stimulus","keyboard","new","run","spawn","subscription","track","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","default","native","null","async_std","smol","thread_pool","tokio","Executor","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","components_from","fmt","from","from_angle","from_stimulus","into","into_angle","into_color","into_color_unclamped","into_stimulus","new","spawn","time","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","every","Executor","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","components_from","fmt","from","from_angle","from_stimulus","into","into_angle","into_color","into_color_unclamped","into_stimulus","new","spawn","time","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","every","Executor","new","spawn","time","Executor","enter","new","spawn","time","every","Executor","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","components_from","fmt","from","from_angle","from_stimulus","into","into_angle","into_color","into_color_unclamped","into_stimulus","new","spawn","time","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","listen","listen_raw","listen_with","Executor","enter","new","spawn","on_key_press","on_key_release","EventStream","Output","Recipe","Subscription","Tracker","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","batch","borrow","borrow","borrow_mut","borrow_mut","broadcast","channel","components_from","components_from","default","fmt","fmt","from","from","from_angle","from_angle","from_recipe","from_stimulus","from_stimulus","hash","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_recipes","into_stimulus","into_stimulus","map","new","none","run","run_with_id","stream","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","unfold","update","with"],"q":[[0,"iced_futures"],[43,"iced_futures::backend"],[46,"iced_futures::backend::native"],[50,"iced_futures::backend::native::async_std"],[76,"iced_futures::backend::native::async_std::time"],[77,"iced_futures::backend::native::smol"],[103,"iced_futures::backend::native::smol::time"],[104,"iced_futures::backend::native::thread_pool"],[108,"iced_futures::backend::native::tokio"],[113,"iced_futures::backend::native::tokio::time"],[114,"iced_futures::backend::null"],[140,"iced_futures::event"],[143,"iced_futures::executor"],[147,"iced_futures::keyboard"],[149,"iced_futures::subscription"],[214,"palette::chromatic_adaptation"],[215,"futures_core::stream"],[216,"core::marker"],[217,"iced_core::event"],[218,"iced_core::event"],[219,"futures_sink"],[220,"core::marker"],[221,"core::ops::function"],[222,"core::fmt"],[223,"core::fmt"],[224,"core::iter::traits::collect"],[225,"core::result"],[226,"palette::convert::try_from_into_color"],[227,"core::any"],[228,"std::io::error"],[229,"core::future::future"],[230,"core::time"],[231,"std::time"],[232,"core::hash"],[233,"futures_util::never"],[234,"futures_channel::mpsc"],[235,"alloc::vec"],[236,"core::ops::function"]],"d":["A boxed static future.","A boxed static stream.","","An extension trait that enforces Send only on native …","An extension trait that enforces Sync only on native …","A batteries-included runtime of commands and subscriptions.","","","","","The underlying implementations of the iced_futures …","","","Boxes a stream.","Broadcasts an event to all the subscriptions currently …","","","Runs the given closure inside the Executor of the Runtime.","Listen to runtime events.","Choose your preferred executor to power a runtime.","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","Listen to keyboard events.","Creates a new empty Runtime.","Runs a Stream in the Runtime until completion.","Spawns a Future in the Runtime.","Listen to external events in your application.","Tracks a Subscription in the Runtime.","","","","","","","","A default, cross-platform backend.","Backends that are only available in native platforms: …","A backend that does nothing!","An async-std backend.","A smol backend.","A ThreadPool backend.","A tokio backend.","An async-std executor.","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","Listen and react to time.","","","","","","","","Returns a Subscription that produces messages at a set …","A smol executor.","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","Listen and react to time.","","","","","","","","Returns a Subscription that produces messages at a set …","A thread pool executor for futures.","","","Listen and react to time.","A tokio executor.","","","","Listen and react to time.","Returns a Subscription that produces messages at a set …","An executor that drops all the futures, instead of …","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","Listen and react to time.","","","","","","","","Returns a Subscription to all the ignored runtime events.","Creates a Subscription that produces a message for every …","Creates a Subscription that listens and filters all the …","A type that can run futures.","Runs the given closure inside the Executor.","Creates a new Executor.","Spawns a future in the Executor.","Listens to keyboard key presses and calls the given …","Listens to keyboard key releases and calls the given …","A stream of runtime events.","The events that will be produced by a Subscription with …","The description of a Subscription.","A request to listen to external events.","A registry of subscription streams.","","","","","","","Batches all the provided subscriptions and returns the …","","","","","Broadcasts an event to the subscriptions currently alive.","Creates a Subscription that publishes the events sent from …","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Creates a Subscription from a Recipe describing it.","","","Hashes the Recipe.","Calls U::from(self).","Calls U::from(self).","","","","","","","Returns the different recipes of the Subscription.","","","Transforms the Subscription output with the given function.","Creates a new empty Tracker.","Returns an empty Subscription that will not produce any …","Returns a Subscription that will call the given function …","Returns a Subscription that will create and asynchronously …","Executes the Recipe and produces the stream of events of …","","","","","","","","","","","","","","","Returns a Subscription that will create and asynchronously …","Updates the Tracker with the given Subscription.","Adds a value to the Subscription context."],"i":[0,0,0,0,0,0,0,6,6,6,0,6,6,0,6,6,0,6,0,0,6,6,6,6,0,6,6,6,6,6,0,6,6,6,0,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,0,29,29,29,29,29,29,29,0,0,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,35,35,35,35,35,35,35,0,0,36,36,0,0,37,37,37,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,38,38,38,38,38,38,38,0,0,0,0,10,10,10,0,0,0,23,0,0,0,34,39,34,39,34,39,34,34,39,34,39,39,0,34,39,39,34,39,34,39,34,39,34,34,39,23,34,39,34,39,34,39,34,39,34,34,39,34,39,34,0,0,23,34,39,34,39,34,39,34,39,34,39,34,39,34,39,0,39,34],"f":[0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-2,[[2,[-1]]],[],[[4,[],[[3,[-1]]]],5]],[[[6,[-1,-3,-2]],7,8],9,10,11,[[14,[-2],[[12,[13]]]],15,11,16]],[-1,-2,[],[]],0,[[[6,[-1,-3,-2]],-5],-4,10,11,[[14,[-2],[[12,[13]]]],15,11,16],[],[[18,[],[[17,[-4]]]]]],0,0,[[[6,[-1,-2,-3]],19],20,21,21,21],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-3],[[6,[-1,-3,-2]]],10,11,[[14,[-2],[[12,[13]]]],15,11,16]],[[[6,[-1,-3,-2]],[2,[-2]]],9,10,11,[[14,[-2],[[12,[13]]]],15,11,16]],[[[6,[-1,-3,-2]],[22,[-2]]],9,10,11,[[14,[-2],[[12,[13]]]],15,11,16]],0,[[[6,[-1,-3,-2]],-4],9,10,11,[[14,[-2],[[12,[13]]]],15,11,16],[[25,[],[[3,[[24,[23]]]]]]]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[29,19],20],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[26,[29,30]]]],[[29,-1],9,[[31,[],[[17,[9]]]],5]],0,[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[32,[[34,[33]]]],0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[35,19],20],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[26,[35,30]]]],[[35,-1],9,[[31,[],[[17,[9]]]],5]],0,[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[32,[[34,[33]]]],0,[[],[[26,[36,30]]]],[[36,-1],9,[[31,[],[[17,[9]]]],5]],0,0,[[37,-2],-1,[],[[18,[],[[17,[-1]]]]]],[[],[[26,[37,30]]]],[[37,-1],9,[[31,[],[[17,[9]]]],5]],0,[32,[[34,[33]]]],0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[38,19],20],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[26,[38,30]]]],[[38,-1],9,[[31,[],[[17,[9]]]],5]],0,[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[34,[7]]]],[[],[[34,[-1]]],11],[[],[[34,[-1]]],11],0,[[10,-2],-1,[],[[18,[],[[17,[-1]]]]]],[[],[[26,[10,30]]]],[[10,-1],9,[[31,[],[[17,[9]]]],11]],[[],[[34,[-1]]],11],[[],[[34,[-1]]],11],0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-2,[[34,[-1]]],[],[[25,[],[[3,[[34,[-1]]]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[39,7,8],9],[[-1,40,-4],[[34,[-2]]],41,11,[[31,[],[[17,[42]]]],11],[[18,[[43,[-2]]],[[17,[-3]]]],11]],[-1,-2,[],[]],[-1,-2,[],[]],[[],39],[[[34,[-1]],19],20,[]],[[39,19],20],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-2,[[34,[-1]]],[],[[23,[],[[17,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[[[23,[],[[17,[-1]]]],44],9,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[34,[-1]]],[[45,[[24,[23]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[34,[-1]]],[[34,[-2]]],[],[]],[[],39],[[],[[34,[-1]]],[]],[[],[[34,[-1]]],[]],[[-1,-3],[[34,[-2]]],41,[],[[4,[],[[3,[-2]]]],11]],[[[24,[[23,[],[[17,[-1]]]]]],46],[[2,[-1]]],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2,-5],[[34,[-3]]],41,11,11,[[31,[],[[17,[[9,[-3,-2]]]]]],11],[[47,[-2],[[17,[-4]]]],11,48]],[[39,-1,-3],[[45,[[22,[9]]]]],[[49,[],[[3,[[24,[23]]]]]]],11,[[14,[-2],[[12,[13]]]],15,11,16]],[[[34,[-1]],-2],[[34,[[9,[-2,-1]]]]],[],[41,16,5,48]]],"c":[],"p":[[10,"TransformMatrix",214],[8,"BoxStream",0],[17,"Item"],[10,"Stream",215],[10,"Send",216],[5,"Runtime",0],[6,"Event",217],[6,"Status",217],[1,"tuple"],[10,"Executor",143],[10,"MaybeSend",0],[17,"Error"],[5,"SendError",218],[10,"Sink",219],[10,"Unpin",216],[10,"Clone",220],[17,"Output"],[10,"FnOnce",221],[5,"Formatter",222],[8,"Result",222],[10,"Debug",222],[8,"BoxFuture",0],[10,"Recipe",149],[5,"Box",223],[10,"IntoIterator",224],[6,"Result",225],[5,"OutOfBounds",226],[5,"TypeId",227],[5,"Executor",50],[5,"Error",228],[10,"Future",229],[5,"Duration",230],[5,"Instant",231],[5,"Subscription",149],[5,"Executor",77],[8,"Executor",104],[8,"Executor",108],[5,"Executor",114],[5,"Tracker",149],[1,"usize"],[10,"Hash",232],[8,"Never",233],[5,"Sender",218],[5,"Hasher",234],[5,"Vec",235],[8,"EventStream",149],[10,"FnMut",221],[10,"Sync",216],[10,"Iterator",236]],"b":[]},\ "iced_graphics":{"doc":"A bunch of backend-agnostic types that can be leveraged to …","t":"GEPPPEPEPGEPPPPPPPEPPGPPEPPFPPFNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNCNNNNNCECNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNECCNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNCNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOKKRKKMMMSFNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNKFPPPRRRGPKNNONNNNONNNNNNNNMMMNNNNNNNMNNNNNNNNNNNNNNNNNNNNNMMMNNNNNNNNNNNNNNNNNKMHHEREPEEEEKPEGFNNNNNNNNNNNNNNONNONNNNNMNNNNCNNONNNNNNNNNNEONNNNNNNNNNNNOCOOOCNNNNNNNNNNNNNNNNOPFPGENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNEFFNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNENNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNOONNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNOOOOONNNNNNNNNNNNNNNNPPGFGPPPPFENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNGFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNOONNNNNNNNNNNNNNNNNNNNNNNNEHPFFGPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNEEFEFFNNNNNNNNNNNNNNNOCONNNNNONNNENNNNNNNNNNCNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHCNONHHNNHNNNNNNNNNNNNNNNNNNNNNNFFFINNNNNNNNNNNNNNNNOONNNNNONNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNOONOONNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNON","n":["Antialiasing","Backend","BackendError","Cache","Clip","Compositor","Custom","Damage","Editor","Error","Gradient","GraphicsAdapterNotFound","Group","Image","MSAAx16","MSAAx2","MSAAx4","MSAAx8","Mesh","NoAvailablePixelFormat","Paragraph","Primitive","Quad","RawText","Renderer","Svg","Text","Transformation","Translate","VersionNotSupported","Viewport","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_ref","backend","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds","clip","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","compositor","core","damage","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","futures","geometry","gradient","group","identity","image","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","logical_size","mesh","mul","orthographic","physical_height","physical_size","physical_width","projection","renderer","sample_count","scale","scale_factor","text","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","translate","translate","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","with_physical_size","background","border","bounds","bounds","bounds","bounds","bounds","clip_bounds","clip_bounds","clip_bounds","color","color","color","color","content","content","content","content","editor","filter_method","font","handle","handle","horizontal_alignment","line_height","paragraph","position","position","primitives","shadow","shaping","size","translation","vertical_alignment","Backend","Image","Primitive","Svg","Text","dimensions","load_font","viewport_dimensions","GAMMA_CORRECTION","Packed","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","clone","clone_into","components","components_from","deref","deref_mut","drop","eq","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_color","into_color_unclamped","into_stimulus","is_valid_bit_pattern","pack","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Compositor","Information","Lost","OutOfMemory","Outdated","Renderer","Settings","Surface","SurfaceError","Timeout","Window","adapt_into_using","adapt_into_using","adapter","arrays_from","arrays_from","arrays_into","arrays_into","backend","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","configure_surface","create_renderer","create_surface","deref","deref","deref_mut","deref_mut","drop","drop","eq","fetch_information","fmt","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","present","screenshot","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","Damage","bounds","group","list","Fill","Geometry","Gradient","Gradient","LineCap","LineDash","LineJoin","Path","Renderer","Solid","Stroke","Style","Text","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","content","default","deref","deref","deref_mut","deref_mut","draw","draw_with","drop","drop","eq","fill","fmt","fmt","font","from","from","from","from","from","from","from_angle","from_angle","from_stimulus","from_stimulus","gradient","horizontal_alignment","init","init","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line_height","path","position","shaping","size","stroke","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","vertical_alignment","EvenOdd","Fill","NonZero","Rule","Style","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","drop","drop","eq","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","rule","style","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","Arc","Builder","Path","adapt_into_using","adapt_into_using","arc","arc","arc_to","arrays_from","arrays_from","arrays_into","arrays_into","bezier_curve_to","borrow","borrow","borrow_mut","borrow_mut","build","circle","circle","clone","clone_into","close","components_from","components_from","default","deref","deref","deref_mut","deref_mut","drop","drop","ellipse","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line","line_to","lyon_path","move_to","new","new","quadratic_curve_to","raw","rectangle","rectangle","to_owned","transform","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","Arc","Elliptical","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","center","center","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","drop","drop","end_angle","end_angle","fmt","fmt","from","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","radii","radius","rotation","start_angle","start_angle","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","Bevel","Butt","LineCap","LineDash","LineJoin","Miter","Round","Round","Square","Stroke","Style","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","default","default","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line_cap","line_dash","line_join","offset","segments","style","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","width","with_color","with_line_cap","with_line_join","with_width","Gradient","Linear","Linear","Packed","adapt_into_using","adapt_into_using","adapt_into_using","add_stop","add_stops","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","components_from","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","end","eq","eq","eq","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","is_valid_bit_pattern","new","pack","pack","pack","start","stops","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","image_rs","load","Gradient","GradientVertex2D","Indexed","Mesh","Solid","SolidVertex2D","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","eq","eq","eq","eq","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gradient","indices","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_valid_bit_pattern","is_valid_bit_pattern","position","position","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","vertices","buffers","buffers","size","size","Renderer","adapt_into_using","arrays_from","arrays_into","backend","borrow","borrow_mut","clear","components_from","default_font","default_size","deref","deref_mut","dimensions","dimensions","draw","draw","draw_primitive","drop","end_layer","end_translation","fill_editor","fill_paragraph","fill_quad","fill_text","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_color","into_color_unclamped","into_stimulus","load_font","new","start_layer","start_translation","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","with_layer","with_primitives","with_translation","Cache","Editor","FontSystem","Paragraph","Raw","Version","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","buffer","cache","clip_bounds","clone","clone","clone_into","clone_into","cmp","color","components_from","components_from","components_from","cosmic_text","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","editor","eq","eq","fmt","fmt","font_system","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hash","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","load_font","measure","paragraph","partial_cmp","position","raw","to_attributes","to_color","to_owned","to_owned","to_shaping","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","version","Cache","Entry","Key","KeyHash","adapt_into_using","adapt_into_using","adapt_into_using","allocate","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","bounds","buffer","clone","clone_into","components_from","components_from","components_from","content","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","fmt","font","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","get","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","line_height","min_bounds","new","shaping","size","to_owned","trim","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","Editor","Weak","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","bounds","bounds","buffer","clone","clone_into","components_from","components_from","cursor","cursor_position","default","deref","deref","deref_mut","deref_mut","downgrade","drop","drop","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","highlight","init","init","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line","line_count","new","perform","selection","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","update","upgrade","with_text","Paragraph","Weak","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","buffer","clone","clone","clone_into","clone_into","compare","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downgrade","drop","drop","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","grapheme_position","hit_test","horizontal_alignment","horizontal_alignment","init","init","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","min_bounds","min_bounds","new","resize","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upgrade","vertical_alignment","vertical_alignment","with_text"],"q":[[0,"iced_graphics"],[209,"iced_graphics::Primitive"],[243,"iced_graphics::backend"],[251,"iced_graphics::color"],[286,"iced_graphics::compositor"],[365,"iced_graphics::damage"],[369,"iced_graphics::geometry"],[461,"iced_graphics::geometry::fill"],[531,"iced_graphics::geometry::path"],[609,"iced_graphics::geometry::path::arc"],[679,"iced_graphics::geometry::stroke"],[821,"iced_graphics::gradient"],[926,"iced_graphics::image"],[928,"iced_graphics::mesh"],[1063,"iced_graphics::mesh::Mesh"],[1067,"iced_graphics::renderer"],[1116,"iced_graphics::text"],[1227,"iced_graphics::text::cache"],[1323,"iced_graphics::text::editor"],[1398,"iced_graphics::text::paragraph"],[1476,"palette::chromatic_adaptation"],[1477,"iced_core::rectangle"],[1478,"core::clone"],[1479,"core::cmp"],[1480,"core::fmt"],[1481,"core::fmt"],[1482,"iced_core::size"],[1483,"smol_str"],[1484,"alloc::string"],[1485,"iced_core::vector"],[1486,"core::result"],[1487,"palette::convert::try_from_into_color"],[1488,"core::any"],[1489,"iced_core::image"],[1490,"alloc::borrow"],[1491,"iced_core::svg"],[1492,"iced_core::color"],[1493,"core::convert"],[1494,"core::default"],[1495,"iced_core::renderer"],[1496,"core::convert"],[1497,"iced_core::point"],[1498,"core::ops::function"],[1499,"lyon_path::math"],[1500,"iced_core::gradient"],[1501,"core::iter::traits::collect"],[1502,"iced_core::gradient"],[1503,"image::error"],[1504,"iced_core::pixels"],[1505,"iced_core::image"],[1506,"iced_core::renderer"],[1507,"iced_core::text"],[1508,"iced_core::font"],[1509,"core::cmp"],[1510,"core::hash"],[1511,"cosmic_text::buffer"],[1512,"cosmic_text::font::system"],[1513,"cosmic_text::attrs"],[1514,"cosmic_text::attrs"],[1515,"iced_core::text::editor"],[1516,"iced_core::text::highlighter"],[1517,"iced_core::text::highlighter"],[1518,"iced_core::alignment"]],"d":["An antialiasing strategy.","","An error occured in the context’s internal backend","A cached primitive.","A clip primitive","","A backend-specific primitive.","","An editor primitive","An error that occurred while creating an application’s …","","A suitable graphics adapter or device could not be found.","A group of primitives","An image primitive","Multisample AA with 16 samples","Multisample AA with 2 samples","Multisample AA with 4 samples","Multisample AA with 8 samples","","Failed to find any pixel format that matches the criteria.","A paragraph primitive","A rendering primitive.","A quad primitive","A raw cosmic-text primitive","","An SVG primitive","A text primitive","A 2D transformation matrix.","A primitive that applies a translation","The requested backend version is not supported.","A viewing region for displaying computer graphics.","","","","","","","","","","","","","","","","","Write a graphics backend.","","","","","","","","","","","","Creates a Primitive::Clip.","","","","","","","","","Manage colors for shaders.","","","","","","A compositor is responsible for initializing a renderer …","","Track and compute the damage of graphical primitives.","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","Build and draw geometry.","A gradient that can be used as a fill for some geometry.","Creates a Primitive::Group.","Get the identity transformation.","Load and operate on images.","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Returns the logical size of the Viewport.","Draw triangles!","","Creates an orthographic projection.","Returns the physical height of the Viewport.","Returns the physical size of the Viewport.","Returns the physical width of the Viewport.","Returns the projection transformation of the Viewport.","Create a renderer from a Backend.","Returns the amount of samples of the Antialiasing.","Creates a scale transformation.","Returns the scale factor of the Viewport.","Draw text.","","","","","","","Creates a Primitive::Translate.","Creates a translate transformation.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new Viewport with the given physical dimensions …","The background of the quad","The Border of the quad","The bounds of the text.","The bounds of the quad","The bounds of the image","The bounds of the viewport","The bounds of the clip","The clip bounds of the text.","The clip bounds of the paragraph.","The clip bounds of the editor.","The color of the text.","The color of the paragraph.","The color of the editor.","The Color filter","The contents of the text.","The content of the clip","The primitive to translate","The cached primitive","The editor::Weak reference.","The filter method of the image","The font of the text.","The handle of the image","The path of the SVG file","The horizontal alignment of the text.","The line height of the text.","The paragraph::Weak reference.","The position of the paragraph.","The position of the editor.","The primitives of the group","The Shadow of the quad","The shaping strategy of the text.","The size of the text in logical pixels.","The translation vector","The vertical alignment of the text.","The graphics backend of a Renderer.","A graphics backend that supports image rendering.","The custom kind of primitives this Backend supports.","A graphics backend that supports SVG rendering.","A graphics backend that supports text rendering.","Returns the dimensions of the provided image.","Loads a font from its bytes.","Returns the viewport dimensions of the provided SVG.","A flag that indicates whether the renderer should perform …","A color packed as 4 floats representing RGBA channels.","","","","","","","","Returns the internal components of the Packed color.","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","Packs a Color.","","","","","","","","","A graphics compositor that can draw to windows.","Contains information about the graphics (e.g. graphics …","The swap chain has been lost and needs to be recreated.","There is no more memory left to allocate a new frame.","The underlying surface has changed, and therefore the …","The iced renderer of the backend.","The settings of the backend.","The surface of the backend.","Result of an unsuccessful call to Compositor::present.","A timeout was encountered while trying to acquire the next …","A window that can be used in a Compositor.","","","Contains the graphics adapter.","","","","","Contains the graphics backend.","","","","","","","","","Configures a new Surface with the given dimensions.","Creates a Self::Renderer for the Compositor.","Crates a new Surface for the given window.","","","","","","","","Returns Information used by this Compositor.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Creates a new Compositor.","Presents the Renderer primitives to the next frame of the …","Screenshots the current Renderer primitives to an …","","","","","","","","","","","","","","","","","","A type that has some damage bounds.","Returns the bounds of the Damage.","Groups the given damage regions that are close together …","Computes the damage regions between the two given lists of …","","The kind of geometry this renderer can draw.","","A Gradient color.","","","","","A renderer capable of drawing some Self::Geometry.","A solid Color.","","The coloring style of some drawing.","A bunch of text that can be drawn to a canvas","","","","","","","","","","","","","","","The color of the text","","","The contents of the text","","","","","","Draws the given layers of Self::Geometry.","Computes the Paths of the Text and draws them using the …","","","","Fill Geometry with a certain style.","","","The font of the text","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","The horizontal alignment of the text","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","The line height of the text.","Build different kinds of 2D shapes.","The position of the text relative to the alignment …","The shaping strategy of the text.","The size of the text","Create lines from a Path and assigns them various …","","","","","","","","","","","","","","","","","The vertical alignment of the text","","The style used to fill geometry.","","The fill rule defines how to determine what is inside and …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","The fill rule defines how to determine what is inside and …","The color or gradient of the fill.","","","","","","","","","","","","","","","","","","A Path builder.","An immutable set of points that may or may not be …","","","Build and draw curves.","Adds an Arc to the Path from start_angle to end_angle in a …","Adds a circular arc to the Path with the given control …","","","","","Adds a cubic Bézier curve to the Path given its two …","","","","","Builds the Path of this Builder.","Adds a circle to the Path given its center coordinate and …","Creates a new Path representing a circle given its center …","","","Closes the current sub-path in the Path with a straight …","","","","","","","","","","Adds an ellipse to the Path using a clockwise direction.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Creates a new Path representing a line segment given its …","Connects the last point in the Path to the given Point …","","Moves the starting point of a new sub-path to the given …","Creates a new Builder.","Creates a new Path with the provided closure.","Adds a quadratic Bézier curve to the Path given its …","Returns the internal lyon_path::Path.","Adds a rectangle to the Path given its top-left corner …","Creates a new Path representing a rectangle given its …","","Returns the current Path with the given transform applied …","","","","","","","","","","","","","","","A segment of a differentiable curve.","An elliptical Arc.","","","","","","","","","","","The center of the arc.","The center of the arc.","","","","","","","","","","","","","The end of the segment’s angle, clockwise rotation from …","The end of the segment’s angle, clockwise rotation from …","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","The radii of the arc’s ellipse. The horizontal and …","The radius of the arc.","The clockwise rotation of the arc’s ellipse.","The start of the segment’s angle, clockwise rotation …","The start of the segment’s angle, clockwise rotation …","","","","","","","","","","","","","","","","","A bevelled corner.","The stroke for each sub-path does not extend beyond its …","The shape used at the end of open subpaths when they are …","The dash pattern used when stroking the line.","The shape used at the corners of paths or basic shapes …","A sharp corner.","At the end of each sub-path, the shape representing the …","A round corner.","At the end of each sub-path, the shape representing the …","The style of a stroke.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","The shape to be used at the end of open subpaths when they …","The dash pattern used when stroking the line.","The shape to be used at the corners of paths or basic …","The offset of LineDash::segments to start the pattern.","The alternating lengths of lines and gaps which describe …","The color or gradient of the stroke.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The distance between the two edges of the stroke.","Sets the color of the Stroke.","Sets the LineCap of the Stroke.","Sets the LineJoin of the Stroke.","Sets the width of the Stroke.","A fill which linearly interpolates colors along a …","A linear gradient.","A linear gradient interpolates colors along a direction …","Packed Gradient data for use in shader code.","","","","Adds a new ColorStop, defined by an offset and a color, to …","Adds multiple ColorStops to the gradient.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The absolute ending position of the gradient.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Creates a new Linear builder.","Creates a new Packed gradient for use in shader code.","Packs the Gradient for use in shader code.","Packs the Gradient for use in shader code.","The absolute starting position of the gradient.","ColorStops along the linear gradient direction.","","","","","","","","","","","","","","","","","","","","","","","","","","Tries to load an image by its Handle.","A mesh with a gradient.","A vertex which contains 2D position & packed gradient data.","A set of vertices and indices representing a list of …","A low-level primitive to render a mesh of triangles.","A mesh with a solid color.","A two-dimensional vertex with a color.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The color of the vertex in linear RGBA.","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","The packed vertex data of the gradient.","The list of vertex indices that defines the triangles of …","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","The vertex position in 2D space.","The vertex position in 2D space.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The vertices of the mesh","The vertices and indices of the mesh.","The vertices and indices of the mesh.","The size of the drawable region of the mesh.","The size of the drawable region of the mesh.","A backend-agnostic renderer that supports all the built-in …","","","","Returns a reference to the Backend of the Renderer.","","","","","","","","","","","","","Enqueues the given Primitive in the Renderer for drawing.","","Ends the recording of a layer.","Ends the recording of a translation.","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","Creates a new Renderer from the given Backend.","Starts recording a new layer.","Starts recording a translation.","","","","","","","","","Runs the given closure with the Backend and the recorded …","","","","A set of system fonts.","","A weak reference to a [cosmic-text::Buffer] that can be …","A version number.","","","","","","","","","","","","","","","","A weak reference to a cosmic_text::Buffer.","Cache text.","The clip bounds of the text.","","","","","","The color of the text.","","","","","","","","","","","","","","","Draw and edit text.","","","","","Returns the global FontSystem.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","Loads a font from its bytes.","Measures the dimensions of the given cosmic_text::Buffer.","Draw paragraphs.","","The position of the text.","Returns the raw cosmic_text::FontSystem.","Returns the attributes of the given Font.","Converts some Color to a cosmic_text::Color.","","","Converts some Shaping strategy to a cosmic_text::Shaping …","","","","","","","","","","","","","","","","","","","","","","Returns the current Version of the FontSystem.","A store of recently used sections of text.","A cache entry.","A cache key representing a section of text.","The hash of a Key.","","","","Allocates a text Entry if it is not already present in the …","","","","","","","","","","","","","The bounds of the text.","The buffer of text, ready for drawing.","","","","","","The content of the text.","","","","","","","","","","","","The Font of the text.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Gets the text Entry with the given KeyHash.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","The line height of the text.","The minimum bounds of the text.","Creates a new empty Cache.","The shaping strategy of the text.","The size of the text.","","Trims the Cache.","","","","","","","","","","","","","","","","","","","","","","A multi-line text editor.","A weak reference to an Editor.","","","","","","","","","","","","The bounds of the Editor.","Returns the buffer of the Editor.","","","","","","","","","","","","Creates a Weak reference to the Editor.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","Creates a new empty Editor.","","","","","","","","","","","","","","","","","","","Tries to update the reference into an Editor.","","A bunch of text.","A weak reference to a Paragraph.","","","","","","","","","","","Returns the buffer of the Paragraph.","","","","","","","","","","","","","Creates a Weak reference to the Paragraph.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","The horizontal alignment of the Paragraph.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","The minimum bounds of the Paragraph.","Creates a new empty Paragraph.","","","","","","","","","","","","","","","","","","Tries to update the reference into a Paragraph.","","The vertical alignment of the Paragraph.",""],"i":[0,0,17,5,5,0,5,0,5,0,0,17,5,5,8,8,8,8,0,17,5,0,5,5,0,5,5,0,5,17,0,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,2,0,8,17,5,2,10,8,17,5,2,10,5,5,8,5,2,10,8,5,2,10,0,8,17,5,2,10,0,0,0,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,8,5,2,8,17,17,5,2,10,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,0,0,0,5,2,0,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,10,0,2,2,10,10,10,10,0,8,2,10,0,8,5,2,10,17,17,5,2,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,8,17,5,2,10,10,123,123,124,123,125,126,127,124,128,129,124,128,129,126,124,127,130,131,129,125,124,125,126,124,124,128,128,129,132,123,124,124,130,124,0,0,84,0,0,29,31,35,0,0,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,0,37,37,37,37,37,37,37,37,0,0,40,40,40,44,44,44,0,40,0,40,48,48,40,48,40,48,48,40,48,40,48,40,40,40,48,44,44,44,40,48,40,48,40,48,40,44,40,40,48,40,48,40,48,40,48,40,48,40,48,40,48,40,48,40,48,40,48,44,44,44,40,40,40,40,48,40,48,40,48,40,48,40,48,40,48,40,48,0,7,0,0,0,54,0,51,0,0,0,0,0,51,0,0,0,51,52,51,52,51,52,51,52,51,52,51,52,51,52,52,51,52,52,52,51,52,51,52,54,52,51,52,51,0,51,52,52,51,51,51,52,52,52,51,52,51,52,0,52,51,52,51,52,51,52,51,52,51,52,51,52,52,0,52,52,52,0,51,52,51,52,51,52,51,52,51,52,51,52,51,52,51,52,52,59,0,59,0,0,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,58,59,58,59,58,59,59,58,59,58,58,58,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,58,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,0,0,0,61,55,0,61,61,61,55,61,55,61,61,55,61,55,61,61,55,55,55,61,61,55,61,61,55,61,55,61,55,61,55,61,55,61,55,61,55,61,55,61,55,61,55,61,55,61,55,61,55,55,61,0,61,61,55,61,55,61,55,55,55,61,55,61,55,61,55,61,55,61,55,61,55,61,55,0,0,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,62,64,70,69,0,0,0,70,69,70,69,0,0,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,68,68,71,71,68,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,69,70,71,68,68,68,68,68,0,0,57,0,57,60,75,60,60,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,60,57,60,75,57,60,75,57,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,75,60,0,57,60,60,60,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,57,60,75,0,0,79,0,0,0,79,0,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,79,80,81,82,79,80,81,82,81,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,82,80,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,81,82,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,79,80,81,82,80,133,134,133,134,0,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,0,0,0,0,0,0,96,93,94,96,93,94,96,93,94,96,93,94,96,93,94,94,0,94,93,94,93,94,93,94,96,93,94,0,93,96,93,94,96,93,94,96,93,94,0,93,94,93,94,0,96,93,94,96,93,94,96,93,94,93,96,93,94,96,93,94,96,93,94,96,93,94,96,93,94,96,93,94,96,0,0,93,94,96,0,0,93,94,0,96,93,94,96,93,94,96,93,94,96,93,94,96,93,94,96,93,94,96,93,94,96,0,0,0,0,108,105,106,105,108,105,106,108,105,106,108,105,106,108,105,106,106,108,106,106,108,105,106,106,105,108,105,106,108,105,106,108,105,106,106,106,108,105,106,108,105,106,108,105,106,105,108,105,106,108,105,106,108,105,106,108,105,106,108,105,106,108,105,106,106,108,105,106,106,106,105,108,105,106,108,105,106,108,105,106,108,105,106,108,105,106,108,105,106,108,105,106,0,0,109,110,109,110,109,110,109,110,109,110,109,110,109,110,110,109,110,109,109,109,109,110,109,110,109,109,110,109,110,109,110,109,110,109,110,109,110,109,109,110,109,110,109,110,109,110,109,110,109,110,109,109,109,109,109,110,109,110,109,110,109,110,109,110,109,110,109,110,109,110,109,110,109,0,0,117,118,117,118,117,118,117,118,117,118,117,117,118,117,118,117,117,118,117,117,118,117,118,117,117,118,117,118,117,118,117,118,117,118,117,118,117,117,117,118,117,118,117,118,117,118,117,118,117,118,117,118,117,118,117,117,117,118,117,118,117,118,117,118,117,118,117,118,117,118,117,118,118,117,118,117],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[2,[[4,[3]]]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[5,[-1]]],6,7],[[[5,[-1]],6],[[5,[-1]]],[]],[8,8],[[[5,[-1]]],[[5,[-1]]],9],[2,2],[10,10],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,11],[12,11],[12,11],[12,11],[12,11],[[8,8],13],[[[5,[-1]],[5,[-1]]],13,14],[[2,2],13],[[8,15],16],[[17,15],16],[[17,15],16],[[[5,[-1]],15],16,18],[[2,15],16],[[10,15],16],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[[19,[[5,[-1]]]]],[[5,[-1]]],[]],[[],2],0,[[],12],[[],12],[[],12],[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[10,[[20,[3]]]],0,[[2,2],2],[[21,21],2],[10,21],[10,[[20,[21]]]],[10,21],[10,2],0,[8,21],[[3,3],2],[10,22],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,23,[]],[-1,24,[]],[[[5,[-1]],25],[[5,[-1]]],[]],[[3,3],2],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[20,[21]],22],10],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[29,30],[[20,[21]]]],[[31,[34,[[33,[32]]]]],11],[[35,36],[[20,[21]]]],0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[37,37],[[-1,-2],11,[],[]],[37,[[4,[3]]]],[-1,-2,[],[]],[12,-1,[]],[12,-1,[]],[12,11],[[37,37],13],[[37,15],16],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,13,[]],[-1,37,[[39,[38]]]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[40,40],[[-1,-2],11,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[44,[],[[41,[-1]],[42,[-2]],[43,[-3]]]],-3,21,21],11,45,46,[]],[[[44,[],[[41,[-1]],[42,[-2]],[43,[-3]]]]],-2,45,46,[]],[[[44,[],[[41,[-1]],[42,[-2]],[43,[-3]]]],-4,21,21],-3,45,46,[],[47,9]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,11],[12,11],[[40,40],13],[[[44,[],[[41,[-1]],[42,[-2]],[43,[-3]]]]],48,45,46,[]],[[40,15],16],[[40,15],16],[[48,15],16],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2],[[26,[[44,[],[[41,[-1]],[42,[-3]],[43,[-4]]]],17]]],45,[47,9],46,[]],[[[44,[],[[41,[-1]],[42,[-2]],[43,[-3]]]],-2,-3,10,38,[33,[-4]]],[[26,[11,40]]],45,46,[],[[50,[49]]]],[[[44,[],[[41,[-1]],[42,[-2]],[43,[-3]]]],-2,-3,10,38,[33,[-4]]],[[19,[32]]],45,46,[],[[50,[49]]]],[-1,-2,[],[]],[-1,23,[]],[-1,24,[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[7,6],[[[19,[6]],3,[20,[21]]],[[19,[6]]]],[[[33,[[5,[-1]]]],[33,[[5,[-1]]]]],[[19,[6]]],7],0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[51,51],[52,52],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],0,[[],52],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[[[54,[],[[53,[-1]]]],[19,[-1]]],11,[]],[[52,-1],11,[[56,[55,38]]]],[12,11],[12,11],[[51,51],13],0,[[51,15],16],[[52,15],16],0,[57,51],[-1,-1,[]],[38,51],[-1,-1,[]],[24,52],[49,52],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[58,58],[59,59],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],58],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,11],[12,11],[[59,59],13],[[58,15],16],[[59,15],16],[60,58],[-1,-1,[]],[57,58],[38,58],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],0,[[61,62],11],[[61,63,63,3],11],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[61,63,63,63],11],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[61,55],[[61,63,3],11],[[63,3],55],[55,55],[[-1,-2],11,[],[]],[61,11],[-1,-2,[],[]],[-1,-2,[],[]],[[],61],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,11],[12,11],[[61,64],11],[[55,15],16],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[63,63],55],[[61,63],11],0,[[61,63],11],[[],61],[-1,55,[[65,[61]]]],[[61,63,63],11],[55,66],[[61,63,20],11],[[63,20],55],[-1,-2,[],[]],[[55,67],55],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[62,62],[64,64],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,11],[12,11],0,0,[[62,15],16],[[64,15],16],[-1,-1,[]],[-1,-1,[]],[62,64],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[68,68],[69,69],[70,70],[71,71],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],68],[[],69],[[],70],[[],71],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,11],[12,11],[12,11],[12,11],[[68,15],16],[[69,15],16],[[70,15],16],[[71,15],16],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],12],[[],12],[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[68,38],68],[[68,69],68],[[68,70],68],[[68,3],68],0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[60,3,38],60],[[60,-1],60,[[74,[],[[72,[73]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[57,57],[60,60],[75,75],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,11],[12,11],[12,11],0,[[57,57],13],[[60,60],13],[[75,75],13],[[57,15],16],[[60,15],16],[[75,15],16],[60,57],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],12],[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,13,[]],[[63,63],60],[[76,6],75],[57,75],[60,75],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[30,[[78,[77]]]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[79,6],[79,79],[[[80,[-1]]],[[80,[-1]]],9],[81,81],[82,82],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,11],[12,11],[12,11],[12,11],[[79,79],13],[[[80,[-1]],[80,[-1]]],13,14],[[81,81],13],[[82,82],13],[[79,15],16],[[[80,[-1]],15],16,18],[[81,15],16],[[82,15],16],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],12],[[],12],[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,13,[]],[-1,13,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[83,[-1]]],-1,84],[-1,-2,[],[]],[-1,-2,[],[]],[[[83,[-1]]],11,84],[-1,-2,[],[]],[[[83,[-1]]],-2,[84,31],[]],[[[83,[-1]]],85,[84,31]],[12,-1,[]],[12,-1,[]],[[[83,[-1]],30],[[20,[21]]],[84,29]],[[[83,[-1]],36],[[20,[21]]],[84,35]],[[[83,[-1]],30,86,6],11,[84,29]],[[[83,[-1]],36,[87,[38]],6],11,[84,35]],[[[83,[-1]],5],11,84],[12,11],[[[83,[-1]],[19,[5]],6],11,84],[[[83,[-1]],[19,[5]],25],11,84],[[[83,[-1]],-2,63,38,6],11,[84,31],[]],[[[83,[-1]],-2,63,38,6],11,[84,31],[]],[[[83,[-1]],88,-2],11,84,[[39,[89]]]],[[[83,[-1]],[90,[-2]],63,38,6],11,[84,31],[]],[[[83,[-1]],15],16,[18,84]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[83,[-1]],[34,[[33,[32]]]]],11,[84,31]],[[-1,91,85],[[83,[-1]]],84],[[[83,[-1]]],[[19,[5]]],84],[[[83,[-1]]],[[19,[5]]],84],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[83,[-1]],6,-2],11,84,[[65,[[83,[-1]]]]]],[[[83,[-1]],-3],-2,84,[],[[65,[-1,[33,[5]]],[[92,[-2]]]]]],[[[83,[-1]],25,-2],11,84,[[65,[[83,[-1]]]]]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[93,93],[94,94],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[[93,93],95],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],93],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,11],[12,11],[12,11],0,[[93,93],13],[[94,94],13],[[93,15],16],[[94,15],16],[[],[[97,[96]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[93,-1],11,98],[[],12],[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[96,[34,[[33,[32]]]]],11],[99,20],0,[[93,93],[[87,[95]]]],0,[96,100],[91,101],[38,102],[-1,-2,[],[]],[-1,-2,[],[]],[103,104],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[96,93],0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[105,100,106],[[11,[107,108]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[106,106],[[-1,-2],11,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],105],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,11],[12,11],[12,11],[[106,15],16],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[105,107],[[87,[108]]]],[[],12],[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],105],0,0,[-1,-2,[],[]],[105,11],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[109,20],0,[109,99],[110,110],[[-1,-2],11,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[109,111],[109,[[11,[12,12]]]],[[],109],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[109,110],[12,11],[12,11],[[109,109],13],[[110,110],13],[[109,15],16],[[110,15],16],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[109,-1,-2,-3],11,[],112,[[114,[],[[92,[[113,[-1]]]]]]]],[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[109,12],[[87,[49]]]],[109,12],[[],109],[[109,115],11],[109,[[87,[24]]]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[109,20,91,85,116,-1],11,112],[110,[[87,[109]]]],[49,109],0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[117,99],[117,117],[118,118],[[-1,-2],11,[],[]],[[-1,-2],11,[],[]],[[117,[90,[91]]],119],[-1,-2,[],[]],[-1,-2,[],[]],[[],117],[12,-1,[]],[12,-1,[]],[12,-1,[]],[12,-1,[]],[117,118],[12,11],[12,11],[[117,117],13],[[118,118],13],[[117,15],16],[[118,15],16],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[117,12,12],[[87,[63]]]],[[117,63],[[87,[120]]]],[117,121],0,[[],12],[[],12],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[117,20],0,[[],117],[[117,20],11],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[118,[[87,[117]]]],[117,122],0,[[[90,[91]]],117]],"c":[],"p":[[10,"TransformMatrix",1476],[5,"Transformation",0],[1,"f32"],[1,"array"],[6,"Primitive",0],[5,"Rectangle",1477],[10,"Damage",365],[6,"Antialiasing",0],[10,"Clone",1478],[5,"Viewport",0],[1,"tuple"],[1,"usize"],[1,"bool"],[10,"PartialEq",1479],[5,"Formatter",1480],[8,"Result",1480],[6,"Error",0],[10,"Debug",1480],[5,"Vec",1481],[5,"Size",1482],[1,"u32"],[1,"f64"],[5,"SmolStr",1483],[5,"String",1484],[5,"Vector",1485],[6,"Result",1486],[5,"OutOfBounds",1487],[5,"TypeId",1488],[10,"Image",243],[5,"Handle",1489],[10,"Text",243],[1,"u8"],[1,"slice"],[6,"Cow",1490],[10,"Svg",243],[5,"Handle",1491],[5,"Packed",251],[5,"Color",1492],[10,"Into",1493],[6,"SurfaceError",286],[17,"Settings"],[17,"Renderer"],[17,"Surface"],[10,"Compositor",286],[10,"Default",1494],[10,"Renderer",1495],[10,"Window",286],[5,"Information",286],[1,"str"],[10,"AsRef",1493],[6,"Style",369],[5,"Text",369],[17,"Geometry"],[10,"Renderer",369],[5,"Path",531],[10,"FnMut",1496],[6,"Gradient",821],[5,"Fill",461],[6,"Rule",461],[5,"Linear",821],[5,"Builder",531],[5,"Arc",609],[5,"Point",1497],[5,"Elliptical",609],[10,"FnOnce",1496],[5,"Path",1498],[8,"Transform",1499],[5,"Stroke",679],[6,"LineCap",679],[6,"LineJoin",679],[5,"LineDash",679],[17,"Item"],[5,"ColorStop",1500],[10,"IntoIterator",1501],[5,"Packed",821],[6,"Gradient",1500],[6,"DynamicImage",1502],[8,"ImageResult",1503],[6,"Mesh",928],[5,"Indexed",928],[5,"SolidVertex2D",928],[5,"GradientVertex2D",928],[5,"Renderer",1067],[10,"Backend",243],[5,"Pixels",1504],[6,"FilterMethod",1489],[6,"Option",1505],[5,"Quad",1495],[6,"Background",1506],[5,"Text",1507],[5,"Font",1508],[17,"Output"],[5,"Version",1116],[5,"Raw",1116],[6,"Ordering",1479],[5,"FontSystem",1116],[5,"RwLock",1509],[10,"Hasher",1510],[5,"Buffer",1511],[5,"FontSystem",1512],[5,"Attrs",1513],[5,"Color",1513],[6,"Shaping",1507],[6,"Shaping",1514],[5,"Cache",1227],[5,"Key",1227],[8,"KeyHash",1227],[5,"Entry",1227],[5,"Editor",1323],[5,"Weak",1323],[6,"Cursor",1515],[10,"Highlighter",1516],[5,"Format",1516],[10,"Fn",1496],[6,"Action",1515],[6,"LineHeight",1507],[5,"Paragraph",1398],[5,"Weak",1398],[6,"Difference",1507],[6,"Hit",1507],[6,"Horizontal",1517],[6,"Vertical",1517],[15,"Quad",209],[15,"Text",209],[15,"Image",209],[15,"Svg",209],[15,"Clip",209],[15,"Paragraph",209],[15,"Editor",209],[15,"Translate",209],[15,"Cache",209],[15,"Group",209],[15,"Solid",1063],[15,"Gradient",1063]],"b":[[96,"impl-Display-for-Error"],[97,"impl-Debug-for-Error"],[324,"impl-Display-for-SurfaceError"],[325,"impl-Debug-for-SurfaceError"],[414,"impl-From%3CGradient%3E-for-Style"],[416,"impl-From%3CColor%3E-for-Style"],[418,"impl-From%3CString%3E-for-Text"],[419,"impl-From%3C%26str%3E-for-Text"],[492,"impl-From%3CLinear%3E-for-Fill"],[494,"impl-From%3CGradient%3E-for-Fill"],[495,"impl-From%3CColor%3E-for-Fill"],[1080,"impl-Renderer-for-Renderer%3CB%3E"],[1081,"impl-Renderer-for-Renderer%3CB%3E"],[1082,"impl-Renderer-for-Renderer%3CB%3E"],[1083,"impl-Renderer-for-Renderer%3CB%3E"]]},\ @@ -9,7 +9,7 @@ var searchIndex = JSON.parse('{\ "iced_style":{"doc":"The styling library of Iced.","t":"ECCCCECCCCCCCCCCCCCFRKNMNNONNNNNNNNNNNNNNNONNNNNNNNFRKMNNNOONNNNNNNNNNNNNNNNNNOOONNNNNNNNFRKMNNNOONNNNNNNNNMONNNNNONNNNNNNNFRKNMNNOONNNNNNNNNNNNNNNOONNNNNNNNNNFRKNMNNOONNNNNNNNNNNNNNOOONNNNNNNNFFRKNNNNNNOONNNNNNNNONNNNNNNNNNNMMNNNNNNNNNNMNNNNNNNNNNNNNNNNOFRKMNNNOONNNNNNNNNOMNNNNNOONNNNNNNNFRKNMNNOOONNNNNNNNNNNNNNNNNNNNNNFRKMNNNOOONNNNNONNNNMNNNNNONNNNNNNNFPGPPPRKNNMNNNNNNNNNNNNONNNONNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNOFFRKMNNNNNNNOOONNNNNNNNONNNNNNNNNNNNMNNNNNNNNNNNONNNNNNNNNNNNNNNNFPFGFPRKMNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNOONNNNMNNNNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOFRKNMNNNNNNONNNNNNMNNNNNNNNNNNNNFRKMNNNOONNNNNMMNMNNNNNNNNNMMNNNNNNNNMFRKMNNNOONNNNNMMNMNNNNONNNNNMMNNNNNNNNMTGPGGPGFPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGEGGPPPPGGGGPPGPPGGPGGGGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFTFJJFTFFFFFNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNOOOOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOFRKMNNNOONNNNNNOONNNMNNNNNNNNNNNNN","n":["Theme","application","button","checkbox","container","core","menu","pane_grid","pick_list","progress_bar","radio","rule","scrollable","slider","svg","text_editor","text_input","theme","toggler","Appearance","Style","StyleSheet","adapt_into_using","appearance","arrays_from","arrays_into","background_color","borrow","borrow_mut","clone","clone_into","components_from","eq","fmt","from","from_angle","from_stimulus","into","into_angle","into_color","into_color_unclamped","into_stimulus","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Style","StyleSheet","active","adapt_into_using","arrays_from","arrays_into","background","border","borrow","borrow_mut","clone","clone_into","components_from","default","disabled","fmt","from","from_angle","from_stimulus","hovered","into","into_angle","into_color","into_color_unclamped","into_stimulus","pressed","shadow","shadow_offset","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Style","StyleSheet","active","adapt_into_using","arrays_from","arrays_into","background","border","borrow","borrow_mut","clone","clone_into","components_from","fmt","from","from_angle","from_stimulus","hovered","icon_color","into","into_angle","into_color","into_color_unclamped","into_stimulus","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Style","StyleSheet","adapt_into_using","appearance","arrays_from","arrays_into","background","border","borrow","borrow_mut","clone","clone_into","components_from","default","fmt","from","from_angle","from_stimulus","into","into_angle","into_color","into_color_unclamped","into_stimulus","shadow","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","with_background","with_border","Appearance","Style","StyleSheet","adapt_into_using","appearance","arrays_from","arrays_into","background","border","borrow","borrow_mut","clone","clone_into","components_from","fmt","from","from_angle","from_stimulus","into","into_angle","into_color","into_color_unclamped","into_stimulus","selected_background","selected_text_color","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Line","Style","StyleSheet","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","background","border","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered_region","hovered_split","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","picked_split","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","width","Appearance","Style","StyleSheet","active","adapt_into_using","arrays_from","arrays_into","background","border","borrow","borrow_mut","clone","clone_into","components_from","fmt","from","from_angle","from_stimulus","handle_color","hovered","into","into_angle","into_color","into_color_unclamped","into_stimulus","placeholder_color","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Style","StyleSheet","adapt_into_using","appearance","arrays_from","arrays_into","background","bar","border_radius","borrow","borrow_mut","clone","clone_into","components_from","fmt","from","from_angle","from_stimulus","into","into_angle","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Style","StyleSheet","active","adapt_into_using","arrays_from","arrays_into","background","border_color","border_width","borrow","borrow_mut","clone","clone_into","components_from","dot_color","fmt","from","from_angle","from_stimulus","hovered","into","into_angle","into_color","into_color_unclamped","into_stimulus","text_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","AsymmetricPadding","FillMode","Full","Padded","Percent","Style","StyleSheet","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","fill","fill_mode","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","radius","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","width","Scrollbar","Scroller","Style","StyleSheet","active","active_horizontal","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","background","border","border","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","dragging","dragging_horizontal","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered","hovered_horizontal","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","scroller","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","Appearance","Circle","Handle","HandleShape","Rail","Rectangle","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","border_color","border_radius","border_width","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","color","colors","components_from","components_from","components_from","components_from","dragging","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","handle","hovered","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","rail","shape","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","width","border_radius","radius","width","Appearance","Style","StyleSheet","adapt_into_using","appearance","arrays_from","arrays_into","borrow","borrow_mut","clone","clone_into","color","components_from","default","fmt","from","from_angle","from_stimulus","hovered","into","into_angle","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","Appearance","Style","StyleSheet","active","adapt_into_using","arrays_from","arrays_into","background","border","borrow","borrow_mut","clone","clone_into","components_from","disabled","disabled_color","fmt","focused","from","from_angle","from_stimulus","hovered","into","into_angle","into_color","into_color_unclamped","into_stimulus","placeholder_color","selection_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","value_color","Appearance","Style","StyleSheet","active","adapt_into_using","arrays_from","arrays_into","background","border","borrow","borrow_mut","clone","clone_into","components_from","disabled","disabled_color","fmt","focused","from","from_angle","from_stimulus","hovered","icon_color","into","into_angle","into_color","into_color_unclamped","into_stimulus","placeholder_color","selection_color","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","value_color","ALL","Application","Box","Button","Checkbox","Color","Container","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Danger","Danger","Dark","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Destructive","Light","Menu","Palette","PaneGrid","PickList","Positive","Primary","Primary","Primary","ProgressBar","Radio","Rule","Scrollable","Secondary","Secondary","Slider","Success","Success","Svg","Text","Text","TextEditor","TextInput","Theme","Toggler","Transparent","active","active","active","active","active","active","active","active","active","active_horizontal","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","appearance","appearance","appearance","appearance","appearance","appearance","appearance","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","custom","custom","custom","custom_fn","custom_with_fn","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","disabled","disabled","disabled","disabled_color","disabled_color","dragging","dragging","dragging_horizontal","eq","eq","extended_palette","fmt","fmt","fmt","fmt","focused","focused","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered_horizontal","hovered_region","hovered_split","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","palette","palette","picked_split","placeholder_color","placeholder_color","pressed","selection_color","selection_color","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","value_color","value_color","with_fn","Background","DARK","Danger","EXTENDED_DARK","EXTENDED_LIGHT","Extended","LIGHT","Pair","Palette","Primary","Secondary","Success","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","background","background","base","base","base","base","base","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","danger","danger","eq","eq","eq","eq","eq","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","generate","generate","generate","generate","generate","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_dark","new","new","primary","primary","secondary","strong","strong","strong","strong","strong","success","success","text","text","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","weak","weak","weak","weak","weak","Appearance","Style","StyleSheet","active","adapt_into_using","arrays_from","arrays_into","background","background_border","borrow","borrow_mut","clone","clone_into","components_from","fmt","foreground","foreground_border","from","from_angle","from_stimulus","hovered","into","into_angle","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into"],"q":[[0,"iced_style"],[19,"iced_style::application"],[51,"iced_style::button"],[89,"iced_style::checkbox"],[123,"iced_style::container"],[159,"iced_style::menu"],[193,"iced_style::pane_grid"],[255,"iced_style::pick_list"],[290,"iced_style::progress_bar"],[322,"iced_style::radio"],[357,"iced_style::rule"],[421,"iced_style::scrollable"],[486,"iced_style::slider"],[606,"iced_style::slider::HandleShape"],[609,"iced_style::svg"],[641,"iced_style::text_editor"],[679,"iced_style::text_input"],[718,"iced_style::theme"],[1293,"iced_style::theme::palette"],[1548,"iced_style::toggler"],[1582,"palette::chromatic_adaptation"],[1583,"core::default"],[1584,"core::fmt"],[1585,"core::fmt"],[1586,"palette::convert::try_from_into_color"],[1587,"core::any"],[1588,"iced_core::background"],[1589,"core::convert"],[1590,"iced_core::color"],[1591,"iced_core::pixels"],[1592,"core::clone"],[1593,"core::option"],[1594,"iced_core::widget::text"],[1595,"alloc::string"],[1596,"core::ops::function"],[1597,"core::ops::function"]],"d":["","Change the appearance of an application.","Change the apperance of a button.","Change the appearance of a checkbox.","Change the appearance of a container.","","Change the appearance of menus.","Change the appearance of a pane grid.","Change the appearance of a pick list.","Change the appearance of a progress bar.","Change the appearance of radio buttons.","Change the appearance of a rule.","Change the appearance of a scrollable.","Change the apperance of a slider.","Change the appearance of a svg.","Change the appearance of a text editor.","Change the appearance of a text input.","Use the built-in theme and styles.","Change the appearance of a toggler.","The appearance of an application.","The supported style of the StyleSheet.","A set of rules that dictate the style of an application.","","Returns the Appearance of the application for the provided …","","","The background Color of the application.","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","The default text Color of the application.","","","","","","","","","The appearance of a button.","The supported style of the StyleSheet.","A set of rules that dictate the style of a button.","Produces the active Appearance of a button.","","","","The Background of the button.","The Border of the buton.","","","","","","","Produces the disabled Appearance of a button.","","Returns the argument unchanged.","","","Produces the hovered Appearance of a button.","Calls U::from(self).","","","","","Produces the pressed Appearance of a button.","The Shadow of the butoon.","The amount of offset to apply to the shadow of the button.","The text Color of the button.","","","","","","","","","The appearance of a checkbox.","The supported style of the StyleSheet.","A set of rules that dictate the style of a checkbox.","Produces the active Appearance of a checkbox.","","","","The Background of the checkbox.","The Border of hte checkbox.","","","","","","","Returns the argument unchanged.","","","Produces the hovered Appearance of a checkbox.","The icon Color of the checkbox.","Calls U::from(self).","","","","","The text Color of the checkbox.","","","","","","","","","The appearance of a container.","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","Produces the Appearance of a container.","","","The Background of the container.","The Border of the container.","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","The Shadow of the container.","The text Color of the container.","","","","","","","","","Derives a new Appearance with the given Background.","Derives a new Appearance with a border of the given Color …","The appearance of a menu.","The supported style of the StyleSheet.","The style sheet of a menu.","","Produces the Appearance of a menu.","","","The Background of the menu.","The Border of the menu.","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","The background Color of a selected option in the menu.","The text Color of a selected option in the menu.","The text Color of the menu.","","","","","","","","","The appearance of the hovered region of a pane grid.","A line.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","","","","","","","The Background of the pane region.","The Border of the pane region.","","","","","","","","","The Color of the Line.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","The Appearance to draw when a pane is hovered.","The Line to draw when a split is hovered.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","The Line to draw when a split is picked.","","","","","","","","","","","","","","","","","The width of the Line.","The appearance of a pick list.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","Produces the active Appearance of a pick list.","","","","The Background of the pick list.","The Border of the pick list.","","","","","","","Returns the argument unchanged.","","","The handle Color of the pick list.","Produces the hovered Appearance of a pick list.","Calls U::from(self).","","","","","The placeholder Color of the pick list.","The text Color of the pick list.","","","","","","","","","The appearance of a progress bar.","The supported style of the StyleSheet.","A set of rules that dictate the style of a progress bar.","","Produces the Appearance of the progress bar.","","","The Background of the progress bar.","The Background of the bar of the progress bar.","The border radius of the progress bar.","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","The appearance of a radio button.","The supported style of the StyleSheet.","A set of rules that dictate the style of a radio button.","Produces the active Appearance of a radio button.","","","","The Background of the radio button.","The border Color of the radio button.","The border width of the radio button.","","","","","","The Color of the dot of the radio button.","","Returns the argument unchanged.","","","Produces the hovered Appearance of a radio button.","Calls U::from(self).","","","","","The text Color of the radio button.","","","","","","","","","The appearance of a rule.","Different offset on each end of the rule, length units. …","The fill mode of a rule.","Fill the whole length of the container.","Uniform offset from each end, length units.","Fill a percent of the length of the container. The rule …","The supported style of the StyleSheet.","A set of rules that dictate the style of a rule.","","","Produces the style of a rule.","","","","","","","","","","","","","The color of the rule.","","","Return the starting offset and length of the rule.","The FillMode of the rule.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","The radius of the line corners.","","","","","","","","","","","","","","","","","The width (thickness) of the rule line.","The appearance of a scrollable.","The appearance of the scroller of a scrollable.","The supported style of the StyleSheet.","A set of rules that dictate the style of a scrollable.","Produces the style of an active scrollbar.","Produces the style of an active horizontal scrollbar.","","","","","","","The Background of a scrollable.","The Border of a scrollable.","The Border of the scroller.","","","","","","","","","The Color of the scroller.","","","Produces the style of a scrollbar that is being dragged.","Produces the style of a horizontal scrollbar that is being …","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Produces the style of a scrollbar when the scrollable is …","Produces the style of a horizontal scrollbar when the …","Calls U::from(self).","Calls U::from(self).","","","","","","","","","The appearance of the Scroller of a scrollable.","","","","","","","","","","","","","","","","","The appearance of a slider.","A circular handle.","The appearance of the handle of a slider.","The shape of the handle of a slider.","The appearance of a slider rail","A rectangular shape.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","Produces the style of an active slider.","","","","","","","","","","","","","The border Color of the handle.","The border radius of the corners of the rail.","The border width of the handle.","","","","","","","","","","","","","","","","","The Color of the handle.","The colors of the rail of the slider.","","","","","Produces the style of a slider that is being dragged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","The appearance of the Handle of the slider.","Produces the style of an hovered slider.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","The colors of the rail of the slider.","The shape of the handle.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The width of the stroke of a slider rail.","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle.","The appearance of an SVG.","The supported style of the StyleSheet.","The stylesheet of a svg.","","Produces the Appearance of the svg.","","","","","","","The Color filter of an SVG.","","","","Returns the argument unchanged.","","","Produces the hovered Appearance of a svg content.","Calls U::from(self).","","","","","","","","","","","","","The appearance of a text input.","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","Produces the style of an active text input.","","","","The Background of the text editor.","The Border of the text editor.","","","","","","Produces the style of a disabled text input.","Produces the Color of the value of a disabled text input.","","Produces the style of a focused text input.","Returns the argument unchanged.","","","Produces the style of an hovered text input.","Calls U::from(self).","","","","","Produces the Color of the placeholder of a text input.","Produces the Color of the selection of a text input.","","","","","","","","","Produces the Color of the value of a text input.","The appearance of a text input.","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","Produces the style of an active text input.","","","","The Background of the text input.","The Border of the text input.","","","","","","Produces the style of a disabled text input.","Produces the Color of the value of a disabled text input.","","Produces the style of a focused text input.","Returns the argument unchanged.","","","Produces the style of an hovered text input.","The icon Color of the text input.","Calls U::from(self).","","","","","Produces the Color of the placeholder of a text input.","Produces the Color of the selection of a text input.","","","","","","","","","Produces the Color of the value of a text input.","A list with all the defined themes.","The style of an application.","A simple box.","The style of a button.","The style of a checkbox.","Colored text.","The style of a container.","A Theme with a customized Palette.","A Theme that uses a Custom palette.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","The danger style.","The danger style.","The built-in dark variant.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","No filtering to the rendered SVG.","The default style.","The default style.","The default style.","The default style.","The destructive style.","The built-in light variant.","The style of a menu.","","The style of a pane grid.","The style of a pick list.","The positive style.","The primary style.","The primary style.","The primary style.","The style of a progress bar.","The style of a radio button.","The style of a rule.","The style of a scrollable.","The secondary style.","The secondary style.","The style of a slider.","The success style.","The success style.","Svg","The style of text.","The text style.","The style of a text input.","The style of a text input.","A built-in theme.","The style of a toggler.","No style.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new custom Theme from the given Palette.","Creates a custom Button style variant.","Creates a custom Scrollable theme.","Creates a custom Svg style.","Creates a new custom Theme from the given Palette, with a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the palette::Extended of the Theme.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Custom theme from the given Palette.","Define the colors of a theme.","Returns the Palette of the Theme.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Custom theme from the given Palette with a …","A set of background colors.","The built-in dark variant of a Palette.","A set of danger colors.","The built-in dark variant of an Extended palette.","The built-in light variant of an Extended palette.","An extended set of colors generated from a Palette.","The built-in light variant of a Palette.","A pair of background and text colors.","A color palette.","A set of primary colors.","A set of secondary colors.","A set of success colors.","","","","","","","","","","","","","","","","","","","","","","","","","The background Color of the Palette.","The set of background colors.","The base background color.","The base primary color.","The base secondary color.","The base success color.","The base danger color.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background color.","","","","","","","","","The danger Color of the Palette.","The set of danger colors.","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Generates an Extended palette from a simple Palette.","Generates a set of Primary colors from the base, …","Generates a set of Secondary colors from the base and text …","Generates a set of Success colors from the base, …","Generates a set of Danger colors from the base, …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether the palette is dark or not.","Creates a new Pair from a background Color and some text …","Generates a set of Background colors from the base and …","The primary Color of the Palette.","The set of primary colors.","The set of secondary colors.","A stronger version of the base background color.","A stronger version of the base primary color.","A stronger version of the base secondary color.","A stronger version of the base success color.","A stronger version of the base danger color.","The success Color of the Palette.","The set of success colors.","The text Color of the Palette.","The text color.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A weaker version of the base background color.","A weaker version of the base primary color.","A weaker version of the base secondary color.","A weaker version of the base success color.","A weaker version of the base danger color.","The appearance of a toggler.","The supported style of the StyleSheet.","A set of rules that dictate the style of a toggler.","Returns the active Appearance of the toggler for the …","","","","The background Color of the toggler.","The Color of the background border of the toggler.","","","","","","","The foreground Color of the toggler.","The Color of the foreground border of the toggler.","Returns the argument unchanged.","","","Returns the hovered Appearance of the toggler for the …","Calls U::from(self).","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,13,0,13,14,14,14,14,14,14,14,14,14,14,14,13,14,14,14,14,13,14,14,14,14,14,13,14,14,14,14,14,14,14,14,14,14,14,0,15,0,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,17,0,18,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,0,23,0,24,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,28,0,26,27,26,27,26,27,26,26,26,27,26,27,26,27,26,27,27,26,27,27,26,27,26,27,26,27,26,27,28,28,26,27,26,27,26,27,26,27,26,27,28,26,27,26,27,26,27,26,27,26,27,26,27,26,27,26,27,27,0,30,0,30,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,30,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,0,32,0,33,32,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,34,0,34,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,34,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,38,0,38,38,38,36,0,37,38,36,37,38,37,38,37,38,37,38,37,38,37,38,37,37,38,38,37,37,38,37,38,37,38,37,38,37,38,37,38,37,38,37,38,37,38,37,37,38,37,38,37,38,37,38,37,38,37,38,37,38,37,38,37,0,0,40,0,40,40,41,42,41,42,41,42,41,41,42,41,42,41,42,41,42,41,42,42,41,42,40,40,41,42,41,42,41,42,41,42,40,40,41,42,41,42,41,42,41,42,41,42,41,41,42,41,42,41,42,41,42,41,42,41,42,41,42,41,42,0,47,0,0,0,47,43,0,43,44,45,46,47,44,45,46,47,44,45,46,47,46,45,46,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,46,45,44,45,46,47,43,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,44,43,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,44,46,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,44,45,46,47,45,89,90,89,0,48,0,49,48,49,49,49,49,49,49,49,49,49,49,49,49,49,48,49,49,49,49,49,49,49,49,49,49,49,49,49,0,50,0,50,51,51,51,51,51,51,51,51,51,51,50,50,51,50,51,51,51,50,51,51,51,51,51,50,50,51,51,51,51,51,51,51,51,50,0,52,0,52,53,53,53,53,53,53,53,53,53,53,52,52,53,52,53,53,53,52,53,53,53,53,53,53,52,52,53,53,53,53,53,53,53,53,52,54,0,71,0,0,60,0,0,54,69,63,70,71,72,58,59,73,74,75,76,77,65,64,78,79,70,76,54,69,72,58,59,73,74,75,77,65,64,60,78,79,63,54,0,0,0,0,63,63,70,76,0,0,0,0,63,70,0,70,76,0,0,63,0,0,0,0,71,54,54,54,54,54,54,54,54,54,54,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,54,54,54,54,54,54,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,58,59,60,54,57,58,59,60,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,63,64,65,54,54,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,54,54,54,54,54,54,54,54,57,54,54,54,57,57,54,54,54,57,69,69,63,70,71,71,71,72,58,58,59,73,74,75,76,76,77,77,65,64,60,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,54,54,54,54,54,54,54,54,54,54,54,54,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,57,0,54,54,54,54,54,54,54,54,57,58,59,60,54,57,54,57,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,57,69,63,70,71,72,58,59,73,74,75,76,77,65,64,60,78,79,54,54,57,0,62,0,0,0,0,62,0,0,0,0,0,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,82,62,67,82,83,84,85,86,87,62,67,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,67,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,67,82,83,62,67,67,83,84,85,86,87,62,67,62,82,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,62,67,82,83,84,85,86,87,83,84,85,86,87,0,88,0,88,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,88,55,55,55,55,55,55,55,55,55,55,55,55,55],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[[3,[],[[2,[-1]]]],-1],4,5],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[4,4],[[-1,-2],6,[],[]],[-1,-2,[],[]],[[4,4],7],[[4,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[[13,[],[[2,[-1]]]],-1],14,5],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[14,14],[[-1,-2],6,[],[]],[-1,-2,[],[]],[[],14],[[[13,[],[[2,[-1]]]],-1],14,5],[[14,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[13,[],[[2,[-1]]]],-1],14,5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[13,[],[[2,[-1]]]],-1],14,5],0,0,0,[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[[15,[],[[2,[-1]]]],-1,7],16,5],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[16,16],[[-1,-2],6,[],[]],[-1,-2,[],[]],[[16,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[15,[],[[2,[-1]]]],-1,7],16,5],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[[17,[],[[2,[-1]]]],-1],18,5],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[18,18],[[-1,-2],6,[],[]],[-1,-2,[],[]],[[],18],[[18,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[18,-1],18,[[20,[19]]]],[[18,-1,-2],18,[[20,[21]]],[[20,[22]]]],0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[[23,[],[[2,[-1]]]],-1],24,[5,25]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[24,24],[[-1,-2],6,[],[]],[-1,-2,[],[]],[[24,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[26,26],[27,27],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[27,27],7],[[26,8],9],[[27,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[28,[],[[2,[-1]]]],-1],26,5],[[[28,[],[[2,[-1]]]],-1],[[29,[27]]],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[28,[],[[2,[-1]]]],-1],[[29,[27]]],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[[30,[],[[2,[-1]]]],-1],31,[5,25]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[31,31],[[-1,-2],6,[],[]],[-1,-2,[],[]],[[31,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,[[[30,[],[[2,[-1]]]],-1],31,[5,25]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[[32,[],[[2,[-1]]]],-1],33,5],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[33,33],[[-1,-2],6,[],[]],[-1,-2,[],[]],[[33,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[[34,[],[[2,[-1]]]],-1,7],35,5],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[35,35],[[-1,-2],6,[],[]],[-1,-2,[],[]],0,[[35,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[34,[],[[2,[-1]]]],-1,7],35,5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[[36,[],[[2,[-1]]]],-1],37,5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[37,37],[38,38],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[38,39],[[6,[39,39]]]],0,[[37,8],9],[[38,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[[[40,[],[[2,[-1]]]],-1],41,5],[[[40,[],[[2,[-1]]]],-1],41,5],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[41,41],[42,42],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[[40,[],[[2,[-1]]]],-1],41,5],[[[40,[],[[2,[-1]]]],-1],41,5],[[41,8],9],[[42,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[40,[],[[2,[-1]]]],-1,7],41,5],[[[40,[],[[2,[-1]]]],-1,7],41,5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,[[[43,[],[[2,[-1]]]],-1],44,5],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[44,44],[45,45],[46,46],[47,47],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[43,[],[[2,[-1]]]],-1],44,5],[[44,8],9],[[45,8],9],[[46,8],9],[[47,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[43,[],[[2,[-1]]]],-1],44,5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[[48,[],[[2,[-1]]]],-1],49,5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[49,49],[[-1,-2],6,[],[]],0,[-1,-2,[],[]],[[],49],[[49,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[48,[],[[2,[-1]]]],-1],49,5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,[[[50,[],[[2,[-1]]]],-1],51,5],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[51,51],[[-1,-2],6,[],[]],[-1,-2,[],[]],[[[50,[],[[2,[-1]]]],-1],51,5],[[[50,[],[[2,[-1]]]],-1],21,5],[[51,8],9],[[[50,[],[[2,[-1]]]],-1],51,5],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[50,[],[[2,[-1]]]],-1],51,5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[50,[],[[2,[-1]]]],-1],21,5],[[[50,[],[[2,[-1]]]],-1],21,5],[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[50,[],[[2,[-1]]]],-1],21,5],0,0,0,[[[52,[],[[2,[-1]]]],-1],53,5],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[53,53],[[-1,-2],6,[],[]],[-1,-2,[],[]],[[[52,[],[[2,[-1]]]],-1],53,5],[[[52,[],[[2,[-1]]]],-1],21,5],[[53,8],9],[[[52,[],[[2,[-1]]]],-1],53,5],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[52,[],[[2,[-1]]]],-1],53,5],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[52,[],[[2,[-1]]]],-1],21,5],[[[52,[],[[2,[-1]]]],-1],21,5],[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[52,[],[[2,[-1]]]],-1],21,5],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[54,-1,7],35,[]],[[54,-1,7],55,[]],[[54,-1,7],16,[]],[[54,-1],51,[]],[[54,-1],41,[]],[[54,-1],14,[]],[[54,-1],44,[]],[[54,-1],31,[]],[[54,-1],53,[]],[[54,-1],41,[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[54,-1],33,[]],[[54,-1],37,[]],[[54,-1],24,[]],[[54,-1],18,[]],[[54,-1],49,[]],[[54,-1],4,[]],[[54,-1],56,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[54,54],[57,57],[58,58],[59,59],[60,60],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[61,62],54],[-1,63,[[13,[],[[2,[54]]]]]],[-1,64,[[40,[],[[2,[54]]]]]],[[],65],[[61,62,-1],54,[[68,[62],[[66,[67]]]]]],[[],54],[[],69],[[],63],[[],70],[[],71],[[],72],[[],58],[[],59],[[],73],[[],74],[[],75],[[],76],[[],77],[[],65],[[],64],[[],60],[[],78],[[],79],[[54,-1],53,[]],[[54,-1],51,[]],[[54,-1],14,[]],[[54,-1],21,[]],[[54,-1],21,[]],[[54,-1],44,[]],[[54,-1],41,[]],[[54,-1],41,[]],[[54,54],7],[[57,57],7],[54,67],[[54,8],9],[[54,8],9],[[57,8],9],[[57,8],9],[[54,-1],53,[]],[[54,-1],51,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,69,[[80,[54],[[66,[4]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,71,[[80,[54],[[66,[18]]]]]],[-1,-1,[]],[18,71],[-1,-1,[]],[-1,-1,[]],[59,58],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,76,[[80,[54],[[66,[33]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,77,[[80,[54],[[66,[37]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[21,60],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[54,-1],14,[]],[[54,-1],49,[]],[[54,-1,7],35,[]],[[54,-1,7],41,[]],[[54,-1,7],16,[]],[[54,-1],51,[]],[[54,-1],53,[]],[[54,-1],31,[]],[[54,-1],44,[]],[[54,-1,7],55,[]],[[54,-1,7],41,[]],[[54,-1],26,[]],[[54,-1],[[29,[27]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[61,62],57],0,[54,62],[[54,-1],[[29,[27]]],[]],[[54,-1],21,[]],[[54,-1],21,[]],[[54,-1],14,[]],[[54,-1],21,[]],[[54,-1],21,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,81,[]],[-1,81,[]],[-1,61,[]],[-1,61,[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[54,-1],21,[]],[[54,-1],21,[]],[[61,62,-1],57,[[68,[62],[[66,[67]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[62,62],[67,67],[82,82],[83,83],[84,84],[85,85],[86,86],[87,87],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],[[-1,-2],6,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[62,62],7],[[67,67],7],[[82,82],7],[[83,83],7],[[84,84],7],[[85,85],7],[[86,86],7],[[87,87],7],[[62,8],9],[[67,8],9],[[82,8],9],[[83,8],9],[[84,8],9],[[85,8],9],[[86,8],9],[[87,8],9],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[62,67],[[21,21,21],84],[[21,21],85],[[21,21,21],86],[[21,21,21],87],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[21,21],82],[[21,21],83],0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,0,0,0,[[[88,[],[[2,[-1]]]],-1,7],55,5],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[55,55],[[-1,-2],6,[],[]],[-1,-2,[],[]],[[55,8],9],0,0,[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[88,[],[[2,[-1]]]],-1,7],55,5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2]]],[],[]],[-1,[[10,[-2,[11,[-2]]]]],[],[]],[-1,12,[]],[-1,-2,[],[]],[-1,-2,[],[]]],"c":[],"p":[[10,"TransformMatrix",1582],[17,"Style"],[10,"StyleSheet",19],[5,"Appearance",19],[10,"Default",1583],[1,"tuple"],[1,"bool"],[5,"Formatter",1584],[8,"Result",1584],[6,"Result",1585],[5,"OutOfBounds",1586],[5,"TypeId",1587],[10,"StyleSheet",51],[5,"Appearance",51],[10,"StyleSheet",89],[5,"Appearance",89],[10,"StyleSheet",123],[5,"Appearance",123],[6,"Background",1588],[10,"Into",1589],[5,"Color",1590],[5,"Pixels",1591],[10,"StyleSheet",159],[5,"Appearance",159],[10,"Clone",1592],[5,"Appearance",193],[5,"Line",193],[10,"StyleSheet",193],[6,"Option",1593],[10,"StyleSheet",255],[5,"Appearance",255],[10,"StyleSheet",290],[5,"Appearance",290],[10,"StyleSheet",322],[5,"Appearance",322],[10,"StyleSheet",357],[5,"Appearance",357],[6,"FillMode",357],[1,"f32"],[10,"StyleSheet",421],[5,"Scrollbar",421],[5,"Scroller",421],[10,"StyleSheet",486],[5,"Appearance",486],[5,"Rail",486],[5,"Handle",486],[6,"HandleShape",486],[10,"StyleSheet",609],[5,"Appearance",609],[10,"StyleSheet",641],[5,"Appearance",641],[10,"StyleSheet",679],[5,"Appearance",679],[6,"Theme",718],[5,"Appearance",1548],[5,"Appearance",1594],[5,"Custom",718],[6,"Menu",718],[6,"PickList",718],[6,"Text",718],[5,"String",1595],[5,"Palette",1293],[6,"Button",718],[6,"Scrollable",718],[6,"Svg",718],[17,"Output"],[5,"Extended",1293],[10,"FnOnce",1596],[6,"Application",718],[6,"Checkbox",718],[6,"Container",718],[6,"Slider",718],[6,"Radio",718],[6,"Toggler",718],[6,"PaneGrid",718],[6,"ProgressBar",718],[6,"Rule",718],[6,"TextInput",718],[6,"TextEditor",718],[10,"Fn",1596],[5,"SmolStr",1597],[5,"Pair",1293],[5,"Background",1293],[5,"Primary",1293],[5,"Secondary",1293],[5,"Success",1293],[5,"Danger",1293],[10,"StyleSheet",1548],[15,"Rectangle",606],[15,"Circle",606]],"b":[[786,"impl-StyleSheet-for-Theme"],[787,"impl-StyleSheet-for-Theme"],[788,"impl-StyleSheet-for-Theme"],[789,"impl-StyleSheet-for-Theme"],[790,"impl-StyleSheet-for-Theme"],[791,"impl-StyleSheet-for-Theme"],[792,"impl-StyleSheet-for-Theme"],[793,"impl-StyleSheet-for-Theme"],[794,"impl-StyleSheet-for-Theme"],[815,"impl-StyleSheet-for-Theme"],[816,"impl-StyleSheet-for-Theme"],[817,"impl-StyleSheet-for-Theme"],[818,"impl-StyleSheet-for-Theme"],[819,"impl-StyleSheet-for-Theme"],[820,"impl-StyleSheet-for-Theme"],[821,"impl-StyleSheet-for-Theme"],[950,"impl-StyleSheet-for-Theme"],[951,"impl-StyleSheet-for-Theme"],[952,"impl-StyleSheet-for-Theme"],[953,"impl-StyleSheet-for-Theme"],[954,"impl-StyleSheet-for-Theme"],[955,"impl-StyleSheet-for-Theme"],[956,"impl-StyleSheet-for-Theme"],[961,"impl-Display-for-Theme"],[962,"impl-Debug-for-Theme"],[963,"impl-Display-for-Custom"],[964,"impl-Debug-for-Custom"],[965,"impl-StyleSheet-for-Theme"],[966,"impl-StyleSheet-for-Theme"],[973,"impl-From%3CT%3E-for-Container"],[975,"impl-From%3CAppearance%3E-for-Container"],[1031,"impl-StyleSheet-for-Theme"],[1032,"impl-StyleSheet-for-Theme"],[1033,"impl-StyleSheet-for-Theme"],[1034,"impl-StyleSheet-for-Theme"],[1035,"impl-StyleSheet-for-Theme"],[1036,"impl-StyleSheet-for-Theme"],[1037,"impl-StyleSheet-for-Theme"],[1038,"impl-StyleSheet-for-Theme"],[1039,"impl-StyleSheet-for-Theme"],[1040,"impl-StyleSheet-for-Theme"],[1143,"impl-StyleSheet-for-Theme"],[1144,"impl-StyleSheet-for-Theme"],[1146,"impl-StyleSheet-for-Theme"],[1147,"impl-StyleSheet-for-Theme"],[1290,"impl-StyleSheet-for-Theme"],[1291,"impl-StyleSheet-for-Theme"]]},\ "iced_tiny_skia":{"doc":"","t":"FPPPPPPPIPPIFPPPNNNNNNNNNNNNNNNNNNENNOONNNNNNNNNNNNNNNNCENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNHNNNNNNNNNNNNNNNNNEECFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNHNHNNNNNNNNNNNNNNN","n":["Backend","Cache","Clip","Custom","Editor","Group","Image","Paragraph","Primitive","Quad","RawText","Renderer","Settings","Svg","Text","Translate","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","core","default","default","default_font","default_text_size","deref","deref","deref_mut","deref_mut","dimensions","draw","drop","drop","eq","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","geometry","graphics","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","load_font","new","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","viewport_dimensions","window","background","border","bounds","bounds","bounds","bounds","bounds","clip_bounds","clip_bounds","clip_bounds","color","color","color","color","content","content","content","content","editor","filter_method","font","handle","handle","horizontal_alignment","line_height","paragraph","position","position","primitives","shadow","shaping","size","translation","vertical_alignment","Frame","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","center","clip","components_from","deref","deref_mut","drop","fill","fill_rectangle","fill_text","from","from_angle","from_stimulus","height","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_fill_rule","into_paint","into_primitive","into_stimulus","into_stroke","new","pop_transform","push_transform","rotate","scale","scale_nonuniform","size","stroke","translate","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","width","Compositor","Surface","compositor","Compositor","Surface","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","components_from","components_from","configure_surface","create_renderer","create_surface","deref","deref","deref_mut","deref_mut","drop","drop","fetch_information","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","new","present","present","screenshot","screenshot","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into"],"q":[[0,"iced_tiny_skia"],[93,"iced_tiny_skia::Primitive"],[127,"iced_tiny_skia::geometry"],[178,"iced_tiny_skia::window"],[181,"iced_tiny_skia::window::compositor"],[251,"palette::chromatic_adaptation"],[252,"core::any"],[253,"iced_core::image"],[254,"iced_core::size"],[255,"tiny_skia::pixmap"],[256,"tiny_skia::mask"],[257,"iced_graphics::viewport"],[258,"iced_core::rectangle"],[259,"iced_core::color"],[260,"core::convert"],[261,"core::fmt"],[262,"core::fmt"],[263,"alloc::sync"],[264,"alloc::rc"],[265,"alloc::borrow"],[266,"core::result"],[267,"palette::convert::try_from_into_color"],[268,"core::any"],[269,"iced_core::point"],[270,"iced_graphics::geometry::path"],[271,"iced_graphics::geometry::fill"],[272,"core::convert"],[273,"iced_graphics::geometry::fill"],[274,"iced_graphics::geometry::style"],[275,"tiny_skia::painter"],[276,"tiny_skia_path::stroker"],[277,"iced_core::vector"],[278,"iced_graphics::compositor"],[279,"core::clone"],[280,"iced_graphics::compositor"],[281,"iced_graphics::compositor"]],"d":["","A cached primitive.","A clip primitive","A backend-specific primitive.","An editor primitive","A group of primitives","An image primitive","A paragraph primitive","","A quad primitive","A raw cosmic-text primitive","A tiny-skia graphics renderer for iced.","The settings of a Backend.","An SVG primitive","A text primitive","A primitive that applies a translation","","","","","","","","","","","","","","","","","","","","","","The default Font to use.","The default size of text.","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background of the quad","The [Border] of the quad","The bounds of the text.","The bounds of the quad","The bounds of the image","The bounds of the viewport","The bounds of the clip","The clip bounds of the text.","The clip bounds of the paragraph.","The clip bounds of the editor.","The color of the text.","The color of the paragraph.","The color of the editor.","The [Color] filter","The contents of the text.","The content of the clip","The primitive to translate","The cached primitive","The [editor::Weak] reference.","The filter method of the image","The font of the text.","The handle of the image","The path of the SVG file","The horizontal alignment of the text.","The line height of the text.","The [paragraph::Weak] reference.","The position of the paragraph.","The position of the editor.","The primitives of the group","The [Shadow] of the quad","The shaping strategy of the text.","The size of the text in logical pixels.","The translation vector","The vertical alignment of the text.","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,12,12,12,12,12,12,12,0,12,12,0,0,12,12,12,5,3,5,3,5,3,5,3,5,3,5,3,5,3,3,3,5,3,0,5,3,3,3,5,3,5,3,5,5,5,3,3,3,5,3,5,3,5,3,0,0,5,3,5,3,5,3,5,3,3,5,3,5,3,5,3,5,3,5,5,3,5,3,5,3,5,3,5,3,5,3,5,3,5,3,5,0,53,53,54,53,55,56,57,54,58,59,54,58,59,56,54,57,60,61,59,55,54,55,56,54,54,58,58,59,62,53,54,54,60,54,0,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,0,0,31,31,0,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,0,0,0,0,0,45,50,45,50,45,50,45,50,45,50,45,50,45,50,45,50,45,45,45,45,50,45,50,45,50,45,45,50,45,50,45,50,45,50,45,50,45,50,45,50,45,50,45,50,45,50,45,50,0,45,0,45,0,45,45,50,45,50,45,50,45,50,45,50,45,50,45,50],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[3,3],[[-1,-2],4,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],5],[[],3],0,0,[6,-1,[]],[6,-1,[]],[6,-1,[]],[6,-1,[]],[[5,7],[[9,[8]]]],[[5,10,11,[13,[12]],14,[13,[15]],16,[13,[-1]]],4,[[18,[17]]]],[6,4],[6,4],[[3,3],19],[[3,20],21],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],6],[[],6],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[22,[-1]]],[[22,[2]]],[]],[[[22,[-1]]],[[22,[2]]],[]],[[[23,[-1]]],[[23,[2]]],[]],[[[24,[-1]]],[[24,[2]]],[]],[[[24,[-1]]],[[24,[2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[5,[26,[[13,[25]]]]],4],[[],5],[-1,-2,[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2,[28,[-2]]]]],[],[]],[-1,[[27,[-2,[28,[-2]]]]],[],[]],[-1,29,[]],[-1,29,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[5,30],[[9,[8]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,2,[]],[-1,2,[]],[-1,-2,[],[]],[-1,-2,[],[]],[31,32],[[31,31,32],4],[-1,-2,[],[]],[6,-1,[]],[6,-1,[]],[6,4],[[31,33,-1],4,[[35,[34]]]],[[31,32,9,-1],4,[[35,[34]]]],[[31,-1],4,[[35,[36]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[31,37],[[],6],[-1,-2,[],[]],[-1,-2,[],[]],[[[22,[-1]]],[[22,[2]]],[]],[[[23,[-1]]],[[23,[2]]],[]],[[[24,[-1]]],[[24,[2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[38,39],[40,41],[31,12],[-1,-2,[],[]],[42,43],[9,31],[31,4],[31,4],[[31,37],4],[[31,-1],4,[[35,[37]]]],[[31,-1],4,[[35,[44]]]],[31,9],[[31,33,-1],4,[[35,[42]]]],[[31,44],4],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2,[28,[-2]]]]],[],[]],[-1,29,[]],[-1,-2,[],[]],[-1,-2,[],[]],[31,37],0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[45,-1,8,8],4,[]],[45,-1,[]],[[45,-1,8,8],-2,[46,47],[]],[6,-1,[]],[6,-1,[]],[6,-1,[]],[6,-1,[]],[6,4],[6,4],[45,48],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],6],[[],6],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[22,[-1]]],[[22,[2]]],[]],[[[22,[-1]]],[[22,[2]]],[]],[[[24,[-1]]],[[24,[2]]],[]],[[[24,[-1]]],[[24,[2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[3,-1],45,46],[[-1,-2],[[27,[45,49]]],[],46],[[5,50,[13,[12]],14,16,[13,[-1]]],[[27,[4,51]]],[[18,[17]]]],[[45,-1,-2,14,16,[13,[-3]]],[[27,[4,51]]],[],[],[[18,[17]]]],[[50,5,[13,[12]],14,16,[13,[-1]]],[[52,[25]]],[[18,[17]]]],[[45,-1,-2,14,16,[13,[-3]]],[[52,[25]]],[],[],[[18,[17]]]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2]]],[],[]],[-1,[[27,[-2,[28,[-2]]]]],[],[]],[-1,[[27,[-2,[28,[-2]]]]],[],[]],[-1,29,[]],[-1,29,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]]],"c":[],"p":[[10,"TransformMatrix",251],[10,"Any",252],[5,"Settings",0],[1,"tuple"],[5,"Backend",0],[1,"usize"],[5,"Handle",253],[1,"u32"],[5,"Size",254],[5,"PixmapMut",255],[5,"Mask",256],[8,"Primitive",0],[1,"slice"],[5,"Viewport",257],[5,"Rectangle",258],[5,"Color",259],[1,"str"],[10,"AsRef",260],[1,"bool"],[5,"Formatter",261],[8,"Result",261],[5,"Box",262],[5,"Arc",263],[5,"Rc",264],[1,"u8"],[6,"Cow",265],[6,"Result",266],[5,"OutOfBounds",267],[5,"TypeId",252],[5,"Handle",268],[5,"Frame",127],[5,"Point",269],[5,"Path",270],[5,"Fill",271],[10,"Into",260],[5,"Text",272],[1,"f32"],[6,"Rule",271],[6,"FillRule",273],[6,"Style",274],[5,"Paint",273],[5,"Stroke",275],[5,"Stroke",276],[5,"Vector",277],[5,"Compositor",181],[10,"Window",278],[10,"Clone",279],[5,"Information",278],[6,"Error",280],[5,"Surface",181],[6,"SurfaceError",278],[5,"Vec",281],[15,"Quad",93],[15,"Text",93],[15,"Image",93],[15,"Svg",93],[15,"Clip",93],[15,"Paragraph",93],[15,"Editor",93],[15,"Translate",93],[15,"Cache",93],[15,"Group",93]],"b":[]},\ "iced_wgpu":{"doc":"A wgpu renderer for Iced.","t":"FEEIENNNNNNENNNNNNNNNCENNNNNNCNNNCCNNNNNNNNNECFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPGFEPFPPGPNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNCONNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOFPGPNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONONNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNOOOOOOPPGPPPPPPEPIPPPPPNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOFKKFNNNNNNNNNNONNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNMOMNNNNNNNNNNNNNNNNNNFNONNNNNNNNOONNNNNNNNNNNONNNNNONNNNNNNNNEFNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNFNNNNNNNNNNNNNNNNNNNNNNNNHNHNNHNNNNNNNNN","n":["Backend","Layer","Primitive","Renderer","Settings","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","components_from","core","deref","deref_mut","dimensions","downcast","draw_pipeline_primitive","drop","from","from_angle","from_stimulus","geometry","graphics","init","into","into_angle","into_color","into_color_unclamped","into_stimulus","layer","load_font","new","present","primitive","settings","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","viewport_dimensions","wgpu","window","Frame","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","center","clip","components_from","deref","deref_mut","downcast","drop","fill","fill_rectangle","fill_text","from","from_angle","from_stimulus","height","init","into","into_angle","into_color","into_color_unclamped","into_primitive","into_stimulus","new","pop_transform","push_transform","rotate","scale","scale_nonuniform","size","stroke","translate","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","width","with_clip","with_save","Cached","Editor","Image","Layer","Mesh","Paragraph","Pipeline","Raster","Raw","Text","Vector","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds","bounds","clone","clone","clone","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","drop","drop","drop","drop","fmt","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","generate","images","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","mesh","meshes","new","overlay","pipelines","primitive","quads","text","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","viewport","bounds","bounds","color","filter_method","handle","handle","clip_bounds","clip_bounds","color","color","editor","paragraph","position","position","AttributeCount","Gradient","Mesh","Solid","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","attribute_count_of","borrow","borrow","borrow_mut","borrow_mut","clip_bounds","clone","clone","clone_into","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","gradient_vertices","gradients","indices","indices","init","init","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","origin","solid_vertices","solids","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","buffers","buffers","clip_bounds","clip_bounds","origin","origin","Cache","Clip","Custom","Custom","Editor","Group","Image","Mesh","Paragraph","Pipeline","Pipeline","Primitive","Quad","RawText","Svg","Text","Translate","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","bounds","clone","clone_into","components_from","deref","deref_mut","downcast","drop","eq","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_color","into_color_unclamped","into_stimulus","pipeline","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","background","border","bounds","bounds","bounds","bounds","bounds","clip_bounds","clip_bounds","clip_bounds","color","color","color","color","content","content","content","content","editor","filter_method","font","handle","handle","horizontal_alignment","line_height","paragraph","position","position","primitives","shadow","shaping","size","translation","vertical_alignment","Pipeline","Primitive","Renderer","Storage","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","borrow","borrow","borrow_mut","borrow_mut","bounds","clone","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","draw_pipeline_primitive","drop","drop","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","get","get_mut","has","init","init","into","into","into_angle","into_angle","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","new","prepare","primitive","render","store","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Settings","adapt_into_using","antialiasing","arrays_from","arrays_into","borrow","borrow_mut","clone","clone_into","components_from","default","default_font","default_text_size","deref","deref_mut","downcast","drop","eq","fmt","from","from_angle","from_env","from_stimulus","init","internal_backend","into","into_angle","into_color","into_color_unclamped","into_stimulus","present_mode","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Compositor","Surface","adapt_into_using","arrays_from","arrays_into","as_hal","borrow","borrow_mut","components_from","compositor","configure","deref","deref_mut","downcast","drop","drop","fmt","from","from_angle","from_stimulus","get_capabilities","get_current_texture","get_default_config","global_id","init","into","into_angle","into_color","into_color_unclamped","into_stimulus","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Compositor","adapt_into_using","arrays_from","arrays_into","borrow","borrow_mut","components_from","configure_surface","create_backend","create_renderer","create_surface","deref","deref_mut","downcast","drop","fetch_information","from","from_angle","from_stimulus","init","into","into_angle","into_color","into_color_unclamped","into_stimulus","new","new","present","present","request","screenshot","screenshot","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast"],"q":[[0,"iced_wgpu"],[46,"iced_wgpu::geometry"],[93,"iced_wgpu::layer"],[238,"iced_wgpu::layer::Image"],[244,"iced_wgpu::layer::Text"],[252,"iced_wgpu::layer::mesh"],[328,"iced_wgpu::layer::mesh::Mesh"],[334,"iced_wgpu::primitive"],[385,"iced_wgpu::primitive::Primitive"],[419,"iced_wgpu::primitive::pipeline"],[494,"iced_wgpu::settings"],[534,"iced_wgpu::window"],[572,"iced_wgpu::window::compositor"],[612,"palette::chromatic_adaptation"],[613,"iced_core::image"],[614,"iced_core::size"],[615,"iced_core::rectangle"],[616,"alloc::borrow"],[617,"wgpu"],[618,"wgpu"],[619,"wgpu"],[620,"core::option"],[621,"wgpu"],[622,"core::convert"],[623,"core::result"],[624,"palette::convert::try_from_into_color"],[625,"core::any"],[626,"iced_core::svg"],[627,"iced_core::point"],[628,"iced_graphics::geometry::path"],[629,"iced_graphics::geometry::fill"],[630,"core::convert"],[631,"iced_core::vector"],[632,"iced_graphics::geometry::stroke"],[633,"core::ops::function"],[634,"core::fmt"],[635,"core::fmt"],[636,"core::marker"],[637,"wgpu_types"],[638,"iced_graphics::compositor"],[639,"iced_graphics::compositor"]],"d":["A wgpu graphics backend for iced.","","","A wgpu graphics renderer for iced.","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Build and draw geometry.","","","Calls U::from(self).","","","","","Organize rendering primitives into a flattened list of …","","Creates a new Backend.","Draws the provided primitives in the given TextureView.","Draw using different graphical primitives.","Configure a renderer.","","","","","","","","","","","Display rendering results on windows.","A frame for drawing some geometry.","","","","","","Returns the coordinate of the center of the Frame.","Draws the clipped contents of the given Frame with origin …","","","","","","Draws the given Path on the Frame by filling it with the …","Draws an axis-aligned rectangle given its top-left corner …","Draws the characters of the given Text on the Frame, …","Returns the argument unchanged.","","","Returns the height of the Frame.","","Calls U::from(self).","","","","Produces the Primitive representing everything drawn on …","","Creates a new empty Frame with the given dimensions.","Pops a transform from the transform stack and sets it as …","Pushes the current transform in the transform stack.","Applies a rotation in radians to the current transform of …","Applies a uniform scaling to the current transform of the …","Applies a non-uniform scaling to the current transform of …","Returns the dimensions of the Frame.","Draws the stroke of the given Path on the Frame with the …","Applies a translation to the current transform of the Frame…","","","","","","","","","Returns the width of the Frame.","Executes the given drawing operations within a Rectangle …","Stores the current transform of the Frame and executes the …","Some cached text.","An editor.","A raster or vector image.","A group of primitives that should be clipped together.","","A paragraph.","A custom primitive which can be used to render primitives …","A raster image.","Some raw text.","A text primitive.","A vector image.","","","","","","","","","","","","","","","","","","","","","The bounds of the Pipeline.","The clipping bounds of the Layer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Distributes the given Primitive and generates a list of …","The images of the Layer.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","A collection of triangle primitives.","The triangle meshes of the Layer.","Creates a new Layer with the given clipping bounds.","Creates a new Layer for the provided overlay text.","The custom pipelines of this Layer.","The Primitive to render.","The quads of the Layer.","The text of the Layer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The viewport of the Pipeline.","The bounds of the image.","The bounds of the image.","The Color filter","The filter method of a raster image.","The handle of a raster image.","The handle of a vector image.","","","","","","","","","The result of counting the attributes of a set of meshes.","A mesh of triangles with a gradient color.","A mesh of triangles.","A mesh of triangles with a solid color.","","","","","","","Returns the number of total vertices & total indices of …","","","","","Returns the clip bounds of the Mesh.","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","The total amount of gradient vertices.","The total amount of gradient meshes.","Returns the indices of the Mesh.","The total amount of indices.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Returns the origin of the Mesh.","The total amount of solid vertices.","The total amount of solid meshes.","","","","","","","","","","","","","","","","","","","The vertex and index buffers of the Mesh.","The vertex and index buffers of the Mesh.","The clipping bounds of the Mesh.","The clipping bounds of the Mesh.","The origin of the vertices of the Mesh.","The origin of the vertices of the Mesh.","A cached primitive.","A clip primitive","The custom primitives supported by iced_wgpu.","A backend-specific primitive.","An editor primitive","A group of primitives","An image primitive","A mesh primitive.","A paragraph primitive","","A custom pipeline primitive.","The graphical primitives supported by iced_wgpu.","A quad primitive","A raw cosmic-text primitive","An SVG primitive","A text primitive","A primitive that applies a translation","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","Draw primitives using custom pipelines.","","","","","","","","","","The background of the quad","The [Border] of the quad","The bounds of the text.","The bounds of the quad","The bounds of the image","The bounds of the viewport","The bounds of the clip","The clip bounds of the text.","The clip bounds of the paragraph.","The clip bounds of the editor.","The color of the text.","The color of the paragraph.","The color of the editor.","The [Color] filter","The contents of the text.","The content of the clip","The primitive to translate","The cached primitive","The [editor::Weak] reference.","The filter method of the image","The font of the text.","The handle of the image","The path of the SVG file","The horizontal alignment of the text.","The line height of the text.","The [paragraph::Weak] reference.","The position of the paragraph.","The position of the editor.","The primitives of the group","The [Shadow] of the quad","The shaping strategy of the text.","The size of the text in logical pixels.","The translation vector","The vertical alignment of the text.","A custom primitive which can be used to render primitives …","A set of methods which allows a Primitive to be rendered.","A renderer than can draw custom pipeline primitives.","Stores custom, user-provided pipelines.","","","","","","","","","","","The bounds of the Pipeline.","","","","","","","","","","","","Draws a custom pipeline primitive.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns a reference to pipeline with type T if it exists …","Returns a mutable reference to pipeline T if it exists in …","Returns true if Storage contains a pipeline with type T.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Creates a new Pipeline with the given Primitive.","Processes the Primitive, allowing for GPU buffer …","The Primitive to render.","Renders the Primitive.","Inserts the pipeline T in to Storage.","","","","","","","","","","","","","","","","","","The settings of a Backend.","","The antialiasing strategy that will be used for triangle …","","","","","","","","","The default Font to use.","The default size of text.","","","","","","","Returns the argument unchanged.","","Creates new Settings using environment configuration.","","","The internal graphics backend to use.","Calls U::from(self).","","","","","The present mode of the Backend.","","","","","","","","","","","Handle to a presentable surface.","","","","Returns the inner hal Surface using a callback. The hal …","","","","Connect a window with a renderer.","Initializes Surface for presentation.","","","","","","","Returns the argument unchanged.","","","Returns the capabilities of the surface when used with the …","Returns the next texture to be presented by the swapchain …","Return a default SurfaceConfiguration from width and …","Returns a globally-unique identifier for this Surface.","","Calls U::from(self).","","","","","","","","","","","","","A window graphics backend for iced powered by wgpu.","","","","","","","","Creates a new rendering Backend for this Compositor.","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","Creates a Compositor and its Backend for the given Settings…","","Presents the given primitives with the given Compositor …","","Requests a new Compositor with the given Settings.","Renders the current surface to an offscreen buffer.","","","","","","","","",""],"i":[0,0,0,0,0,3,3,3,3,3,3,0,3,3,3,3,7,3,3,3,3,0,0,3,3,3,3,3,3,0,3,3,3,0,0,3,3,3,3,3,3,3,3,3,0,0,0,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,43,43,0,0,0,43,0,41,43,0,41,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,42,46,41,42,43,41,42,43,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,46,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,0,46,46,46,46,42,46,46,41,42,43,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,41,42,43,46,42,69,70,70,69,69,70,71,72,71,72,72,71,71,72,0,48,0,48,48,49,48,49,48,49,0,48,49,48,49,48,48,49,48,49,48,49,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,49,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,73,74,73,74,73,74,22,22,0,22,22,22,22,50,22,0,50,0,22,22,22,22,22,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,50,50,50,50,50,50,50,50,50,75,75,76,75,77,78,79,76,80,81,76,80,81,78,76,79,82,83,81,77,76,77,78,76,76,80,80,81,84,75,76,76,82,76,0,0,0,0,52,53,52,53,52,53,52,53,52,53,52,52,52,52,53,53,52,53,52,53,52,53,54,52,53,52,52,53,52,53,52,53,52,53,53,53,53,52,53,52,53,52,53,52,53,52,53,52,53,52,10,52,10,53,52,52,53,52,53,52,53,52,53,52,53,52,53,52,53,52,53,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,56,56,56,56,56,56,56,0,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,0,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,0,64,0,64,64,0,64,64,64,64,64,64,64,64,64],"f":[0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[2,-1,[]],[2,-1,[]],[[3,4],[[6,[5]]]],[-1,-2,[],[]],[[7,8,-1],9,10],[2,9],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,0,[[],2],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[3,[13,[[12,[11]]]]],9],[[14,15,16,17],3],[[3,14,15,18,[20,[19]],17,21,[12,[22]],23,[12,[-1]]],9,[[25,[24]]]],0,0,[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[20,[-2]]],[],[]],[[3,29],[[6,[5]]]],0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[30,31],[[30,30,31],9],[-1,-2,[],[]],[2,-1,[]],[2,-1,[]],[-1,-2,[],[]],[2,9],[[30,32,-1],9,[[34,[33]]]],[[30,31,6,-1],9,[[34,[33]]]],[[30,-1],9,[[34,[35]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[30,36],[[],2],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[30,22],[-1,-2,[],[]],[6,30],[30,9],[30,9],[[30,36],9],[[30,-1],9,[[34,[36]]]],[[30,-1],9,[[34,[37]]]],[30,6],[[30,32,-1],9,[[34,[38]]]],[[30,37],9],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[20,[-2]]],[],[]],[30,36],[[30,8,-2],-1,[],[[40,[30],[[39,[-1]]]]]],[[30,-2],-1,[],[[40,[30],[[39,[-1]]]]]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[41,41],[42,42],[43,43],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[2,-1,[]],[2,-1,[]],[2,-1,[]],[2,-1,[]],[2,-1,[]],[2,-1,[]],[2,-1,[]],[2,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[2,9],[2,9],[2,9],[2,9],[[41,44],45],[[42,44],45],[[43,44],45],[[46,44],45],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[12,[22]],23],[[47,[46]]]],0,[[],2],[[],2],[[],2],[[],2],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[8,46],[[[12,[-1]],23],46,[[25,[24]]]],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[12,[48]]],49],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[48,[[8,[36]]]],[48,48],[49,49],[[-1,-2],9,[],[]],[[-1,-2],9,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],49],[2,-1,[]],[2,-1,[]],[2,-1,[]],[2,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[2,9],[2,9],[[48,44],45],[[49,44],45],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[48,[[12,[5]]]],0,[[],2],[[],2],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[48,31],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[50,8],[50,50],[[-1,-2],9,[],[]],[-1,-2,[],[]],[2,-1,[]],[2,-1,[]],[-1,-2,[],[]],[2,9],[[50,50],51],[[50,44],45],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],2],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[20,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[52,52],[[-1,-2],9,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],53],[2,-1,[]],[2,-1,[]],[2,-1,[]],[2,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[54,8,-1],9,10],[2,9],[2,9],[[52,52],51],[[52,44],45],[[53,44],45],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[53,[[20,[-1]]],[]],[53,[[20,[-1]]],[]],[53,51],[[],2],[[],2],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[8,-1],52,10],[[10,17,14,15,8,[6,[5]],36,53],9],0,[[10,53,21,[6,[5]],[8,[5]],18],9],[[53,-1],9,55],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[20,[-2]]],[],[]],[-1,[[20,[-2]]],[],[]],0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[16,16],[[-1,-2],9,[],[]],[-1,-2,[],[]],[[],16],0,0,[2,-1,[]],[2,-1,[]],[-1,-2,[],[]],[2,9],[[16,16],51],[[16,44],45],[-1,-1,[]],[-1,-1,[]],[[],16],[-1,-2,[],[]],[[],2],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[20,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[56,-2],[[20,[-1]]],[],[[40,[20],[[39,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[56,14,[57,[[47,[17]]]]],9],[2,-1,[]],[2,-1,[]],[-1,-2,[],[]],[56,9],[2,9],[[56,44],[[26,[9,58]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[56,59],60],[56,[[26,[61,62]]]],[[56,59,5,5],[[20,[[57,[[47,[17]]]]]]]],[56,[[63,[56]]]],[[],2],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[20,[-2]]],[],[]],0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[64,-1,5,5],9,[]],[64,3],[64,-1,[]],[[64,-1,5,5],-2,65,[]],[2,-1,[]],[2,-1,[]],[-1,-2,[],[]],[2,9],[64,66],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],2],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[16,-1],[[26,[64,67]]],65],[[-1,-2],[[26,[64,67]]],[],65],[[64,3,56,[12,[22]],23,19,[12,[-1]]],[[26,[9,68]]],[[25,[24]]]],[[64,-1,-2,23,19,[12,[-3]]],[[26,[9,68]]],[],[],[[25,[24]]]],[[16,[20,[-1]]],[[20,[64]]],65],[[64,3,[12,[22]],23,19,[12,[-1]]],[[47,[11]]],[[25,[24]]]],[[64,-1,-2,23,19,[12,[-3]]],[[47,[11]]],[],[],[[25,[24]]]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2]]],[],[]],[-1,[[26,[-2,[27,[-2]]]]],[],[]],[-1,28,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[20,[-2]]],[],[]]],"c":[],"p":[[10,"TransformMatrix",612],[1,"usize"],[5,"Backend",0],[5,"Handle",613],[1,"u32"],[5,"Size",614],[8,"Renderer",0],[5,"Rectangle",615],[1,"tuple"],[10,"Primitive",419],[1,"u8"],[1,"slice"],[6,"Cow",616],[5,"Device",617],[5,"Queue",617],[5,"Settings",494],[6,"TextureFormat",618],[5,"CommandEncoder",617],[5,"Color",619],[6,"Option",620],[5,"TextureView",617],[8,"Primitive",334],[5,"Viewport",621],[1,"str"],[10,"AsRef",622],[6,"Result",623],[5,"OutOfBounds",624],[5,"TypeId",625],[5,"Handle",626],[5,"Frame",46],[5,"Point",627],[5,"Path",628],[5,"Fill",629],[10,"Into",622],[5,"Text",630],[1,"f32"],[5,"Vector",631],[5,"Stroke",632],[17,"Output"],[10,"FnOnce",633],[6,"Image",93],[5,"Pipeline",93],[6,"Text",93],[5,"Formatter",634],[8,"Result",634],[5,"Layer",93],[5,"Vec",635],[6,"Mesh",252],[5,"AttributeCount",252],[6,"Custom",334],[1,"bool"],[5,"Pipeline",419],[5,"Storage",419],[10,"Renderer",419],[10,"Send",636],[5,"Surface",534],[5,"SurfaceConfiguration",618],[5,"Error",634],[5,"Adapter",617],[5,"SurfaceCapabilities",618],[5,"SurfaceTexture",617],[6,"SurfaceError",617],[5,"Id",617],[5,"Compositor",572],[10,"Window",637],[5,"Information",637],[6,"Error",638],[6,"SurfaceError",637],[15,"Raster",238],[15,"Vector",238],[15,"Paragraph",244],[15,"Editor",244],[15,"Solid",328],[15,"Gradient",328],[15,"Quad",385],[15,"Text",385],[15,"Image",385],[15,"Svg",385],[15,"Clip",385],[15,"Paragraph",385],[15,"Editor",385],[15,"Translate",385],[15,"Cache",385],[15,"Group",385]],"b":[]},\ -"iced_widget":{"doc":"Use the built-in widgets or create your own.","t":"TEEEEEKEPPREFPEEEEEEGFEEEEEEREEEEGEPEEEPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHCHCHNNNNHQQCHHNNNNCHENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNNNEHHNNNNNNNNNNNNNCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHQNNHNHNNNNNNNNNNCNNNCCHNNNNCHCCHEHHQQCECHNNCHNNNCHCNNECHNNCHCHCHCHNNNCHCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNHCHHMNNFFFRKMNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNHNNNNNNNNNNOONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNHNPPFFEFGGRGPGFGPPFKKPPPPRFGFPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNONNCONNNONNOONNONCNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNONNNNNNPGPPPGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFPPGPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNGFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNFFFNNCNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNNNNNFFNNNNNNNOONNNNNNNOONNNNNNNNNNNNNNOOOOONNNNNNNNNFIFKIPPPPPFPPPPPPFPGFGTTTIFPPPGGPPSPPPFFFFFIFFKKPPPPPPPGPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNMNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCONNNNCNNNNNNNMNNNNNNCCNNOOCMNNNNONNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOFKFFKRKFFNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNOOMNNNNNNNNNNNMNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNMNNNNNNNMNNNNNNMMNNNNNNMNMNMNMNMNMNMNNNNNNNNNNNNMNMNMNMNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFIFTTTTTTFFFTTTTIFITTKRIKIFTTTIIFITNONNNNNNNNNNNNNNMNNNNNNNNONNNMNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOCNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNMNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNOOOOOOONONNNNNNNNNNNNHONNCNNNOOOMNNNNNNNNNNNNNNHNNNNNNNNMNNNNNNNNNMNNNNNNNNNNNNONNNNOONMNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCMHONNONNNNNNNNNOOONNNNOONNNNNNNNNOOONNNNNFFFFNNNNNNNONNNNNONONNNNNNNNNNNNONOOOOOONNNNNNNNOOFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNOONNNNNONNNNNNNNNNNNNNONNNNNNNNFFFFFFFFFFFFFFFFFFFFFKFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNCNNNNNNNNNNNNNNNNNMNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOONNNNNNNNNOONNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNONNNNNNNNNNNNHHNNNNNNNNNNNONOMHNNNNONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNOHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNONNNOONNNNNNNNNOOOOOOOOONNNNNNNNNNNOOOOOOOOONNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNKMNMHHIIIIIIIIIIIIIIIIIIIIOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOKKKKKMMMMMFFFFNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNRKKMMMMNNMMMMMMMMMNNHHHHHHFFFKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIIIOOOOOOOOOOHOHHOOOOOOOIFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKKRKNNNNNNNNMMMMNMMMNNNMMMMMNMMMMMMMMMNNMMMMNNMNPPPGFGPPPPPFGOOOOOOOFFFRKMNNNNNNNNNNNNNNNOONNNNNNNNNNONNNNNNNNNNNNNNNNNNNNONNNNNNNNNMNONNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNFFFRKNNNNNMNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNGFFPPENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNECFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCFFFRKNNNMNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFGPPPGFGGPGKPGPPPPPFPGFPPPFPGFPPFPPERKGFPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNHNNNNNNNNNNNNNNMONNNONNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOOOOOOOOOOOOOOGPPPFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOFPTPGFPFFPRKMNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNONNNNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOHNNNHNNNOONONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOOOFTFRKNNMNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPGGPPPPPPPPFPFPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFTTFRKMNNNNNNNNNNOOONNNNNNNNNNNNONNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNFPGPPPFRKNNNMNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNOFGPGTPPFFFTFFFPFRKPFNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNHNNNNNNNNNNNHNNNNONNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNOOOOOOGPPKRKPFRFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNENFPTFGFPFFRKMNNNNNNNNNNNNNNNOOONNNNNNNNNNOONNNNNNNNNNNNNMHNNNNNNNNNNNNNNNNNNNONMNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFRKFNNNMNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPFPGPGFRKINNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGFPPFPPPPPGPPPPPPGPPPPPPPPPRKFPPPMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNOFESFFPPGFRKFFMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNCNNNNNNNNNNNNNNNNNMMNNNNNNNHNNNNNNNNNNNNNNNNNNNNHNNMNNONNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNHNHNNHNNHNNNNNNNNNNNNNNMNNNNNHNNMONNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHMNFPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOGPGGPGFPPPPPPPPPPPPPPPPPTPPPPPPPPPPPPPPPPPTPGFGGPPPPGGGGPPGPPGGPGGGGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFJJFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNOOOOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOFTRKFMNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNOONNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPGPFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFPTFGPFRKFMNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNMHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOOO","n":["ALL","Button","Canvas","Checkbox","Column","ComboBox","Component","Container","Custom","Dark","Event","Image","Lazy","Light","MouseArea","PaneGrid","PickList","ProgressBar","QRCode","Radio","Renderer","Responsive","Row","Rule","Scrollable","Shader","Slider","Space","State","Svg","Text","TextEditor","TextInput","Theme","Themer","TinySkia","Toggler","Tooltip","VerticalSlider","Wgpu","active","active","active","active","active","active","active","active","active","active_horizontal","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","appearance","appearance","appearance","appearance","appearance","appearance","appearance","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","button","button","canvas","canvas","checkbox","checkbox","children","clear","clone","clone_into","column","column","column","combo_box","combo_box","component","components_from","components_from","components_from","components_from","container","container","core","custom","custom_with_fn","default","default_font","default_size","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","diff","dimensions","dimensions","disabled","disabled","disabled","disabled_color","disabled_color","downcast","downcast","downcast","downcast","dragging","dragging","dragging_horizontal","draw","draw","draw","draw","draw","draw_mesh","draw_pipeline_primitive","drop","drop","drop","drop","eq","extended_palette","fill_editor","fill_paragraph","fill_quad","fill_text","fmt","fmt","focus_next","focus_previous","focused","focused","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","graphics","horizontal_rule","horizontal_space","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered_horizontal","hovered_region","hovered_split","image","image","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","keyed","keyed_column","keyed_column","layout","layout","lazy","load_font","mouse_area","mouse_interaction","mouse_interaction","new","new","on_event","on_event","operate","operate","operate","operate","overlay","overlay","overlay","palette","pane_grid","pick_list","pick_list","picked_split","placeholder_color","placeholder_color","pressed","progress_bar","progress_bar","qr_code","radio","radio","renderer","responsive","row","row","row","rule","runtime","scrollable","scrollable","selection_color","selection_color","shader","shader","size","size","size_hint","slider","slider","space","state","state","style","svg","svg","tag","tag","text","text","text_editor","text_editor","text_input","text_input","theme","themer","to_owned","to_smolstr","to_string","toggler","toggler","tooltip","tooltip","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","update","value_color","value_color","vertical_rule","vertical_slider","vertical_slider","vertical_space","view","with_layer","with_translation","Appearance","Button","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","children","clone","clone","clone_into","clone_into","components_from","components_from","components_from","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","disabled","downcast","downcast","downcast","draw","draw","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","height","hovered","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","mouse_interaction","mouse_interaction","new","new","on_event","on_press","on_press_maybe","operate","overlay","padding","pressed","shadow","shadow_offset","size","state","style","tag","text_color","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","update","width","Bevel","Butt","Cache","Canvas","Event","Fill","Frame","Geometry","Geometry","Gradient","Gradient","LineCap","LineDash","LineJoin","Linear","Miter","Path","Program","Renderer","Round","Round","Solid","Square","State","Stroke","Style","Text","TinySkia","TinySkia","Wgpu","Wgpu","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","center","circle","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","content","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","draw","draw_with","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","event","fill","fill","fill_rectangle","fill_text","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gradient","height","height","horizontal_alignment","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_geometry","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","line","line_cap","line_dash","line_height","line_join","mouse_interaction","mouse_interaction","mouse_interaction","new","new","new","new","offset","on_event","pack","path","position","raw","rectangle","rotate","rule","scale","scale_nonuniform","segments","shaping","size","size","size","state","stroke","stroke","style","style","tag","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","transform","translate","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","update","vertical_alignment","width","width","width","with_clip","with_color","with_line_cap","with_line_join","with_save","with_width","Captured","Event","Ignored","Keyboard","Mouse","Status","Touch","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","merge","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","EvenOdd","Fill","Gradient","NonZero","Rule","Solid","Style","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","rule","style","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Gradient","Linear","Linear","Packed","adapt_into_using","adapt_into_using","add_stop","add_stops","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","end","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_valid_bit_pattern","new","pack","pack","start","stops","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Arc","Builder","Path","adapt_into_using","adapt_into_using","arc","arc","arc_to","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","bezier_curve_to","borrow","borrow","borrow_mut","borrow_mut","build","center","circle","clone","clone_into","close","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","ellipse","end_angle","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line_to","move_to","new","quadratic_curve_to","radius","rectangle","start_angle","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Arc","Elliptical","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","center","center","clone","clone_into","components_from","deref","deref_mut","downcast","drop","end_angle","end_angle","fmt","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","radii","radius","rotation","start_angle","start_angle","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","ArcFlags","AttributeIndex","AttributeSlice","AttributeStore","Attributes","Begin","Begin","Begin","Bevel","Butt","ControlPointId","Cubic","Cubic","Cubic","End","End","End","EndpointId","EvenOdd","Event","EventId","FillRule","INVALID","INVALID","INVALID","IdEvent","IdPolygon","Line","Line","Line","LineCap","LineJoin","Miter","MiterClip","NO_ATTRIBUTES","Negative","Negative","NonZero","Path","PathBuffer","PathBufferSlice","PathCommands","PathCommandsSlice","PathEvent","PathSlice","Polygon","Position","PositionStore","Positive","Positive","Quadratic","Quadratic","Quadratic","Round","Round","Side","Square","Winding","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_slice","as_slice","as_slice","attributes","attributes","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","builder","builder","builder","builder","builder_with_attributes","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closed","closed","commands","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","event","event","event","event","events","first_endpoint","first_endpoint","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_iter","from_iter","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_usize","from_usize","get","get","get","get","get","get","get_control_point","get_control_point","get_control_point","get_control_point","get_endpoint","get_endpoint","get_endpoint","get_endpoint","hash","hash","hash","hash","hash","id_iter","id_iter","id_iter","index","index","index","index","index","indices","indices","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_edge","is_empty","is_empty","is_empty","is_in","is_negative","is_out","is_positive","iter","iter","iter","iter","iter","iter","iter","iter","iter_with_attributes","iter_with_attributes","iterator","large_arc","last_endpoint","last_endpoint","len","len","math","new","new","new","next_event_id_in_path","next_event_id_in_path","next_event_id_in_sub_path","next_event_id_in_sub_path","num_attributes","num_attributes","num_attributes","num_attributes","offset","offset","opposite","path","path_buffer","path_events","path_slice","points","points","polygon","position","reserve","reversed","reversed","svg_builder","sweep","to","to_f32","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_usize","to_usize","to_usize","traits","transformed","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","with_attributes","with_capacity","with_points","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","BorderRadii","Build","Flattened","NoAttributes","PathBuilder","PathType","SvgPathBuilder","Transformed","WithSvg","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add_circle","add_circle","add_ellipse","add_ellipse","add_line_segment","add_line_segment","add_point","add_point","add_polygon","add_polygon","add_polygon","add_rectangle","add_rectangle","add_rounded_rectangle","add_rounded_rectangle","arc","arc_to","arc_to","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","begin","begin","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom_left","bottom_right","build","build","build","build","build","build","build","build","clone","clone","clone_into","clone_into","close","close","close","close","close","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","current_position","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","end","end","end","end","end","eq","eq","event","extend_from_paths","flattened","flattened","flattened","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","horizontal_line_to","horizontal_line_to","init","init","init","init","init","inner","inner_mut","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_inner","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","line_to","line_to","line_to","line_to","line_to","move_to","move_to","move_to","new","new","new","new","new","num_attributes","num_attributes","num_attributes","num_attributes","partial_cmp","path_event","path_event","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","relative_arc_to","relative_arc_to","relative_cubic_bezier_to","relative_cubic_bezier_to","relative_horizontal_line_to","relative_horizontal_line_to","relative_line_to","relative_line_to","relative_move_to","relative_move_to","relative_quadratic_bezier_to","relative_quadratic_bezier_to","relative_vertical_line_to","relative_vertical_line_to","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","set_tolerance","set_transform","set_transform","smooth_cubic_bezier_to","smooth_cubic_bezier_to","smooth_quadratic_bezier_to","smooth_quadratic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_quadratic_bezier_to","smooth_relative_quadratic_bezier_to","to_owned","to_owned","to_smolstr","to_string","top_left","top_right","transformed","transformed","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","vertical_line_to","vertical_line_to","with_capacity","with_svg","with_svg","wrap","CommandsPathSlice","Events","Iter","PathCommands","PathCommandsBuilder","PathCommandsSlice","PointEvents","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","end","events","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_control_point","get_endpoint","index","index","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","iter","line_to","new","next","next","next","points","quadratic_bezier_to","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","with_capacity","Angle","Arc","ArcFlags","Box2D","CubicBezierSegment","DIV_EPSILON","EIGHT","EPSILON","FIVE","FOUR","HALF","Line","LineEquation","LineSegment","MAX","MIN","NINE","ONE","Point","QuadraticBezierSegment","Rotation","SEVEN","SIX","Scalar","Scalar","Scale","Segment","Size","SvgArc","TEN","THREE","TWO","Transform","Translation","Triangle","Vector","ZERO","a","a","ab","ac","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add","add","add_assign","after_split","after_split","after_split","after_split","after_split","after_split","after_split","after_split","after_split","angle","angle_to","approx_epsilon","approx_eq_eps","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","arc","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","b","b","ba","baseline","baseline","bc","before_split","before_split","before_split","before_split","before_split","before_split","before_split","before_split","before_split","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounding_box","bounding_box","bounding_box","bounding_box","bounding_box","bounding_range_x","bounding_range_x","bounding_range_x","bounding_range_x","bounding_range_y","bounding_range_y","bounding_range_y","bounding_range_y","bounding_triangle","c","c","ca","cast","cb","center","circle","clipped","clipped_x","clipped_y","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closest_point","closest_point","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains_point","contains_segment","ctrl","ctrl1","ctrl2","cubic_bezier","cubic_intersections","cubic_intersections_t","default","degrees","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","derivative","derivative","derivative","derivative","derivative","derivative","derivative","distance_to_point","distance_to_point","distance_to_point","distance_to_point","div","div","div_assign","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drag","drag","drag_with_weight","drop","drop","drop","drop","drop","drop","drop","drop","drop","dx","dx","dx","dx","dx","dx","dy","dy","dy","dy","dy","dy","end_angle","epsilon_for","eq","eq","eq","eq","eq","eq","eq","eq","equation","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fast_bounding_box","fast_bounding_box","fast_bounding_box","fast_bounding_range_x","fast_bounding_range_x","fast_bounding_range_x","fast_bounding_range_y","fast_bounding_range_y","fast_bounding_range_y","fat_line","fat_line","flags","flattened","flattened","flattened","flattened_t","flattening_step","flip","flip","flip","flip","flip","flip","flip","flip","flip","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_each_cubic_bezier","for_each_cubic_bezier","for_each_flattened","for_each_flattened","for_each_flattened","for_each_flattened","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_inflection_t","for_each_local_x_extremum_t","for_each_local_x_extremum_t","for_each_local_y_extremum_t","for_each_local_y_extremum_t","for_each_monotonic","for_each_monotonic","for_each_monotonic_range","for_each_monotonic_range","for_each_quadratic_bezier","for_each_quadratic_bezier","for_each_quadratic_bezier","for_each_quadratic_bezier_with_t","for_each_quadratic_bezier_with_t","for_each_quadratic_bezier_with_t","for_each_x_monotonic","for_each_x_monotonic","for_each_x_monotonic_range","for_each_x_monotonic_range","for_each_y_monotonic","for_each_y_monotonic","for_each_y_monotonic_range","for_each_y_monotonic_range","frac_pi_2","frac_pi_3","frac_pi_4","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_svg_arc","get","get_angle","hash","height","horizontal_line_intersection","horizontal_line_intersection_t","init","init","init","init","init","init","init","init","init","intersection","intersection","intersection_t","intersects","intersects","intersects_box","intersects_line","intersects_line_segment","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invert","is_a_point","is_finite","is_horizontal","is_linear","is_linear","is_monotonic","is_monotonic","is_quadratic","is_straight_line","is_vertical","is_x_monotonic","is_x_monotonic","is_y_monotonic","is_y_monotonic","large_arc","length","length","lerp","line_intersection","line_intersection_t","line_intersections","line_intersections","line_intersections_t","line_intersections_t","line_segment_intersections","line_segment_intersections","line_segment_intersections_t","line_segment_intersections_t","local_x_extremum_t","local_y_extremum_t","m11","m12","m21","m22","m31","m32","max","mid_point","min","mul","mul_assign","neg","new","normal","num_quadratics","offset","overlaps_line","overlaps_segment","parallel_line","partial_cmp","pi","point","point","positive","project_point","quadratic_bezier","quadratic_intersections","quadratic_intersections_t","radians","radians","radii","radii","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample_tangent","set_length","signed","signed_distance_to_point","signed_distance_to_point","sin_cos","size","solve_t_for_x","solve_t_for_x","solve_t_for_y","solve_t_for_y","solve_x_for_y","solve_x_for_y","solve_y_for_x","solve_y_for_x","split","split","split","split","split","split","split","split","split","split_at_x","split_range","split_range","split_range","split_range","split_range","split_range","split_range","split_range","split_range","square_distance_to_point","square_distance_to_point","square_distance_to_point","square_length","start_angle","sub","sub_assign","sum","sum","sweep","sweep_angle","tangent","to","to","to","to","to","to","to","to","to","to","to","to","to","to_arc","to_cubic","to_degrees","to_f32","to_f32","to_f32","to_f32","to_f32","to_f64","to_f64","to_f64","to_f64","to_f64","to_line","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_quadratic","to_quadratic_error","to_svg_arc","to_vector","traits","transform","transformed","transformed","transformed","translate","try_cast","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","two_pi","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","utils","value","vector","vector","vertical_line_intersection","vertical_line_intersection_t","width","x","x","x","x","x","x","x","x","x","x","x","x","x_maximum_t","x_maximum_t","x_minimum_t","x_minimum_t","x_rotation","x_rotation","y","y","y","y","y","y","y","y","y","y","y","y","y_maximum_t","y_maximum_t","y_minimum_t","y_minimum_t","zero","Arc","ArcFlags","Flattened","SvgArc","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","center","components_from","deref","deref_mut","downcast","drop","flags","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_iter","into_stimulus","large_arc","next","radii","radii","start_angle","sweep","sweep_angle","to","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","x_rotation","x_rotation","ArrayString","ArrayVec","CapacityError","Drain","IntoIter","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_mut","as_mut_ptr","as_mut_slice","as_mut_str","as_ptr","as_ref","as_ref","as_slice","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","capacity","clear","clear","clone","clone","clone","clone","clone_from","clone_from","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","compare","compare","compare","components_from","components_from","components_from","components_from","components_from","default","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drain","drop","drop","drop","drop","drop","drop","drop","drop","element","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","flush","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_byte_string","from_iter","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_str","ge","ge","ge","gt","gt","gt","hash","hash","init","init","init","init","init","insert","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_inner","into_inner_unchecked","into_iter","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_empty","is_full","is_full","le","le","le","len","len","lt","lt","lt","new","new","new","new_const","new_const","next","next","next_back","next_back","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pop","pop","pop_at","push","push","push_str","push_unchecked","remaining_capacity","remaining_capacity","remove","remove","retain","set_len","set_len","simplify","size_hint","size_hint","swap_pop","swap_remove","take","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","truncate","truncate","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_extend_from_slice","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_insert","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_push","try_push","try_push_str","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","write","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_char","write_str","zero_filled","CubicBezierSegment","Flattened","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","components_into","ctrl1","ctrl2","deref","deref_mut","downcast","drop","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_iter","into_stimulus","next","size_hint","to","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Angle","BoolVector2D","BoolVector3D","Box2D","Box3D","HomogeneousVector","Length","Point2D","Point3D","Rect","RigidTransform3D","Rotation2D","Rotation3D","Scale","SideOffsets2D","Size2D","Size3D","Transform2D","Transform3D","Translation2D","Translation3D","Trig","UnknownUnit","Vector2D","Vector3D","abs","abs","abs","abs","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_size","add_size","all","all","and","and","angle","angle_from_x_axis","angle_to","angle_to","any","any","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_eq","approx_eq","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approxeq","approxord","area","area","area","around_axis","around_x","around_y","around_z","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom","box3d","bvec2","bvec3","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","center","center","center","clamp","clamp","clamp","clamp","clamp","clamp","clamp","clamp_length","clamp_length","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","compare","compare","compare","component_div","component_div","component_mul","component_mul","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","contains","contains","contains","contains","contains_box","contains_box","contains_rect","cos","cross","cross","decompose_reversed","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","degrees_to_radians","depth","depth","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","determinant","determinant","distance_to","distance_to","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_euclid","div_euclid","dot","dot","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equal","equal","equal","equal","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","euler","extend","extend","fast_atan2","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle_and_length","from_array","from_array","from_arrays","from_arrays","from_length_all_same","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_origin_and_size","from_points","from_points","from_points","from_rotation","from_scale","from_size","from_size","from_size","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_translation","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_vectors_inner","from_vectors_outer","get","get","get_angle","greater_than","greater_than","greater_than","greater_than","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","height","height","height","height","height","horizontal","i","identity","identity","identity","identity","identity","identity","identity","identity","inflate","inflate","inflate","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_box","inner_rect","intersection","intersection","intersection","intersection_unchecked","intersection_unchecked","intersects","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","inverse","inverse","inverse","inverse","inverse","inverse","inverse","inverse","is_2d","is_backface_visible","is_empty","is_empty","is_empty","is_empty","is_empty","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_identity","is_identity","is_identity","is_invertible","is_invertible","is_negative","is_negative","is_normalized","is_positive","is_positive","is_zero","j","k","left","length","length","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lower_than","lower_than","lower_than","lower_than","m11","m11","m12","m12","m13","m14","m21","m21","m22","m22","m23","m24","m31","m31","m32","m32","m33","m34","m41","m42","m43","m44","max","max","max","max","max","max","max","max","max","max","max","max_x","max_y","min","min","min","min","min","min","min","min","min","min","min","min_x","min_y","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_s","neg","neg","neg","neg","neg","neg","neg","neg","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_2d","new_all_same","new_from_reversed","none","none","norm","normalize","normalize","normalize","not","not","not_equal","not_equal","not_equal","not_equal","num","one","one","one","or","or","origin","origin","origin","ortho","outer_box","outer_rect","outer_transformed_box","outer_transformed_box2d","outer_transformed_box3d","outer_transformed_rect","outer_transformed_rect","partial_cmp","partial_cmp","partial_cmp","perspective","point2","point3","position","pre_rotate","pre_rotate","pre_scale","pre_scale","pre_translate","pre_translate","project_onto_vector","project_onto_vector","project_to_2d","quaternion","r","radians","radians","radians_to_degrees","rect","reflect","reflect","rem_euclid","rem_euclid","right","robust_normalize","robust_normalize","rotation","rotation","rotation","round","round","round","round","round","round","round","round","round","round","round","round","round","round","round","round_in","round_in","round_in","round_out","round_out","round_out","saturating_add","saturating_sub","scale","scale","scale","scale","scale","select_point","select_point","select_size","select_size","select_vector","select_vector","set_size","sin","size","size","size","size2","size3","skew","slerp","splat","splat","splat","splat","splat","splat","splat","splat","square_length","square_length","square_norm","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","tan","then","then","then","then","then","then_rotate","then_rotate","then_scale","then_scale","then_translate","then_translate","to_2d","to_2d","to_2d","to_3d","to_3d","to_3d","to_3d","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array_4d","to_array_4d","to_array_transposed","to_array_transposed","to_arrays","to_arrays","to_arrays_transposed","to_box2d","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_non_empty","to_non_empty","to_non_empty","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_point","to_point","to_point2d","to_point3d","to_rect","to_size","to_transform","to_transform","to_transform","to_transform","to_transform","to_transform","to_transform","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple_4d","to_tuple_4d","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u64","to_u64","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_vector","to_vector","to_vector","to_vector","to_vector","to_vector","top","transform_box","transform_box2d","transform_box2d","transform_box3d","transform_box3d","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point2d","transform_point2d","transform_point2d","transform_point2d_homogeneous","transform_point3d","transform_point3d","transform_point3d","transform_point3d","transform_point3d_homogeneous","transform_rect","transform_rect","transform_rect","transform_size","transform_size","transform_size","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector2d","transform_vector2d","transform_vector3d","transform_vector3d","translate","translate","translate","translation","translation","translation","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_normalize","try_normalize","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","union","union","unit_quaternion","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","vec2","vec3","vector_part","vertical","volume","volume","w","width","width","width","width","width","with_destination","with_destination","with_length","with_max_length","with_max_length","with_min_length","with_min_length","with_source","with_source","x","x","x","x","x","x","x","x","x","x_range","x_range","x_range","xy","xy","xy","xy_area","xz","xz","xz","xz_area","y","y","y","y","y","y","y","y","y","y_range","y_range","y_range","yx","yx","yz","yz","yz","yz_area","z","z","z","z","z","z_range","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","ApproxEq","approx_epsilon","approx_eq","approx_eq_eps","max","min","Box2D","Box3D","HomogeneousVector","Length","Point2D","Point3D","Rect","RigidTransform3D","Rotation2D","Rotation3D","Scale","SideOffsets2D","Size2D","Size3D","Transform2D","Transform3D","Translation2D","Translation3D","Vector2D","Vector3D","angle","bottom","depth","height","height","i","j","k","left","m11","m11","m12","m12","m13","m14","m21","m21","m22","m22","m23","m24","m31","m31","m32","m32","m33","m34","m41","m42","m43","m44","max","max","min","min","origin","r","right","rotation","size","top","translation","w","width","width","x","x","x","x","x","x","x","y","y","y","y","y","y","y","z","z","z","z","Ceil","Floor","One","Round","Zero","ceil","floor","one","round","zero","Flattened","FlattenedT","FlatteningParameters","QuadraticBezierSegment","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","components_from","components_from","components_from","ctrl","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","new","next","next","size_hint","size_hint","to","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","Scalar","Segment","Transformation","after_split","approximate_length","before_split","derivative","dx","dy","flip","for_each_flattened_with_t","from","sample","split","split_range","to","transform_point","transform_vector","x","y","cubic_polynomial_roots","directed_angle","directed_angle2","min_max","normalized_tangent","tangent","Flattened","FromPolyline","NoAttributes","PathIterator","Transformed","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","closed","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","drop","drop","drop","drop","flattened","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","new","new","next","next","next","next","open","size_hint","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","with_attributes","Angle","Box2D","Point","Rotation","Scale","Size","Transform","Translation","Vector","angle","height","m11","m12","m21","m22","m31","m32","max","min","point","radians","size","vector","width","x","x","x","y","y","y","Builder","BuilderImpl","BuilderWithAttributes","IdIter","Iter","IterWithAttributes","Path","PathSlice","Reversed","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","build","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","end","end","end","extend_from_paths","extend_from_paths","fmt","for_each_flattened","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_path","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","new","new","next","next","next","next","num_attributes","num_attributes","num_attributes","points","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","reserve","reserve","reserve","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","with_capacity","with_svg","Builder","BuilderWithAttributes","Iter","PathBuffer","PathBufferSlice","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","begin","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","build","build","build","build","clone","clone_into","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","end","end","end","end","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","line_to","new","next","next_back","num_attributes","num_attributes","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","reserve","reserve","reserve","reserve","size_hint","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","with_attributes","IdPolygon","IdPolygonIter","PathEvents","Polygon","PolygonIdIter","PolygonIter","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","closed","closed","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","drop","drop","drop","drop","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","next","next","next","next","par_bridge","points","points","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","Build","PathBuilder","PathIterator","PathType","SvgPathBuilder","add_circle","add_ellipse","add_line_segment","add_point","add_polygon","add_polygon","add_rectangle","add_rounded_rectangle","arc_to","begin","build","close","close","cubic_bezier_to","cubic_bezier_to","end","event","flattened","flattened","horizontal_line_to","line_to","line_to","move_to","num_attributes","path_event","quadratic_bezier_to","quadratic_bezier_to","relative_arc_to","relative_cubic_bezier_to","relative_horizontal_line_to","relative_line_to","relative_move_to","relative_quadratic_bezier_to","relative_vertical_line_to","reserve","reserve","smooth_cubic_bezier_to","smooth_quadratic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_quadratic_bezier_to","transformed","transformed","vertical_line_to","with_svg","Bevel","Butt","Gradient","LineCap","LineDash","LineJoin","Miter","Round","Round","Solid","Square","Stroke","Style","line_cap","line_dash","line_join","offset","segments","style","width","Appearance","Checkbox","Icon","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","code_point","components_from","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","drop","drop","drop","eq","fmt","fmt","font","font","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hovered","icon","icon_color","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","line_height","mouse_interaction","new","on_event","shaping","size","size","size","spacing","state","style","tag","text_color","text_line_height","text_shaping","text_size","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","width","ComboBox","State","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","build_matchers","children","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","drop","drop","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","icon","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","line_height","mouse_interaction","new","new","on_close","on_event","on_input","on_option_hovered","overlay","padding","search","size","size","state","style","tag","text_input_style","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","with_selection","Appearance","Container","Id","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","align_x","align_y","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","center_x","center_y","children","clone","clone","clone_into","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","downcast","downcast","downcast","draw","draw_background","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hash","height","id","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","max_height","max_width","mouse_interaction","new","new","on_event","operate","overlay","padding","shadow","size","state","style","tag","text_color","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","unique","upcast","upcast","upcast","visible_bounds","width","with_background","with_border","FilterMethod","Handle","Image","Linear","Nearest","Viewer","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","components_from","content_fit","data","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","draw","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filter_method","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_memory","from_path","from_pixels","from_stimulus","from_stimulus","from_stimulus","hash","hash","height","id","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","new","size","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","viewer","viewer","width","State","Viewer","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","drop","drop","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","height","image_size","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_cursor_grabbed","layout","max_scale","min_scale","mouse_interaction","new","new","on_event","padding","scale_step","size","state","tag","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","Column","column","Column","adapt_into_using","align_items","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","children","components_from","default","deref","deref_mut","diff","downcast","draw","drop","from","from_angle","from_stimulus","height","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","max_width","mouse_interaction","new","on_event","operate","overlay","padding","push","size","spacing","state","tag","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","width","with_children","menu","Appearance","Menu","State","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","fmt","fmt","font","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","new","new","overlay","padding","selected_background","selected_text_color","style","text_color","text_line_height","text_shaping","text_size","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","width","All","Appearance","Axis","Bottom","Canceled","Center","Configuration","Content","Contents","Direction","Down","DragEvent","Draggable","Dropped","Edge","Edge","Edge","Horizontal","Left","Left","Line","Maximized","Node","Pane","Pane","Pane","Pane","PaneGrid","Picked","Region","ResizeEvent","Right","Right","Split","Split","Split","State","Style","StyleSheet","Target","TitleBar","Top","Up","Vertical","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","always_show_controls","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","can_be_dragged_at","can_be_dragged_at","children","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","color","compare","compare","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","controls","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","hash","height","hovered_region","hovered_split","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_over_pick_area","iter","layout","layout","layout","mouse_interaction","mouse_interaction","new","new","new","on_click","on_drag","on_event","on_resize","operate","overlay","padding","pane_regions","partial_cmp","partial_cmp","picked_split","ratio","size","spacing","split","split","split_line_bounds","split_regions","splits","state","state","style","style","style","tag","title_bar","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","width","width","a","axis","b","ratio","pane","pane","pane","target","a","axis","b","id","ratio","Action","Clicking","Dragging","Idle","Internal","Resizing","State","adapt_into_using","adapt_into_using","adapt_into_using","adjacent","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clicked_pane","clone","clone","clone","clone_into","clone_into","clone_into","close","components_from","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","drop","eq","fmt","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_configuration","from_stimulus","from_stimulus","from_stimulus","get","get_mut","init","init","init","internal","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","is_empty","iter","iter_mut","layout","layout","len","maximize","maximized","move_to_edge","new","panes","picked_pane","picked_split","resize","restore","split","split_with","swap","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","with_configuration","axis","origin","origin","pane","pane","split","Appearance","Arrow","DEFAULT_PADDING","Dynamic","Handle","Icon","None","PickList","State","Static","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","code_point","components_from","components_from","components_from","components_from","components_from","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","draw","draw","drop","drop","drop","drop","drop","eq","eq","fmt","fmt","fmt","fmt","font","font","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","handle","handle_color","hovered","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","layout","line_height","mouse_interaction","mouse_interaction","new","on_event","overlay","overlay","padding","placeholder","placeholder_color","shaping","size","size","state","style","tag","text_color","text_line_height","text_shaping","text_size","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","update","width","closed","open","size","Appearance","DEFAULT_HEIGHT","ProgressBar","Style","StyleSheet","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","bar","border_radius","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","drop","drop","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","height","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","new","size","style","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","DataTooLong","Error","ErrorCorrection","High","InvalidCharacter","InvalidEciDesignator","InvalidVersion","Low","Medium","Micro","Normal","QRCode","Quartile","State","UnsupportedCharacterSet","Version","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cell_size","clone","clone","clone","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","new","new","size","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","with_error_correction","with_version","Appearance","DEFAULT_SIZE","DEFAULT_SPACING","Radio","Style","StyleSheet","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","border_color","border_width","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","dot_color","downcast","downcast","draw","drop","drop","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","mouse_interaction","new","on_event","size","size","spacing","state","style","tag","text_color","text_line_height","text_shaping","text_size","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","Appearance","AsymmetricPadding","FillMode","Full","Padded","Percent","Rule","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","drop","drop","drop","fill","fill_mode","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","horizontal","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","radius","size","style","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","vertical","width","AbsoluteOffset","Alignment","Both","Direction","END","End","Horizontal","Id","Properties","RelativeOffset","START","Scrollable","Scrollbar","Scroller","Start","State","Style","StyleSheet","Vertical","Viewport","absolute_offset","absolute_offset_reversed","active","active_horizontal","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","alignment","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds","children","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","content_bounds","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","direction","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","dragging","dragging_horizontal","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","height","horizontal","hovered","hovered_horizontal","id","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","layout","margin","mouse_interaction","mouse_interaction","new","new","new","new","on_event","on_scroll","operate","overlay","relative_offset","scroll","scroll_to","scroll_to","scroll_to","scroll_x_to","scroll_y_to","scroller","scroller_width","scrollers_grabbed","size","snap_to","snap_to","snap_to","state","style","tag","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unique","unsnap","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","vertical","width","width","x","x","y","y","horizontal","vertical","Event","Keyboard","Mouse","Primitive","Primitive","Program","RedrawRequested","Shader","State","Storage","Touch","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","draw","drop","drop","drop","eq","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","get","get_mut","has","height","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","mouse_interaction","mouse_interaction","mouse_interaction","new","on_event","prepare","render","size","state","store","tag","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","update","update","wgpu","width","Appearance","Circle","DEFAULT_HEIGHT","Handle","HandleShape","Rail","Rectangle","Slider","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","border_color","border_radius","border_width","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","colors","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","dragging","draw","draw","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","handle","height","hovered","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","mouse_interaction","mouse_interaction","new","new","on_event","on_release","rail","shape","size","state","step","style","tag","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","update","width","width","border_radius","radius","width","Space","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","downcast","draw","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","new","size","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","with_height","with_width","Appearance","Handle","Style","StyleSheet","Svg","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","components_from","content_fit","data","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_memory","from_path","from_path","from_stimulus","from_stimulus","from_stimulus","hash","height","hovered","id","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","new","size","style","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","width","Absolute","Advanced","Appearance","Basic","LineHeight","Relative","Shaping","State","Style","StyleSheet","Text","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","default","default","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","to_absolute","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","Action","Appearance","Backspace","Click","Content","Delete","DocumentEnd","DocumentStart","Down","Drag","Edit","Edit","End","Enter","Home","Insert","Left","Motion","Move","PageDown","PageUp","Paste","Right","Scroll","Select","SelectLine","SelectWord","Style","StyleSheet","TextEditor","Up","WordLeft","WordRight","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","cursor_position","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","direction","disabled","disabled_color","downcast","downcast","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","drop","drop","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","focused","font","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","highlight","hovered","init","init","init","init","init","init","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_edit","layout","line","line_count","lines","mouse_interaction","new","new","on_action","on_event","padding","perform","placeholder_color","selection","selection_color","size","state","style","tag","text","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","value_color","widen","with_text","lines","Appearance","Cursor","DEFAULT_PADDING","Icon","Id","Left","Right","Side","State","Style","StyleSheet","TextInput","Value","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","code_point","components_from","components_from","components_from","components_from","components_from","components_from","components_from","cursor","cursor","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","disabled","disabled_color","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","focus","focus","focus","focused","focused","font","font","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hovered","icon","icon_color","id","init","init","init","init","init","init","init","insert","insert_many","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_focused","is_focused","layout","layout","layout","len","line_height","mouse_interaction","mouse_interaction","move_cursor_to","move_cursor_to","move_cursor_to","move_cursor_to_end","move_cursor_to_end","move_cursor_to_end","move_cursor_to_front","move_cursor_to_front","move_cursor_to_front","new","new","new","new","next_end_of_word","on_event","on_input","on_paste","on_submit","operate","padding","password","placeholder_color","previous_start_of_word","remove","remove_many","secure","select","select_all","select_all","select_all","selection_color","side","size","size","size","spacing","state","style","tag","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unfocus","unfocus","unique","until","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","value_color","width","Cursor","Index","Selection","State","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","selection","state","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","end","start","Application","Box","Button","Checkbox","Color","Container","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","DARK","Danger","Danger","Dark","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Destructive","LIGHT","Light","Menu","Palette","PaneGrid","PickList","Positive","Primary","Primary","Primary","ProgressBar","Radio","Rule","Scrollable","Secondary","Secondary","Slider","Success","Success","Svg","Text","Text","TextEditor","TextInput","Theme","Toggler","Transparent","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","custom","custom","custom_fn","danger","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","palette","primary","success","text","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","with_fn","Background","Danger","EXTENDED_DARK","EXTENDED_LIGHT","Extended","Pair","Palette","Primary","Secondary","Success","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","background","base","base","base","base","base","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","danger","danger","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","generate","generate","generate","generate","generate","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_dark","new","new","primary","primary","secondary","strong","strong","strong","strong","strong","success","success","text","text","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","weak","weak","weak","weak","weak","Appearance","DEFAULT_SIZE","Style","StyleSheet","Toggler","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","background_border","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","drop","drop","fmt","font","foreground","foreground_border","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","mouse_interaction","new","on_event","size","size","spacing","state","style","tag","text_alignment","text_line_height","text_shaping","text_size","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","Bottom","FollowCursor","Left","Position","Right","Tooltip","Top","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","children","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","diff","downcast","downcast","draw","drop","drop","eq","equivalent","equivalent","equivalent","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","gap","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","mouse_interaction","new","on_event","overlay","padding","size","size","snap_within_viewport","state","style","tag","text_shaping","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Appearance","Circle","DEFAULT_WIDTH","Handle","HandleShape","Rectangle","State","Style","StyleSheet","VerticalSlider","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","border_color","border_width","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","dragging","draw","draw","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","handle","height","hovered","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","mouse_interaction","mouse_interaction","new","new","on_event","on_release","rail","shape","size","state","step","style","tag","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","update","width","border_radius","radius","width"],"q":[[0,"iced_widget"],[339,"iced_widget::button"],[485,"iced_widget::canvas"],[1056,"iced_widget::canvas::event"],[1141,"iced_widget::canvas::fill"],[1190,"iced_widget::canvas::gradient"],[1277,"iced_widget::canvas::path"],[1366,"iced_widget::canvas::path::arc"],[1414,"iced_widget::canvas::path::lyon_path"],[2302,"iced_widget::canvas::path::lyon_path::Event"],[2315,"iced_widget::canvas::path::lyon_path::IdEvent"],[2328,"iced_widget::canvas::path::lyon_path::PathEvent"],[2341,"iced_widget::canvas::path::lyon_path::builder"],[2663,"iced_widget::canvas::path::lyon_path::commands"],[2866,"iced_widget::canvas::path::lyon_path::geom"],[3647,"iced_widget::canvas::path::lyon_path::geom::arc"],[3697,"iced_widget::canvas::path::lyon_path::geom::arrayvec"],[4064,"iced_widget::canvas::path::lyon_path::geom::cubic_bezier"],[4106,"iced_widget::canvas::path::lyon_path::geom::euclid"],[6053,"iced_widget::canvas::path::lyon_path::geom::euclid::approxeq"],[6057,"iced_widget::canvas::path::lyon_path::geom::euclid::approxord"],[6059,"iced_widget::canvas::path::lyon_path::geom::euclid::default"],[6142,"iced_widget::canvas::path::lyon_path::geom::euclid::num"],[6152,"iced_widget::canvas::path::lyon_path::geom::quadratic_bezier"],[6262,"iced_widget::canvas::path::lyon_path::geom::traits"],[6282,"iced_widget::canvas::path::lyon_path::geom::utils"],[6288,"iced_widget::canvas::path::lyon_path::iterator"],[6438,"iced_widget::canvas::path::lyon_path::math"],[6468,"iced_widget::canvas::path::lyon_path::path"],[6725,"iced_widget::canvas::path::lyon_path::path_buffer"],[6865,"iced_widget::canvas::path::lyon_path::polygon"],[7025,"iced_widget::canvas::path::lyon_path::traits"],[7074,"iced_widget::canvas::stroke"],[7094,"iced_widget::checkbox"],[7231,"iced_widget::combo_box"],[7324,"iced_widget::container"],[7473,"iced_widget::image"],[7613,"iced_widget::image::viewer"],[7701,"iced_widget::keyed"],[7703,"iced_widget::keyed::column"],[7756,"iced_widget::overlay"],[7757,"iced_widget::overlay::menu"],[7878,"iced_widget::pane_grid"],[8598,"iced_widget::pane_grid::Configuration"],[8602,"iced_widget::pane_grid::DragEvent"],[8606,"iced_widget::pane_grid::Node"],[8611,"iced_widget::pane_grid::state"],[8754,"iced_widget::pane_grid::state::Action"],[8760,"iced_widget::pick_list"],[8982,"iced_widget::pick_list::Handle"],[8985,"iced_widget::progress_bar"],[9069,"iced_widget::qr_code"],[9282,"iced_widget::radio"],[9379,"iced_widget::rule"],[9504,"iced_widget::scrollable"],[9997,"iced_widget::scrollable::Direction"],[9999,"iced_widget::shader"],[10134,"iced_widget::slider"],[10282,"iced_widget::slider::HandleShape"],[10285,"iced_widget::space"],[10325,"iced_widget::svg"],[10456,"iced_widget::text"],[10626,"iced_widget::text_editor"],[10905,"iced_widget::text_editor::Action"],[10906,"iced_widget::text_input"],[11256,"iced_widget::text_input::cursor"],[11335,"iced_widget::text_input::cursor::State"],[11337,"iced_widget::theme"],[12055,"iced_widget::theme::palette"],[12359,"iced_widget::toggler"],[12454,"iced_widget::tooltip"],[12550,"iced_widget::vertical_slider"],[12766,"iced_widget::vertical_slider::HandleShape"],[12769,"palette::chromatic_adaptation"],[12770,"iced_style::application"],[12771,"core::any"],[12772,"iced_core::renderer"],[12773,"iced_core::element"],[12774,"core::convert"],[12775,"alloc::string"],[12776,"core::ops::function"],[12777,"iced_core::text"],[12778,"iced_core::widget::tree"],[12779,"alloc::vec"],[12780,"core::hash"],[12781,"core::iter::traits::collect"],[12782,"core::option"],[12783,"core::fmt"],[12784,"core::clone"],[12785,"core::ops::function"],[12786,"iced_core::size"],[12787,"iced_core::color"],[12788,"iced_core::rectangle"],[12789,"iced_core::renderer"],[12790,"iced_core::mouse::cursor"],[12791,"iced_graphics::mesh"],[12792,"iced_core::point"],[12793,"iced_core::renderer"],[12794,"iced_core::text"],[12795,"iced_runtime::command"],[12796,"iced_core::length"],[12797,"alloc::boxed"],[12798,"alloc::sync"],[12799,"alloc::rc"],[12800,"core::marker"],[12801,"core::cmp"],[12802,"iced_core::layout::limits"],[12803,"iced_core::layout::node"],[12804,"alloc::borrow"],[12805,"iced_core::mouse::interaction"],[12806,"iced_core::event"],[12807,"iced_core::clipboard"],[12808,"iced_core::shell"],[12809,"iced_core::widget::operation"],[12810,"core::default"],[12811,"iced_core::overlay::element"],[12812,"alloc::string"],[12813,"core::cmp"],[12814,"smol_str"],[12815,"palette::convert::try_from_into_color"],[12816,"core::any"],[12817,"core::fmt"],[12818,"core::ops::function"],[12819,"iced_core::gradient"],[12820,"core::ops::arith"],[12821,"num_traits::float"],[12822,"num_traits::cast"],[12823,"core::ops::arith"],[12824,"core::ops::arith"],[12825,"core::cmp"],[12826,"core::str::error"],[12827,"core::fmt"],[12828,"num_traits::ops::euclid"],[12829,"num_traits::ops::saturating"],[12830,"rayon::iter::par_bridge"],[12831,"core::convert"],[12832,"iced_core::alignment"],[12833,"iced_core::image"],[12834,"iced_core::image"],[12835,"core::marker"],[12836,"std::collections::hash::map"],[12837,"iced_core::text::paragraph"],[12838,"qrcode::types"],[12839,"iced_wgpu::primitive::pipeline"],[12840,"wgpu_types"],[12841,"wgpu"],[12842,"wgpu"],[12843,"iced_core::svg"],[12844,"iced_core::text::highlighter"]],"d":["A list with all the defined themes.","","","","","","A reusable, custom widget that uses The Elm Architecture.","","A Theme that uses a Custom palette.","The built-in dark variant.","The type of event this Component handles internally.","","A widget that only rebuilds its contents when necessary.","The built-in light variant.","","","","","","","The default graphics renderer for iced.","A widget that is aware of its dimensions.","","","","","","","The internal state of this Component.","","","","","A built-in theme.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Allow your users to perform actions by pressing a button.","Creates a new Button with the provided content.","Draw 2D graphics for your users.","Creates a new Canvas.","Show toggle controls using checkboxes.","Creates a new Checkbox.","","","","","Creates a new Column with the given children.","Creates a Column with the given children.","Creates a Column with the given children.","Display a dropdown list of searchable and selectable …","Creates a new ComboBox.","Turns an implementor of Component into an Element that can …","","","","","Decorate content and apply alignment.","Creates a new Container with the provided content.","","Creates a new custom Theme from the given Palette.","Creates a new custom Theme from the given Palette, with a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the palette::Extended of the Theme.","","","","","","","Focuses the next focusable widget.","Focuses the previous focusable widget.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Creates a horizontal Rule with the given height.","Creates a new horizontal Space with the given Length.","","","","","","","","","","","","","","Display images in your user interface.","Creates a new Image.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","Use widgets that can provide hints to ensure continuity.","Creates a new keyed::Column with the given children.","Creates a Column with the given children.","","","Creates a new Lazy widget with the given data Dependency …","","A container intercepting mouse events.","","","Creates a new Responsive widget with a closure that …","Creates a new Lazy widget with the given data Dependency …","","","Update the Component state based on the provided Operation","Update the Component state based on the provided Operation","","","Display interactive elements on top of other widgets.","","","Returns the Palette of the Theme.","Let your users split regions of your application and …","Display a dropdown list of selectable values.","Creates a new PickList.","","","","","Provide progress feedback to your users.","Creates a new ProgressBar.","Encode and display information in a QR code.","Create choices using radio buttons.","Creates a new Radio.","","Creates a new Responsive widget with a closure that …","Creates a new Row with the given children.","Creates a Row with the given children.","Creates a Row with the given children.","Display a horizontal or vertical rule for dividing content.","","Navigate an endless amount of content with a scrollbar.","Creates a new Scrollable with the provided content.","","","A custom shader widget for wgpu applications.","Creates a new Shader.","","","","Display an interactive selector of a single value from a …","Creates a new Slider.","Distribute content vertically.","","","","Display vector graphics in your application.","Creates a new Svg widget from the given Handle.","","","Draw and interact with text.","Creates a new Text widget with the provided content.","Display a multi-line text input for text editing.","Creates a new TextEditor.","Display fields that can be filled with text.","Creates a new TextInput.","Use the built-in theme and styles.","A widget that applies any Theme to its contents.","","","","Show toggle controls using togglers.","Creates a new Toggler.","Display a widget over another.","Creates a new Tooltip with the provided content, tooltip …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the Component state …","","","Creates a vertical Rule with the given width.","Display an interactive selector of a single value from a …","Creates a new VerticalSlider.","Creates a new vertical Space with the given Length.","Produces the widgets of the Component, which may trigger …","","","The appearance of a button.","A generic widget that produces a message when pressed.","The local state of a Button.","The supported style of the StyleSheet.","A set of rules that dictate the style of a button.","Produces the active Appearance of a button.","","","","","","","","","","","","","","","","The Background of the button.","The Border of the buton.","","","","","","","","","","","","","","","","","","","","","","","","Produces the disabled Appearance of a button.","","","","Draws a Button.","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Sets the height of the Button.","Produces the hovered Appearance of a button.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Computes the layout of a Button.","","Returns the mouse::Interaction of a Button.","","Creates a new Button with the given content.","Creates a new State.","","Sets the message that will be produced when the Button is …","Sets the message that will be produced when the Button is …","","","Sets the Padding of the Button.","Produces the pressed Appearance of a button.","The Shadow of the butoon.","The amount of offset to apply to the shadow of the button.","","","Sets the style variant of this Button.","","The text Color of the button.","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes the given Event and updates the State of a Button","Sets the width of the Button.","A bevelled corner.","The stroke for each sub-path does not extend beyond its …","A simple cache that stores generated Geometry to avoid …","A widget capable of drawing 2D graphics.","","The style used to fill geometry.","","","The kind of geometry this renderer can draw.","A fill which linearly interpolates colors along a …","A Gradient color.","The shape used at the end of open subpaths when they are …","The dash pattern used when stroking the line.","The shape used at the corners of paths or basic shapes …","A linear gradient interpolates colors along a direction …","A sharp corner.","An immutable set of points that may or may not be …","The state and logic of a Canvas.","A renderer capable of drawing some Self::Geometry.","At the end of each sub-path, the shape representing the …","A round corner.","A solid Color.","At the end of each sub-path, the shape representing the …","The internal state mutated by the Program.","The style of a stroke.","The coloring style of some drawing.","A bunch of text that can be drawn to a canvas","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the coordinate of the center of the Frame.","Creates a new Path representing a circle given its center …","Clears the Cache, forcing a redraw the next time it is …","","","","","","","","","","","","","","","","","","","The color of the text","","","","","","","","","","","","","","The contents of the text","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the given layers of Self::Geometry.","Draws the state of the Program, producing a bunch of …","Draws Geometry using the provided closure and stores it in …","","Computes the Paths of the Text and draws them using the …","","","","","","","","","","","","","","","","Handle events of a canvas.","Fill Geometry with a certain style.","Draws the given Path on the Frame by filling it with the …","Draws an axis-aligned rectangle given its top-left corner …","Draws the characters of the given Text on the Frame, …","","","","","","","","","","","","The font of the text","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","A gradient that can be used as a fill for some geometry.","Returns the height of the Frame.","Sets the height of the Canvas.","The horizontal alignment of the text","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new Path representing a line segment given its …","The shape to be used at the end of open subpaths when they …","The dash pattern used when stroking the line.","The line height of the text.","The shape to be used at the corners of paths or basic …","Returns the current mouse interaction of the Program.","Returns the current mouse interaction of the Program.","","","Creates a new empty Cache.","Creates a new Path with the provided closure.","Creates a new Canvas.","The offset of LineDash::segments to start the pattern.","","Packs the Gradient for use in shader code.","Build different kinds of 2D shapes.","The position of the text relative to the alignment …","Returns the internal lyon_path::Path.","Creates a new Path representing a rectangle given its …","Applies a rotation in radians to the current transform of …","The fill rule defines how to determine what is inside and …","Applies a uniform scaling to the current transform of the …","Applies a non-uniform scaling to the current transform of …","The alternating lengths of lines and gaps which describe …","The shaping strategy of the text.","Returns the dimensions of the Frame.","","The size of the text","","Create lines from a Path and assigns them various …","Draws the stroke of the given Path on the Frame with the …","The color or gradient of the fill.","The color or gradient of the stroke.","","","","","","","","","","","Returns the current Path with the given transform applied …","Applies a translation to the current transform of the Frame…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Updates the State of the Program.","Updates the State of the Program.","The vertical alignment of the text","Returns the width of the Frame.","Sets the width of the Canvas.","The distance between the two edges of the stroke.","Executes the given drawing operations within a Rectangle …","Sets the color of the Stroke.","Sets the LineCap of the Stroke.","Sets the LineJoin of the Stroke.","Stores the current transform of the Frame and executes the …","Sets the width of the Stroke.","The Event was handled and processed by a widget.","A Canvas event.","The Event was NOT handled by any widget.","A keyboard event.","A mouse event.","The status of an Event after being processed.","A touch event.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Merges two Status into one.","","","","","","","","","","","","","","","","","","","","The style used to fill geometry.","A Gradient color.","","The fill rule defines how to determine what is inside and …","A solid Color.","The coloring style of some drawing.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","The fill rule defines how to determine what is inside and …","The color or gradient of the fill.","","","","","","","","","","A fill which linearly interpolates colors along a …","A linear gradient.","A linear gradient interpolates colors along a direction …","Packed Gradient data for use in shader code.","","","Adds a new ColorStop, defined by an offset and a color, to …","Adds multiple ColorStops to the gradient.","","","","","","","","","","","","","","","","","","","","","","","","","","","The absolute ending position of the gradient.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Creates a new Linear builder.","Creates a new Packed gradient for use in shader code.","Packs the Gradient for use in shader code.","The absolute starting position of the gradient.","ColorStops along the linear gradient direction.","","","","","","","","","","","","","","","","","","","A segment of a differentiable curve.","A Path builder.","An immutable set of points that may or may not be …","","","Build and draw curves.","Adds an Arc to the Path from start_angle to end_angle in a …","Adds a circular arc to the Path with the given control …","","","","","","","","","Adds a cubic Bézier curve to the Path given its two …","","","","","Builds the Path of this Builder.","The center of the arc.","Adds a circle to the Path given its center coordinate and …","","","Closes the current sub-path in the Path with a straight …","","","","","","","","","","","","Adds an ellipse to the Path using a clockwise direction.","The end of the segment’s angle, clockwise rotation from …","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Connects the last point in the Path to the given Point …","Moves the starting point of a new sub-path to the given …","Creates a new Builder.","Adds a quadratic Bézier curve to the Path given its …","The radius of the arc.","Adds a rectangle to the Path given its top-left corner …","The start of the segment’s angle, clockwise rotation …","","","","","","","","","","","","","","","","","","A segment of a differentiable curve.","An elliptical Arc.","","","","","","","","The center of the arc.","The center of the arc.","","","","","","","","The end of the segment’s angle, clockwise rotation from …","The end of the segment’s angle, clockwise rotation from …","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","The radii of the arc’s ellipse. The horizontal and …","The radius of the arc.","The clockwise rotation of the arc’s ellipse.","The start of the segment’s angle, clockwise rotation …","The start of the segment’s angle, clockwise rotation …","","","","","","","","","","Flag parameters for arcs as described by the SVG …","An alias for usize.","A view over a contiguous storage of custom attributes.","Interface for objects storing custom attributes associated …","An alias for a slice of f32 values.","","","","A beveled corner is to be used to join path segments. The …","The stroke for each sub-path does not extend beyond its …","ID of a control point in a path.","","","","","","","ID of an endpoint point in a path.","","Represents an event or edge of path.","Refers to an event in a path.","The fill rule defines how to determine what is inside and …","","","","A path event representing endpoints and control points as …","A view over a sequence of endpoint IDs forming a polygon.","","","","Line cap as defined by the SVG specification.","Line join as defined by the SVG specification.","A sharp corner is to be used to join path segments.","Same as a miter join, but if the miter limit is exceeded, …","An empty attribute slice.","","","","A simple path data structure.","An object that stores multiple paths contiguously.","A view on a PathBuffer.","The commands of a path encoded in a single array using IDs …","A view over PathCommands.","A path event representing endpoints and control points as …","A view on a Path.","A view over a sequence of endpoints forming a polygon.","Interface for types types (typically endpoints and control …","Interface for objects storing endpoints and control points …","","","","","","At each end of each sub-path, the shape representing the …","A round corner is to be used to join path segments.","The positive or negative side of a vector or segment.","At the end of each sub-path, the shape representing the …","The two possible orientations for the edges of a shape to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a view on the path commands.","Returns a view on this Path.","","Returns a slice over an endpoint’s custom attributes.","Returns a slice over an endpoint’s custom attributes.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Path building utilities.","Creates a PathCommandsBuilder to create path commands.","Creates a Builder to build a path.","","Creates a BuilderWithAttributes to build a path with …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A generic representation for paths that allow more control …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns an iterator over the path, with endpoints and …","Returns the first endpoint and its custom attributes if …","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the endpoint’s custom attributes as a slice of …","","","","","","","","","","","","","","","","","","","Iterates over the endpoint and control point ids of the …","Iterates over the endpoint and control point ids of the …","Returns an iterator of IdEvent.","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the path buffer is empty.","Returns whether the path buffer is empty.","","","","","Returns an iterator over the path commands.","Returns an iterator over the path commands.","Iterates over the entire Path, ignoring custom attributes.","Iterates over the path.","","","Returns an iterator of Event<&T>.","","Iterates over the entire Path with custom attributes.","Iterates over the entire Path with custom attributes.","Tools to iterate over paths.","Of the four candidate arc sweeps, two will represent an …","Returns the last endpoint and its custom attributes if any.","","Returns the number of paths in the path buffer.","Returns the number of paths in the path buffer.","f32 version of the lyon_geom types used everywhere. Most …","","Creates an Empty Path.","","Returns the next event id within the path.","Returns the next event id within the path.","Returns the next event id within the sub-path.","Returns the next event id within the path.","Returns the number of float attributes per endpoint.","","","","","","","The default path data structure.","A container to store multiple paths contiguously.","Returns an iterator of PathEvent.","Returns a view on a path made of these commands with …","","","Specific path types for polygons.","","","Returns a reversed version of this path in the form of an …","Returns a reversed version of this path in the form of an …","Creates an WithSvg to build a path with a rich set of …","If sweep is true, then the arc will be drawn in a “…","","","","","","","","","","","","","","","","","","","","","","","","lyon_path traits reexported here for convenience.","","Applies a transform to all endpoints and control points of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The radius of each corner of a rounded rectangle.","Builds a path.","A Builder that approximates curves with successions of …","A convenience wrapper for PathBuilder without custom …","The base path building interface.","The type of object that is created by this builder.","A path building interface that tries to stay close to SVG…","Builds a path with a transformation applied.","Implements an SVG-like building interface on top of a …","","","","","","Adds a sub-path containing a circle.","Adds a sub-path containing a circle.","Adds a sub-path containing an ellipse.","Adds a sub-path containing an ellipse.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single point.","Adds a sub-path containing a single point.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","","Adds an elliptical arc.","","","","","","","","","","","","","","","","","","","","","","Starts a new sub-path at a given position.","","","Starts a new sub-path at a given position.","","","","","","","","","","","","","","Builds a path object, consuming the builder.","","","","","","","Builds a path object, consuming the builder.","","","","","Ends the current sub-path by connecting it back to its …","Closes the current sub path.","","","Closes the current sub path.","","","","","","Adds a cubic bézier curve to the current sub-path.","Adds a cubic bézier segment to the current sub-path.","","","","","","Adds a cubic bézier curve to the current sub-path.","","","","","","","","","","","","","","","","","","","","","","","","Ends the current sub path.","","","","Ends the current sub path.","","","","","Returns a builder that approximates all curves with …","","Returns a builder that approximates all curves with …","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","Adds an horizontal line segment.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Adds a line segment to the current sub-path.","Adds a line segment to the current sub-path.","","","","","Adds a line segment to the current sub-path.","","Start a new sub-path at the given position.","","","","","","","","","","","","","Applies the provided path event.","Applies the provided path event.","Adds a quadratic bézier curve to the current sub-path.","Adds a quadratic bézier segment to the current sub-path.","","","","","Adds a quadratic bézier curve to the current sub-path.","","Equivalent to arc_to in relative coordinates.","","Equivalent to cubic_bezier_to in relative coordinates.","","Adds an horizontal line segment in relative coordinates.","","Equivalent to line_to in relative coordinates.","","Equivalent to move_to in relative coordinates.","","Equivalent to quadratic_bezier_to in relative coordinates.","","Adds a vertical line segment in relative coordinates.","","Hints at the builder that a certain number of endpoints …","Hints at the builder that a certain number of endpoints …","","","","","Hints at the builder that a certain number of endpoints …","","","","","Equivalent to cubic_bezier_to with implicit first control …","","Equivalent to quadratic_bezier_to with implicit control …","","Equivalent to smooth_cubic_bezier_to in relative …","","Equivalent to smooth_quadratic_bezier_to in relative …","","","","","","","","Returns a builder that applies the given transformation to …","","Returns a builder that applies the given transformation to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Adds a vertical line segment.","","","Returns a builder that support SVG commands.","Returns a builder that support SVG commands.","","A view on a PathCommands buffer and two slices for …","An iterator of Event<&Endpoint, &ControlPoint>.","An iterator of Event<&Endpoint, &ControlPoint>.","The commands of a path encoded in a single array using IDs …","Builds path commands.","A view over PathCommands.","An iterator of PathEvent.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Consumes the builder and returns path commands.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over the events of the path using …","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over the events of the path using IDs.","","Creates a builder without allocating memory.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a pre-allocated builder.","An angle in radians","An elliptic arc curve segment.","Flag parameters for arcs as described by the SVG …","","A 2d curve segment defined by four points: the beginning …","","","","","","","An infinite line defined by a point and a vector.","A line defined by the equation …","A linear segment.","","","","","","A 2d curve segment defined by three points: the beginning …","Alias for euclid::default::Rotation2D","","","","","","Common APIs to segment types.","","An elliptic arc curve segment using the SVG’s end-point …","","","","Alias for euclid::default::Transform2D","Alias for euclid::default::Translation2D","A 2D triangle defined by three points a, b and c.","","","","","","","","","","","","","","","","","","","Return the curve after the split point.","Return the curve after the split point.","","Return the curve after the split point.","","","Return the segment after the split point.","Return the curve after the split point.","","Angle in radians","Returns the shortest signed angle between two angles.","","","Compute the length of the segment using a flattened …","","","Compute the length of the segment using a flattened …","","","","Elliptic arc related maths and tools.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the curve before the split point.","Return the curve before the split point.","","Return the curve before the split point.","","","Return the segment before the split point.","Return the curve before the split point.","","","","","","","","","","","","","","","","","","","","Returns a conservative rectangle that contains the curve.","Returns a conservative rectangle that contains the curve.","Return the smallest rectangle containing this segment.","Returns the smallest rectangle the curve is contained in","Returns the smallest rectangle that contains this triangle.","","Returns the smallest range of x that contains this curve.","Returns the smallest range of x that contains this curve.","Returns a conservative range of x that contains this …","","Returns the smallest range of y that contains this curve.","Returns the smallest range of y that contains this curve.","Returns a conservative range of y that contains this …","Returns a triangle containing this curve segment.","","","","Cast from one numeric representation to another.","","","Create simple circle.","Clip this segment against a rectangle.","Horizontally clip this segment against a range of the x …","Vertically clip this segment against a range of the y axis.","","","","","","","","","","","","","","","","","","","Computes the closest point on this segment to p.","Analytic solution to finding the closest point on the …","","","","","","","","","","","","","","","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","","","","","","","","","","","","","","","","","","","","","Sample the derivative at t (expecting t between 0 and 1).","","Sample the curve’s derivative at t (expecting t between …","","","Sample the curve’s derivative at t (expecting t between …","","Computes the distance between this segment and a point.","","","Returns the shortest distance between this segment and a …","","","","","","","","","","","","","","","","","","","","","","","","","Sample x derivative at t (expecting t between 0 and 1).","Sample the x coordinate of the curve’s derivative at t …","","","Sample the x coordinate of the curve’s derivative at t …","","Sample y derivative at t (expecting t between 0 and 1).","","Sample the y coordinate of the curve’s derivative at t …","","Sample the y coordinate of the curve’s derivative at t …","","","Epsilon constants are usually not a good way to deal with …","","","","","","","","","","","","","","","","Returns a conservative rectangle that contains the curve.","Returns a conservative rectangle the curve is contained in.","Returns a conservative rectangle that contains the curve.","","Returns a conservative range of x that contains this curve.","Returns a conservative range of x that contains this curve.","","Returns a conservative range of y that contains this curve.","Returns a conservative range of y that contains this curve.","Computes a “fat line” of this segment.","Computes a “fat line” of this segment.","","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Find the interval of the beginning of the curve that can …","Swap the direction of the segment.","Swap the direction of the segment.","","","Swap the beginning and the end of the segment.","","Returns an inverted version of this segment where the …","","Swap the beginning and the end of the segment.","","","","","","","","","","Approximate the arc with a sequence of cubic bézier …","Approximates the arc with a sequence of cubic bézier …","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","","Approximates the curve with sequence of line segments.","","Approximates the curve with sequence of line segments.","","","Compute a flattened approximation of the curve, invoking a …","Invokes a callback at each inflection point if any.","","Return local x extrema or None if this curve is monotonic.","","Return local y extrema or None if this curve is monotonic.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Approximate the arc with a sequence of quadratic bézier …","Approximates the arc with a sequence of quadratic bézier …","Approximates the cubic bézier curve with sequence of …","Approximate the arc with a sequence of quadratic bézier …","Approximates the arc with a sequence of quadratic bézier …","Approximates the cubic bézier curve with sequence of …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","","","","Start of the curve.","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","Convert from the SVG arc notation.","","Sample the curve’s angle at t (expecting t between 0 and …","","The extent of the element in the U units along the y axis …","","","","","","","","","","","","","","Computes the intersection (if any) between this segment …","","Test for triangle-triangle intersection.","","","Test for triangle-segment intersection.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the curve can be approximated with a …","Returns true if the angle is a finite number.","","Returns true if the curve can be approximated with a …","Returns true if the curve can be approximated with a …","Returns whether this segment is fully monotonic.","Returns whether this segment is fully monotonic.","Returns true if the curve can be safely approximated with …","Per SVG spec, this arc should be rendered as a line_to …","","Returns whether this segment is monotonic on the x axis.","Returns whether this segment is monotonic on the x axis.","Returns whether this segment is monotonic on the y axis.","Returns whether this segment is monotonic on the y axis.","Of the four candidate arc sweeps, two will represent an …","Computes the length of this segment.","Computes the length of this segment.","Linear interpolation between two angles, using the …","","","Computes the intersection points (if any) between this …","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","Computes the intersections (if any) between this segment a …","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","Computes the intersections (if any) between this segment …","Return the x inflection point or None if this curve is …","Return the y inflection point or None if this curve is …","","","","","","","","Computes third mid-point of this segment.","","","","","","","Computes the number of quadratic bézier segments required …","","","","","","","Shorthand for Point::new(x, y).","","Returns this angle in the [0..2*PI[ range.","","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment a …","","","","","Sample the curve at t (expecting t between 0 and 1).","","Sample the curve at t (expecting t between 0 and 1).","Sample the curve at t (expecting t between 0 and 1).","","","Sample the segment at t (expecting t between 0 and 1).","Sample the curve at t (expecting t between 0 and 1).","","Sample the curve’s tangent at t (expecting t between 0 …","Changes the segment’s length, moving destination point.","Returns this angle in the ]-PI..PI] range.","","","Returns (sin(self), cos(self)).","Shorthand for Size::new(x, y).","Return the parameter values corresponding to a given x …","","Return the parameter values corresponding to a given y …","","","","","","Split this curve into two sub-curves.","Split this curve into two sub-curves.","","Split this curve into two sub-curves.","","Split this curve into two sub-segments.","","Split this curve into two sub-curves.","","","Return the curve inside a given range of t.","Return the sub-curve inside a given range of t.","","","Return the sub-curve inside a given range of t.","","Return the sub-segment inside a given range of t.","","Return the sub-curve inside a given range of t.","Computes the squared distance between this segment and a …","Returned the squared distance to a point.","Returns the shortest squared distance between this segment …","Computes the squared length of this segment.","","","","","","If sweep is true, then the arc will be drawn in a “…","","","End of the curve.","","","","","","","","","","","","","Converts this arc from endpoints to center notation.","Elevate this curve to a third order bézier.","","","","","","Cast angle to f32.","","","","","Cast angle f64.","Returns the line containing this segment.","","","","","","","","","","Approximate the curve with a single quadratic bézier …","Evaluates an upper bound on the maximum distance between …","Convert to the SVG arc notation.","Returns the vector between this segment’s from and to …","","[Not implemented] Applies the transform to this triangle …","Applies the transform to this curve and returns the …","Applies the transform to this segment and returns the …","Applies the transform to this curve and returns the …","","Fallible cast from one numeric representation to another.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Shorthand for Vector::new(x, y).","","","","The extent of the element in the U units along the x axis …","Sample x at t (expecting t between 0 and 1).","","","Sample the x coordinate of the curve at t (expecting t …","","","Sample the x coordinate of the segment at t (expecting t …","Sample the x coordinate of the curve at t (expecting t …","","","","The x (traditionally, horizontal) coordinate.","Find the advancement of the x-most position in the curve.","Find the advancement of the x-most position in the curve.","Find the x-least position in the curve.","Find the advancement of the x-least position in the curve.","","","Sample y at t (expecting t between 0 and 1).","","","Sample the y coordinate of the curve at t (expecting t …","","","Sample the y coordinate of the segment at t (expecting t …","","Sample the y coordinate of the curve at t (expecting t …","","","The y (traditionally, vertical) coordinate.","Find the advancement of the y-most position in the curve.","Find the advancement of the y-most position in the curve.","Find the advancement of the y-least position in the curve.","Find the advancement of the y-least position in the curve.","","An elliptic arc curve segment.","Flag parameters for arcs as described by the SVG …","Flattening iterator for arcs.","An elliptic arc curve segment using the SVG’s end-point …","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","Of the four candidate arc sweeps, two will represent an …","","","","","If sweep is true, then the arc will be drawn in a “…","","","","","","","","","","","","","A string with a fixed capacity.","A vector with a fixed capacity.","Error value indicating insufficient capacity","A draining iterator for ArrayVec.","By-value iterator for ArrayVec.","","","","","","","","","","","","","","","","","","","","","","","","","","","Return a raw mutable pointer to the vector’s buffer.","Return a mutable slice containing all elements of the …","Return a mutable string slice of the whole ArrayString.","Return a raw pointer to the vector’s buffer.","","","Return a slice containing all elements of the vector.","Return a string slice of the whole ArrayString.","","","","","","","","","","","","","","","Return the capacity of the ArrayVec.","Return the capacity of the ArrayString.","Remove all elements in the vector.","Make the string empty.","","","","","","","","","","","","","","","","","","","","","","Return an empty array","Return an empty ArrayString","","","","","","","","","","","","","","","","","","","","Create a draining iterator that removes the specified …","","","","","","","","","Extract the overflowing element","","","","","","","","","","","","","","","Extend the ArrayVec with an iterator.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a new ArrayString from a str.","Returns the argument unchanged.","","","","","","Create a new ArrayString from a byte string literal.","Create an ArrayVec from an iterator.","","","","","","","","","","","","","","","","","","","","Insert element at position index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the inner fixed size array, if it is full to its …","Return the inner fixed size array.","","","","","","","","","","","Returns whether the ArrayVec is empty.","Returns whether the string is empty.","Return true if the ArrayVec is completely filled to its …","Return if the ArrayString is completely filled.","","","","Return the number of elements in the ArrayVec.","Return the length of the string.","","","","Create a new empty ArrayVec.","Create a new empty ArrayString.","Create a new CapacityError from element.","Create a new empty ArrayVec (const fn).","Create a new empty ArrayString (const fn).","","","","","","","","","Remove the last element in the vector and return it.","Removes the last character from the string and returns it.","Remove the element at index and shift down the following …","Push element to the end of the vector.","Adds the given char to the end of the string.","Adds the given string slice to the end of the string.","Push element to the end of the vector without checking the …","Returns the capacity left in the ArrayVec.","Returns the capacity left in the ArrayString.","Remove the element at index and shift down the following …","Removes a char from this ArrayString at a byte position …","Retains only the elements specified by the predicate.","Set the vector’s length without dropping or moving out …","Set the strings’s length.","Convert into a CapacityError that does not carry an …","","","Remove the element at index and swap the last element into …","Remove the element at index and swap the last element into …","Returns the ArrayVec, replacing the original with a new …","","","","","","","","","Shortens the vector, keeping the first len elements and …","Shortens this ArrayString to the specified length.","","","","","","Copy all elements from the slice and append to the ArrayVec…","","","","","","","","","Insert element at position index.","","","","","","","","","","","Push element to the end of the vector.","Adds the given char to the end of the string.","Adds the given string slice to the end of the string.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new ArrayString value fully filled with ASCII …","A 2d curve segment defined by four points: the beginning …","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","An angle in radians","A 2d vector of booleans, useful for component-wise logic …","A 3d vector of booleans, useful for component-wise logic …","A 2d axis aligned rectangle represented by its minimum and …","An axis aligned 3D box represented by its minimum and …","Homogeneous vector in 3D space.","A one-dimensional distance, with value represented by T …","A 2d Point tagged with a unit.","A 3d Point tagged with a unit.","A 2d Rectangle optionally tagged with a unit.","A rigid transformation. All lengths are preserved under …","A transform that can represent rotations in 2d, …","A transform that can represent rotations in 3d, …","A scaling factor between two different units of …","A group of 2D side offsets, which correspond to …","A 2d size tagged with a unit.","A 3d size tagged with a unit.","A 2d transform represented by a column-major 3 by 3 …","A 3d transform stored as a column-major 4 by 4 matrix.","A 2d transformation from a space to another that can only …","A 3d transformation from a space to another that can only …","Trait for basic trigonometry functions, so they can be …","The default unit.","A 2d Vector tagged with a unit.","A 3d Vector tagged with a unit.","Computes the absolute value of each component.","Computes the absolute value of each component.","Computes the vector with absolute values of each component.","Computes the vector with absolute values of each component.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if all components are true and false …","Returns true if all components are true and false …","Returns new vector with by-component AND operation applied.","Returns new vector with by-component AND operation applied.","Angle in radians","Returns the signed angle between this vector and the x …","Returns the signed angle between this vector and another …","Returns the positive angle between this vector and another …","Returns true if any component are true and false otherwise.","Returns true if any component are true and false otherwise.","","","","","","","","","Returns true is this transform is approximately equal to …","Returns true is this transform is approximately equal to …","","","","","Returns true is this transform is approximately equal to …","Returns true is this transform is approximately equal to …","Returns true is this transform is approximately equal to …","","","","","Utilities for testing approximate ordering - especially …","","","Returns result of multiplication of both components","Creates a rotation around a given axis.","Creates a rotation around the x axis.","Creates a rotation around the y axis.","Creates a rotation around the z axis.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Shorthand for …","Shorthand for BoolVector2D { x, y }.","Shorthand for BoolVector3D { x, y, z }.","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast the unit","Cast the unit","Cast the unit","Cast the unit, preserving the numeric value.","Cast the unit, preserving the numeric value.","Cast the unit","Cast the unit, preserving the numeric value.","Cast the unit, preserving the numeric value.","Cast the unit","Cast the unit","Cast the unit.","Cast the unit.","","See Point2D::ceil()","Rounds each component to the smallest integer equal or …","See Point3D::ceil()","Rounds each component to the smallest integer equal or …","Rounds each component to the smallest integer equal or …","See Size2D::ceil().","See Size3D::ceil().","Rounds each component to the smallest integer equal or …","See Vector2D::ceil()","Rounds each component to the smallest integer equal or …","See Vector3D::ceil()","Rounds each component to the smallest integer equal or …","","","","Returns the point each component of which clamped by …","Returns the point each component of which clamped by …","Returns the point each component of which clamped by …","Returns the size each component of which clamped by …","Returns the size each component of which clamped by …","Returns the vector each component of which is clamped by …","Returns the vector each component of which is clamped by …","Return this vector with minimum and maximum lengths …","Return this vector with minimum and maximum lengths …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the component-wise division of the two vectors.","Returns the component-wise division of the two vectors.","Returns the component-wise multiplication of the two …","Returns the component-wise multiplication of the two …","","","","","","","","","","","","","","","","","","","","","","","","Returns true if this box contains the point. Points are …","Returns true if this box3d contains the point. Points are …","Returns true if this rectangle contains the point. Points …","","","Returns true if this box contains the interior of the …","Returns true if this box3d contains the interior of the …","Returns true if this rectangle contains the interior of …","","Returns the norm of the cross product [self.x, self.y, 0] …","Cross product.","Decompose this into a translation and an rotation to be …","A set of aliases for all types, tagged with the default …","","","","","","","","","","","Returns the identity transform.","Returns the identity transform.","","","","","","","","The extent of the element in the U units along the z axis.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes and returns the determinant of this transform.","Compute the determinant of the transform.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calculates Euclidean division, the matching method for …","Calculates Euclidean division, the matching method for …","Dot product.","Dot product.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a rotation from Euler angles.","Create a 3d point from this one, using the specified z …","Create a 3d vector from this one, using the specified z …","","Rounds each component to the biggest integer equal or …","See Point2D::floor()","See Point3D::floor()","Rounds each component to the biggest integer equal or …","See Size2D::floor().","Rounds each component to the biggest integer equal or …","See Size3D::floor().","Rounds each component to the biggest integer equal or …","See Vector2D::floor()","Rounds each component to the biggest integer equal or …","See Vector3D::floor()","Rounds each component to the biggest integer equal or …","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","Constructor taking angle and length","Create a transform providing its components via an array …","Create a transform providing its components via an array …","Equivalent to from_array with elements packed two at a time","Equivalent to from_array with elements packed four at a …","Constructor setting the same value to all sides, taking a …","Constructor taking properly Lengths instead of scalar …","Constructor taking properly Lengths instead of scalar …","Constructor taking a typed Length for each side.","Constructor taking scalar strongly typed lengths.","Constructor taking scalar strongly typed lengths.","Constructor taking properly Lengths instead of scalar …","Constructor taking properly Lengths instead of scalar …","Constructor.","Returns the smallest box containing all of the provided …","Returns the smallest box containing all of the provided …","Returns the smallest rectangle defined by the …","","Convenience function to create a scale transform from a …","Creates a Box2D of the given size, at offset zero.","Creates a Box3D of the given size, at offset zero.","Creates a rect of the given size, at offset zero.","","","","","","","","","","","","","","","","","","","","","","","","","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unit-less value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Construct side offsets from min and a max vector offsets.","Construct side offsets from min and a max vector offsets.","Unpack the underlying value from the wrapper.","Returns the underlying scalar scale factor.","Returns self.angle as a strongly typed Angle<T>.","Returns vector with results of “greater then” …","Returns vector with results of “greater than” …","Returns vector with results of “greater than” …","Returns vector with results of “greater than” …","","","","","","","","","","","","","","","","","","","","","","","","","","","The extent of the element in the U units along the y axis …","The extent of the element in the U units along the y axis.","","Component multiplied by the imaginary number i.","Creates the identity rotation.","Creates the identity rotation.","Creates an identity scale (1.0).","Create an identity matrix:","Creates an identity matrix:","Creates no-op translation (both x and y is zero()).","Creates no-op translation (x, y and z is zero()).","Construct an identity transform","Inflates the box by the specified sizes on each side …","Inflates the box by the specified sizes on each side …","","","","","","","","","","","","","","","","","","","","","","","","","Calculate the size and position of an inner box.","Calculate the size and position of an inner rectangle.","Computes the intersection of two boxes, returning None if …","","","Computes the intersection of two boxes without check …","","Returns true if the two boxes intersect.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Calls U::from(self).","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Calls U::from(self).","","","Calls U::from(self).","","","","Calls U::from(self).","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the inverse of this rotation.","Returns the inverse of this rotation.","The inverse Scale (1.0 / self).","Returns the inverse transform if possible.","Returns the inverse transform if possible.","Return the inverse transformation.","Return the inverse transformation.","Inverts the transformation","Returns true if this transform can be represented with a …","Check whether shapes on the XY plane with Z pointing …","Returns true if the size is zero, negative or NaN.","Returns true if the size is zero, negative or NaN.","","Returns true if any component of size is zero, negative, …","Returns true if any component of size is zero, negative or …","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if this scale has no effect.","Check if translation does nothing (both x and y is zero()).","Check if translation does nothing (x, y and z is zero()).","Returns whether it is possible to compute the inverse …","Returns whether it is possible to compute the inverse …","Returns true if the box has a negative area.","Returns true if the box has a negative volume.","Returns true if norm of this quaternion is (approximately) …","Returns true if both components is positive and false any …","Returns true if all components is positive and false any …","Returns true if all side offsets are zero.","Component multiplied by the imaginary number j.","Component multiplied by the imaginary number k.","","Returns the vector length.","Returns the vector length.","Linearly interpolate between this box and another box.","Linearly interpolate between this box3d and another box3d.","Linearly interpolate between this length and another …","Linearly interpolate between this point and another point.","Linearly interpolate between this point and another point.","Linearly interpolate between this rectangle and another …","Basic Linear interpolation between this rotation and …","Linearly interpolate each component between this size and …","Linearly interpolate between this size and another size.","Linearly interpolate each component between this vector …","Linearly interpolate each component between this vector …","Returns vector with results of “lower then” operation …","Returns vector with results of “lower than” operation …","Returns vector with results of “lower than” operation …","Returns vector with results of “lower than” operation …","","","","","","","","","","","","","","","","","","","","","","","Returns maximum between this length and another length.","","","","","Returns the size each component of which are maximum of …","Returns the size each component of which are maximum of …","Returns the vector each component of which are maximum of …","Returns the vector each component of which are maximum of …","","","","","Returns minimum between this length and another length.","","","","","Returns the size each component of which are minimum of …","Returns the size each component of which are minimum of …","Returns the vector each component of which are minimum of …","Returns the vector each component of which are minimum of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multiplies all of the transform’s component by a scalar …","","","","","","","","","Constructor.","Constructor.","Constructor taking scalar values directly.","Associate a value with a unit of measure.","Constructor taking scalar values directly.","Constructor taking scalar values directly.","Constructor.","Creates a rotation from an angle in radians.","","Constructor taking a scalar for each side.","Constructor taking scalar values.","Constructor taking scalar values.","Create a transform specifying its components in using the …","Create a transform specifying all of it’s component as a …","","","Constructor taking scalar values directly.","Constructor taking scalar values directly.","Construct a new rigid transformation, where the rotation …","Create a transform representing a 2d transformation from …","Constructor setting the same value to all sides, taking a …","Construct a new rigid transformation, where the translation…","Returns true if all components are false and false …","Returns true if all components are false and false …","Computes the norm of this quaternion.","Returns a unit quaternion from this one.","Returns the vector with length of one unit.","Returns the vector with length of one unit","Returns new vector with results of negation operation on …","Returns new vector with results of negation operation on …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","A one-dimensional length, tagged with its units.","","Constructor, setting all components to one.","Constructor, setting all components to one.","Returns new vector with by-component OR operation applied.","Returns new vector with by-component OR operation applied.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","","Create an orthogonal projection transform.","Calculate the b and position of an outer box.","Calculate the size and position of an outer rectangle.","Returns a box that encompasses the result of transforming …","Returns a 2d box that encompasses the result of …","Returns a 3d box that encompasses the result of …","Returns a rectangle that encompasses the result of …","Returns a rectangle that encompasses the result of …","","","","Create a simple perspective transform, projecting to the …","Shorthand for Point2D::new(x, y).","Shorthand for Point3D::new(x, y).","","Applies a rotation before self’s transformation and …","Returns a transform with a rotation applied before self’…","Applies a scale before self’s transformation and returns …","Returns a transform with a scale applied before self’s …","Applies a translation before self’s transformation and …","Returns a transform with a translation applied before self…","Returns this vector projected onto another one.","Returns this vector projected onto another one.","Returns a projection of this transform in 2d space.","Creates a rotation around from a quaternion representation.","The real part.","Creates a rotation from an angle in radians.","","","Shorthand for …","Returns a reflection vector using an incident ray and a …","Returns a reflection vector using an incident ray and a …","Calculates the least nonnegative remainder of …","Calculates the least nonnegative remainder of …","","Return the normalized vector even if the length is larger …","Return the normalized vector even if the length is larger …","Returns a rotation transform.","Create a 3d rotation transform from an angle / axis. The …","","Return a box with edges rounded to integer coordinates, …","Return a box3d with edges rounded to integer coordinates, …","See Point2D::round()","Rounds each component to the nearest integer value.","See Point3D::round()","Rounds each component to the nearest integer value.","Return a rectangle with edges rounded to integer …","See Size2D::round().","Rounds each component to the nearest integer value.","Rounds each component to the nearest integer value.","See Size3D::round().","Rounds each component to the nearest integer value.","See Vector2D::round()","Rounds each component to the nearest integer value.","See Vector3D::round()","Return a box with faces/edges rounded to integer …","Return a box3d with faces/edges rounded to integer …","Return a rectangle with edges rounded to integer …","Return a box with faces/edges rounded to integer …","Return a box3d with faces/edges rounded to integer …","Return a rectangle with edges rounded to integer …","","","","","","Create a 2d scale transform:","Create a 3d scale transform:","Returns point, each component of which or from a, or from b…","Returns point, each component of which or from a, or from b…","Returns size, each component of which or from a, or from b …","Returns size, each component of which or from a, or from b …","Returns vector, each component of which or from a, or from …","Returns vector, each component of which or from a, or from …","Change the size of the box by adjusting the max endpoint …","","","","","Shorthand for Size2D::new(w, h).","Shorthand for Size3D::new(w, h, d).","Create a 2d skew transform.","Spherical linear interpolation between this rotation and …","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Constructor setting all components to the same value.","","","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Returns the vector’s length squared.","Returns the vector’s length squared.","Computes the squared norm of this quaternion.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a rotation representing the other rotation …","Returns a rotation representing this rotation followed by …","Returns the multiplication of the two matrices such that …","Returns the multiplication of the two matrices such that …","Returns the multiplication of the two transforms such that …","Applies a rotation after self’s transformation and …","Returns a transform with a rotation applied after self’s …","Applies a scale after self’s transformation and returns …","Returns a transform with a scale applied after self’s …","Applies a translation after self’s transformation and …","Returns a transform with a translation applied after self…","Convert into a 2d point.","Create a 2D transform picking the relevant terms from this …","Convert into a 2d vector.","Convert into a 3d point with z-coordinate equals to zero.","Creates a 3d rotation (around the z axis) from this 2d …","Create a 3D transform from the current transform","Convert into a 3d vector with z coordinate equals to …","Cast into an array with x and y.","Cast into an array with x, y and z.","Return this size as an array of two elements (width, then …","Return this size as an array of three elements (width, …","Returns an array containing this transform’s terms.","Returns an array containing this transform’s terms.","Cast into an array with x and y.","Cast into an array with x, y and z.","Cast into an array with x and y.","Cast into an array with x, y and z.","","Cast into an array with x, y, z and 0.","Returns an array containing this transform’s terms …","Returns an array containing this transform’s terms …","Equivalent to to_array with elements packed two at a time …","Equivalent to to_array with elements packed four at a time …","Equivalent to to_array_transposed with elements packed …","","Cast into an f32 box.","Cast into an f32 box3d.","Cast into an f32 point.","Cast into an f32 point.","Cast into an f32 rectangle.","Cast into an f32 size.","Cast into an f32 size.","Cast into an f32 vector.","Cast into an f32 vector.","Cast into an f64 box.","Cast into an f64 box3d.","Cast into an f64 point.","Cast into an f64 point.","Cast into an f64 rectangle.","Cast into an f64 size.","Cast into an f64 size.","Cast into an f64 vector.","Cast into an f64 vector.","Cast into an i32 box, truncating decimals if any.","Cast into an i32 box3d, truncating decimals if any.","Cast into an i32 point, truncating decimals if any.","Cast into an i32 point, truncating decimals if any.","Cast into an i32 rectangle, truncating decimals if any.","Cast into an i32 size, truncating decimals if any.","Cast into an i32 size, truncating decimals if any.","Cast into an i32 vector, truncating decimals if any.","Cast into an i32 vector, truncating decimals if any.","Cast into an i64 box, truncating decimals if any.","Cast into an i64 box3d, truncating decimals if any.","Cast into an i64 point, truncating decimals if any.","Cast into an i64 point, truncating decimals if any.","Cast into an i64 rectangle, truncating decimals if any.","Cast into an i64 size, truncating decimals if any.","Cast into an i64 size, truncating decimals if any.","Cast into an i64 vector, truncating decimals if any.","Cast into an i64 vector, truncating decimals if any.","","","","","","","","","","","","","","","","","","","","","","","","","","","Cast this vector into a point.","Cast this vector into a point.","Convert into Cartesian 2D point.","Convert into Cartesian 3D point.","","Cast this vector into a size.","Returns the matrix representation of this rotation.","Returns the matrix representation of this rotation.","Returns the matrix representation of this translation.","Returns the matrix representation of this translation.","Creates translation by this vector in vector units.","Creates translation by this vector in vector units","","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","Return this size as a tuple of two elements (width, then …","Return this size as an array of three elements (width, …","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","","Cast into a tuple with x, y, z and 0.","Cast into an u32 box, truncating decimals if any.","Cast into an u32 box3d, truncating decimals if any.","Cast into an u32 point, truncating decimals if any.","Cast into an u32 point, truncating decimals if any.","Cast into an u32 rectangle, truncating decimals if any.","Cast into an u32 size, truncating decimals if any.","Cast into an u32 size, truncating decimals if any.","Cast into an u32 vector, truncating decimals if any.","Cast into an u32 vector, truncating decimals if any.","Cast into an u64 rectangle, truncating decimals if any.","Cast into an u64 size, truncating decimals if any.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Cast into an usize box, truncating decimals if any.","Cast into an usize box3d, truncating decimals if any.","Cast into an usize point, truncating decimals if any.","Cast into an usize point, truncating decimals if any.","Cast into an usize rectangle, truncating decimals if any.","Cast into an uint size, truncating decimals if any.","Cast into an uint size, truncating decimals if any.","Cast into an usize vector, truncating decimals if any.","Cast into an usize vector, truncating decimals if any.","Cast this point into a vector.","Cast this point into a vector.","Return this size as a vector with width and height.","Return this size as a vector with width, height and depth.","Cast into a 2D vector.","Cast into a 3D vector.","","Translate a 2D box and cast its unit.","Returns the given box transformed by this scale.","Translate a 2D box and cast its unit.","Returns the given box transformed by this scale.","Translate a 3D box and cast its unit.","Returns the given 2d point transformed by this rotation.","","","Returns the given point transformed by this scale.","Returns the given point transformed by this transform.","","Translate a point and cast its unit.","","Returns the given 2d point transformed by this rotation …","Returns the given 2d point transformed by this transform, …","Translate a point and cast its unit.","Returns the homogeneous vector corresponding to the …","Returns the given 3d point transformed by this rotation.","Returns the given point transformed by this scale.","Returns the given 3d point transformed by this transform, …","Translate a point and cast its unit.","Returns the homogeneous vector corresponding to the …","Returns the given rect transformed by this scale.","Translate a rectangle and cast its unit.","Translate a rectangle and cast its unit.","Returns the given size transformed by this scale.","No-op, just cast the unit.","No-op, just cast the unit.","","Returns the given 2d vector transformed by this rotation.","Returns the given vector transformed by this scale.","","","Returns the given vector transformed by this matrix.","","Returns the given 2d vector transformed by this rotation …","Returns the given 2d vector transformed by this matrix.","Returns the given 3d vector transformed by this rotation.","Returns the given 3d vector transformed by this matrix.","Returns the same box, translated by a vector.","Returns the same box3d, translated by a vector.","Returns the same rectangle, translated by a vector.","Create a 2d translation transform:","Create a 3d translation transform:","","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the vector with length of one unit.","Returns the vector with length of one unit.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the union of two boxes.","Computes the union of two boxes.","","Creates a rotation around from a quaternion representation …","","","","","","","","","","","","","","","","","","","","","","","","Convenience constructor.","Convenience constructor.","Returns the vector part (i, j, k) of this quaternion.","","","Returns result of multiplication of all components","","","","","The extent of the element in the U units along the x axis …","The extent of the element in the U units along the x axis.","Returns the same transform with a different destination …","Returns the same transform with a different destination …","Return this vector scaled to fit the provided length.","Return this vector capped to a maximum length.","Return this vector capped to a maximum length.","Return this vector with a minimum length applied.","Return this vector with a minimum length applied.","Returns the same transform with a different source unit.","Returns the same transform with a different source unit.","","","","","","The x (traditionally, horizontal) coordinate.","The x (traditionally, horizontal) coordinate.","","","","","","Returns a 2d point using this point’s x and y coordinates","Returns a 2d vector using this vector’s x and y …","Returns a 2d vector using this vector’s x and y …","","Returns a 2d point using this point’s x and z coordinates","Returns a 2d vector using this vector’s x and z …","Returns a 2d vector using this vector’s x and z …","","","","","","","The y (traditionally, vertical) coordinate.","The y (traditionally, vertical) coordinate.","","","","","","Swap x and y.","Swap x and y.","Returns a 2d point using this point’s x and z coordinates","Returns a 2d vector using this vector’s x and z …","Returns a 2d vector using this vector’s y and z …","","","","","The z (traditionally, depth) coordinate.","","","Constructor, setting all sides to zero.","Constructor, setting all sides to zero.","","","The same as origin().","","The same as origin().","Constructor, setting all sides to zero.","Constructor, setting all sides to zero.","","The same as Zero::zero() but available without importing …","","The same as Zero::zero() but available without importing …","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Trait for testing approximate equality","Default epsilon value","Returns true is this object is approximately equal to the …","Returns true is this object is approximately equal to the …","","","","","","","","","","","","","","","","","","","","","","","Angle in radians","","The extent of the element in the U units along the z axis.","The extent of the element in the U units along the y axis …","The extent of the element in the U units along the y axis.","Component multiplied by the imaginary number i.","Component multiplied by the imaginary number j.","Component multiplied by the imaginary number k.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The real part.","","","","","","","The extent of the element in the U units along the x axis …","The extent of the element in the U units along the x axis.","","","The x (traditionally, horizontal) coordinate.","The x (traditionally, horizontal) coordinate.","","","","","","The y (traditionally, vertical) coordinate.","The y (traditionally, vertical) coordinate.","","","","","The z (traditionally, depth) coordinate.","","","Defines the smallest integer equal or greater than the …","Defines the biggest integer equal or lower than the …","","Defines the nearest integer value to the original value.","","Rounds to the smallest integer equal or greater than the …","Rounds to the biggest integer equal or lower than the …","","Rounds to the nearest integer value.","","A flattening iterator for quadratic bézier segments.","A flattening iterator for quadratic bézier segments.","","A 2d curve segment defined by three points: the beginning …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Common APIs to segment types.","","Return the curve after the split point.","Compute the length of the segment using a flattened …","Return the curve before the split point.","Sample the derivative at t (expecting t between 0 and 1).","Sample x derivative at t (expecting t between 0 and 1).","Sample y derivative at t (expecting t between 0 and 1).","Swap the direction of the segment.","Approximates the curve with sequence of line segments.","Start of the curve.","Sample the curve at t (expecting t between 0 and 1).","Split this curve into two sub-curves.","Return the curve inside a given range of t.","End of the curve.","","","Sample x at t (expecting t between 0 and 1).","Sample y at t (expecting t between 0 and 1).","","Angle between vectors v1 and v2 (oriented clockwise …","","","","","An iterator that consumes Event iterator and yields …","An iterator that consumes an iterator of Points and …","","An extension trait for PathEvent iterators.","Applies a 2D transform to a path iterator and yields the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator that turns curves into line segments.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create the iterator.","Creates a new transformed path iterator from a path …","","","","","","","","Returns an iterator applying a 2D transform to all of its …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An angle in radians (f32).","Alias for euclid::default::Box2D<f32>","Alias for euclid::default::Point2D<f32>.","Alias for euclid::default::Rotation2D<f32>","Alias for euclid::default::Scale<f32>","Alias for euclid::default::Size2D<f32>.","Alias for euclid::default::Transform2D<f32>","Alias for euclid::default::Translation2D<f32>","Alias for euclid::default::Point2D<f32>.","Angle in radians","The extent of the element in the U units along the y axis …","","","","","","","","","Shorthand for Point::new(x, y).","","Shorthand for Size::new(x, y).","Shorthand for Vector::new(x, y).","The extent of the element in the U units along the x axis …","","The x (traditionally, horizontal) coordinate.","","","The y (traditionally, vertical) coordinate.","","","The default builder for Path.","A builder for Path with custom attributes.","An iterator of endpoint and control point ids for Path and …","An iterator for Path and PathSlice.","An iterator for Path and PathSlice.","A simple path data structure.","A view on a Path.","An iterator of over a Path traversing the path in reverse.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Iterate on a flattened approximation of the path with …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Builds a Path from This iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A Builder that appends a path to an existing PathBuffer.","A Builder that appends a path to an existing PathBuffer, …","Iterator over the paths in a PathBufferSlice.","An object that stores multiple paths contiguously.","A view on a PathBuffer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A view over a sequence of endpoint IDs forming a polygon.","An iterator of Event<EndpointId, ()>.","An iterator of PathEvent.","A view over a sequence of endpoints forming a polygon.","An iterator of IdEvent for Polygon.","An iterator of Event<&Endpoint, ()>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Builds a path.","The base path building interface.","An extension trait for PathEvent iterators.","The type of object that is created by this builder.","A path building interface that tries to stay close to SVG…","Adds a sub-path containing a circle.","Adds a sub-path containing an ellipse.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single point.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds an elliptical arc.","Starts a new sub-path at a given position.","Builds a path object, consuming the builder.","Ends the current sub-path by connecting it back to its …","Closes the current sub path.","Adds a cubic bézier curve to the current sub-path.","Adds a cubic bézier segment to the current sub-path.","Ends the current sub path.","","Returns a builder that approximates all curves with …","Returns an iterator that turns curves into line segments.","Adds an horizontal line segment.","Adds a line segment to the current sub-path.","Adds a line segment to the current sub-path.","Start a new sub-path at the given position.","","Applies the provided path event.","Adds a quadratic bézier curve to the current sub-path.","Adds a quadratic bézier segment to the current sub-path.","Equivalent to arc_to in relative coordinates.","Equivalent to cubic_bezier_to in relative coordinates.","Adds an horizontal line segment in relative coordinates.","Equivalent to line_to in relative coordinates.","Equivalent to move_to in relative coordinates.","Equivalent to quadratic_bezier_to in relative coordinates.","Adds a vertical line segment in relative coordinates.","Hints at the builder that a certain number of endpoints …","Hints at the builder that a certain number of endpoints …","Equivalent to cubic_bezier_to with implicit first control …","Equivalent to quadratic_bezier_to with implicit control …","Equivalent to smooth_cubic_bezier_to in relative …","Equivalent to smooth_quadratic_bezier_to in relative …","Returns a builder that applies the given transformation to …","Returns an iterator applying a 2D transform to all of its …","Adds a vertical line segment.","Returns a builder that support SVG commands.","A bevelled corner.","The stroke for each sub-path does not extend beyond its …","A Gradient color.","The shape used at the end of open subpaths when they are …","The dash pattern used when stroking the line.","The shape used at the corners of paths or basic shapes …","A sharp corner.","At the end of each sub-path, the shape representing the …","A round corner.","A solid Color.","At the end of each sub-path, the shape representing the …","The style of a stroke.","The coloring style of some drawing.","The shape to be used at the end of open subpaths when they …","The dash pattern used when stroking the line.","The shape to be used at the corners of paths or basic …","The offset of LineDash::segments to start the pattern.","The alternating lengths of lines and gaps which describe …","The color or gradient of the stroke.","The distance between the two edges of the stroke.","The appearance of a checkbox.","A box that can be checked.","The icon in a Checkbox.","The supported style of the StyleSheet.","A set of rules that dictate the style of a checkbox.","Produces the active Appearance of a checkbox.","","","","","","","","","","","","","","","","The Background of the checkbox.","The Border of hte checkbox.","","","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","","","","","","","","","","","","","Sets the Renderer::Font of the text of the Checkbox.","Font that will be used to display the code_point,","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Produces the hovered Appearance of a checkbox.","Sets the Icon of the Checkbox.","The icon Color of the checkbox.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","The line height of the icon.","","Creates a new Checkbox.","","The shaping strategy of the icon.","","Sets the size of the Checkbox.","Font size of the content.","Sets the spacing between the Checkbox and the text.","","Sets the style of the Checkbox.","","The text Color of the checkbox.","Sets the text text::LineHeight of the Checkbox.","Sets the text::Shaping strategy of the Checkbox.","Sets the text size of the Checkbox.","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Checkbox.","A widget for searching and selecting a single value from a …","The local state of a ComboBox.","","","","","","","","","","","","","","","Build matchers from given list of options.","","","","","","","","","","","","","","","","Sets the Renderer::Font of the ComboBox.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Sets the text_input::Icon of the ComboBox.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Sets the LineHeight of the ComboBox.","","Creates a new ComboBox with the given list of options, a …","Creates a new State for a ComboBox with the given list of …","Sets the message that will be produced when the outside …","","Sets the message that should be produced when some text is …","Sets the message that will be produced when an option of …","","Sets the Padding of the ComboBox.","Search list of options for a given query.","","Sets the text sixe of the ComboBox.","","Sets the style of the ComboBox.","","Sets the style of the TextInput of the ComboBox.","","","","","","","","","","","","","","","","","","Sets the width of the ComboBox.","Creates a new State for a ComboBox with the given list of …","The appearance of a container.","An element decorating some content.","The identifier of a Container.","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","","","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","Produces the Appearance of a container.","","","","","","","","","","","","","The Background of the container.","The Border of the container.","","","","","","","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the Container.","","","","","","","","","","","","","","","","","","","","","Draws the background of a Container given its Appearance …","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Sets the height of the Container.","Sets the Id of the Container.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Computes the layout of a Container.","","Sets the maximum height of the Container.","Sets the maximum width of the Container.","","Creates an empty Container.","Creates a custom Id.","","","","Sets the Padding of the Container.","The Shadow of the container.","","","Sets the style of the Container.","","The text Color of the container.","","","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","","","","Produces a Command that queries the visible screen bounds …","Sets the width of the Container.","Derives a new Appearance with the given Background.","Derives a new Appearance with a border of the given Color …","Image filtering strategy.","A handle of some image data.","A frame that displays an image while keeping aspect ratio.","Bilinear interpolation.","Nearest neighbor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the ContentFit of the Image.","Returns a reference to the image Data.","","","","","","","","","","","Draws an Image","","","","","","","","","","","","","Sets the FilterMethod of the Image.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Creates an image Handle containing the image data directly.","Creates an image Handle pointing to the image of the given …","Creates an image Handle containing the image pixels …","","","","","","Sets the height of the Image boundaries.","Returns the unique identifier of the Handle.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Computes the layout of an Image.","","Creates a new Image with the given path.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Zoom and pan on an image.","Creates a new Viewer with the given image Handle.","Sets the width of the Image boundaries.","The local state of a Viewer.","A frame that displays an image with the ability to zoom …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Sets the height of the Viewer.","Returns the bounds of the underlying image, given the …","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns if the cursor is currently grabbed by the Viewer.","","Sets the max scale applied to the image of the Viewer.","Sets the min scale applied to the image of the Viewer.","","Creates a new Viewer with the given State.","Creates a new State.","","Sets the padding of the Viewer.","Sets the percentage the image of the Viewer will be scaled …","","","","","","","","","","","","","","","","","","","","","Sets the width of the Viewer.","","Distribute content vertically.","A container that distributes its contents vertically.","","Sets the horizontal alignment of the contents of the Column…","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Sets the height of the Column.","","Calls U::from(self).","","","","","","","","Sets the maximum width of the Column.","","Creates an empty Column.","","","","Sets the Padding of the Column.","Adds an element to the Column.","","Sets the vertical spacing between elements.","","","","","","","","","","","Sets the width of the Column.","Creates a Column with the given elements.","Build and show dropdown menus.","The appearance of a menu.","A list of selectable options.","The local state of a Menu.","The supported style of the StyleSheet.","The style sheet of a menu.","","","","Produces the Appearance of a menu.","","","","","","","","","","","","","The Background of the menu.","The Border of the menu.","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the font of the Menu.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Creates a new Menu with the given State, a list of …","Creates a new State for a Menu.","Turns the Menu into an overlay Element at the given target …","Sets the Padding of the Menu.","The background Color of a selected option in the menu.","The text Color of a selected option in the menu.","Sets the style of the Menu.","The text Color of the menu.","Sets the text text::LineHeight of the Menu.","Sets the text::Shaping strategy of the Menu.","Sets the text size of the Menu.","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Menu.","All panes are visible","The appearance of the hovered region of a pane grid.","A fixed reference line for the measurement of coordinates.","Bottom edge.","A Pane was picked and then dropped outside of other Pane …","Center region.","The arrangement of a PaneGrid.","The content of a Pane.","The visible contents of the PaneGrid","A four cardinal direction.","↓","An event produced during a drag and drop interaction of a …","A pane that can be dragged.","A Pane was dropped on top of another Pane.","The edges of an area.","An Edge of the full PaneGrid.","Edge region.","The horizontal axis: —","←","Left edge.","A line.","A maximized pane is visible","A layout node of a PaneGrid.","A rectangular region in a PaneGrid used to display widgets.","A Pane.","The region of this Node is taken by a Pane.","A single Pane of the PaneGrid.","A collection of panes distributed using either vertical or …","A Pane was picked for dragging.","The region of a Pane.","An event produced during a resize interaction of a PaneGrid…","→","Right edge.","A divider that splits a region in a PaneGrid into two …","A split of the available space.","The region of this Node is split into two.","","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","The Target area a pane can be dropped on.","The title bar of a Pane.","Top edge.","↑","The vertical axis: |","","","","","","","","","","","","","","","","","","Sets whether or not the controls attached to this TitleBar …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the pane region.","The Border of the pane region.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Draggable with the given Layout can be …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Color of the Line.","","","","","","","","","","","","","","","","","","","","Sets the controls of the TitleBar.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws a PaneGrid.","Draws the Content with the provided Renderer and Layout.","Draws the TitleBar with the provided Renderer and Layout.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the height of the PaneGrid.","The Appearance to draw when a pane is hovered.","The Line to draw when a split is hovered.","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the mouse cursor is over the pick area of …","Returns an iterator over the values of the Contents","Calculates the Layout of a PaneGrid.","","Returns the layout Node of the Contents","Returns the current mouse::Interaction of a PaneGrid.","","Creates a new Content with the provided body.","Creates a new TitleBar with the given content.","Creates a PaneGrid with the given State and view function.","Sets the message that will be produced when a Pane of the …","Enables the drag and drop interactions of the PaneGrid, …","","Enables the resize interactions of the PaneGrid, which will","","","Sets the Padding of the TitleBar.","Returns the rectangular region for each Pane in the Node …","","","The Line to draw when a split is picked.","The new ratio of the Split.","","Sets the spacing between the panes of the PaneGrid.","Splits the provided Rectangle on the current Axis with the …","The Split that is being dragged for resizing.","Calculates the bounds of the split line in a Rectangle …","Returns the axis, rectangular region, and ratio for each …","Returns an iterator over each Split in this Node.","The state of a PaneGrid.","","Sets the style of the Content.","Sets the style of the TitleBar.","Sets the style of the PaneGrid.","","Sets the TitleBar of this Content.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the state of a PaneGrid …","Sets the width of the PaneGrid.","The width of the Line.","The left/top Configuration of the split.","The direction of the split.","The right/bottom Configuration of the split.","The ratio of the split in [0.0, 1.0].","The picked Pane.","The picked Pane.","The picked Pane.","The Target where the picked Pane was dropped on.","The left/top Node of the split.","The direction of the split.","The right/bottom Node of the split.","The Split of this Node.","The ratio of the split in [0.0, 1.0].","The current action of a PaneGrid.","A Pane in the PaneGrid is being clicked.","A Pane in the PaneGrid is being dragged.","The PaneGrid is idle.","The internal state of a PaneGrid.","A Split in the PaneGrid is being dragged.","The state of a PaneGrid.","","","","Returns the adjacent Pane of another Pane in the given …","","","","","","","","","","","","","","","","","","","Returns the current Pane that is being clicked, if any.","","","","","","","Closes the given Pane and returns its internal state and …","","","","","","","","","","","","","","Drops the given Pane into the provided Target.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Initializes the Internal state of a PaneGrid from a …","","","","Returns the internal state of the given Pane, if it exists.","Returns the internal state of the given Pane with …","","","","The internal state of the PaneGrid.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Returns true if the amount of panes in the State is 0.","Returns an iterator over all the panes of the State, …","Returns a mutable iterator over all the panes of the State,","Returns the layout of the State.","The layout Node of the Internal state","Returns the total amount of panes in the State.","Maximize the given Pane. Only this pane will be rendered …","Returns the maximized Pane of the PaneGrid.","Move Pane to an Edge of the PaneGrid.","Creates a new State, initializing the first pane with the …","The panes of the PaneGrid.","Returns the current Pane that is being dragged, if any.","Returns the current Split that is being dragged, if any.","Resizes two panes by setting the position of the provided …","Restore the currently maximized Pane to it’s normal …","Splits the given Pane into two in the given Axis and …","Split a target Pane with a given Pane on a given Region.","Swaps the position of the provided panes in the State.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new State with the given Configuration.","The Axis of the Split.","The starting Point of the click interaction.","The starting Point of the drag interaction.","The Pane being clicked.","The Pane being dragged.","The Split being dragged.","The appearance of a pick list.","Displays an arrow icon (▼).","The default padding of a PickList.","A custom dynamic handle.","The handle to the right side of the PickList.","The icon of a Handle.","No handle will be shown.","A widget for selecting a single value from a list of …","The state of a PickList.","A custom static handle.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","Produces the active Appearance of a pick list.","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the pick list.","The Border of the pick list.","","","","","","","","","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","","","","","","","","","","","","","","","","Draws a PickList.","","","","","","","","","","","","","Sets the font of the PickList.","Font that will be used to display the code_point,","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Sets the Handle of the PickList.","The handle Color of the pick list.","Produces the hovered Appearance of a pick list.","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the layout of a PickList.","","Line height of the content.","Returns the current mouse::Interaction of a PickList.","","Creates a new PickList with the given list of options, the …","","Returns the current overlay of a PickList.","","Sets the Padding of the PickList.","Sets the placeholder of the PickList.","The placeholder Color of the pick list.","The shaping strategy of the icon.","","Font size of the content.","","Sets the style of the PickList.","","The text Color of the pick list.","Sets the text text::LineHeight of the PickList.","Sets the text::Shaping strategy of the PickList.","Sets the text size of the PickList.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a PickList …","Sets the width of the PickList.","The Icon used when PickList is closed.","The Icon used when PickList is open.","Font size of the content.","The appearance of a progress bar.","The default height of a ProgressBar.","A bar that displays progress.","The supported style of the StyleSheet.","A set of rules that dictate the style of a progress bar.","","","Produces the Appearance of the progress bar.","","","","","","","","","The Background of the progress bar.","The Background of the bar of the progress bar.","The border radius of the progress bar.","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Sets the height of the ProgressBar.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Creates a new ProgressBar.","","Sets the style of the ProgressBar.","","","","","","","","","","","","","","","","","","Sets the width of the ProgressBar.","The data is too long to encode in a QR code for the chosen …","An error that occurred when building a State for a QRCode.","The error correction level.","High error correction. 30% of the data can be restored.","A character that does not belong to the character set was …","The chosen ECI designator is invalid. A valid designator …","The chosen Version and ErrorCorrection combination is …","Low error correction. 7% of the data can be restored.","Medium error correction. 15% of the data can be restored.","A micro QR code version. It should be between 1 and 4.","A normal QR code version. It should be between 1 and 40.","A type of matrix barcode consisting of squares arranged in …","Quartile error correction. 25% of the data can be restored.","The state of a QRCode.","One or more characters in the provided data are not …","The size of a QRCode.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the size of the squares of the grid cell of the QRCode…","","","","","","","Sets both the dark and light Colors of the QRCode.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new QRCode with the provided State.","Creates a new State with the provided data.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new State with the provided ErrorCorrection.","Creates a new State with the provided Version and …","The appearance of a radio button.","The default size of a Radio button.","The default spacing of a Radio button.","A circular button representing a choice.","The supported style of the StyleSheet.","A set of rules that dictate the style of a radio button.","Produces the active Appearance of a radio button.","","","","","","","","","","","The Background of the radio button.","The border Color of the radio button.","The border width of the radio button.","","","","","","","","","","","","","The Color of the dot of the radio button.","","","","","","","Sets the text font of the Radio button.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Produces the hovered Appearance of a radio button.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","Creates a new Radio button.","","Sets the size of the Radio button.","","Sets the spacing between the Radio button and the text.","","Sets the style of the Radio button.","","The text Color of the radio button.","Sets the text text::LineHeight of the Radio button.","Sets the text::Shaping strategy of the Radio button.","Sets the text size of the Radio button.","","","","","","","","","","","","","","","","","","Sets the width of the Radio button.","The appearance of a rule.","Different offset on each end of the rule, length units. …","The fill mode of a rule.","Fill the whole length of the container.","Uniform offset from each end, length units.","Fill a percent of the length of the container. The rule …","Display a horizontal or vertical rule for dividing content.","The supported style of the StyleSheet.","A set of rules that dictate the style of a rule.","","","","Produces the style of a rule.","","","","","","","","","","","","","","","","","","","","","","","The color of the rule.","","","","","","","","","","","","","","","","","Return the starting offset and length of the rule.","The FillMode of the rule.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Creates a horizontal Rule with the given height.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","The radius of the line corners.","","Sets the style of the Rule.","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a vertical Rule with the given width.","The width (thickness) of the rule line.","The amount of absolute offset in each direction of a …","Alignment of the scrollable’s content relative to it’s …","Both vertical and horizontal scrolling","The direction of Scrollable.","A relative offset that points to the bottom-right of a …","Content is aligned to the end of the Viewport","Horizontal scrolling","The identifier of a Scrollable.","Properties of a scrollbar within a Scrollable.","The amount of relative offset in each direction of a …","A relative offset that points to the top-left of a …","A widget that can vertically display an infinite amount of …","The appearance of a scrollable.","The appearance of the scroller of a scrollable.","Content is aligned to the start of the Viewport.","The local state of a Scrollable.","The supported style of the StyleSheet.","A set of rules that dictate the style of a scrollable.","Vertical scrolling","The current Viewport of the Scrollable.","Returns the AbsoluteOffset of the current Viewport.","Returns the AbsoluteOffset of the current Viewport, but …","Produces the style of an active scrollbar.","Produces the style of an active horizontal scrollbar.","","","","","","","","","","","","Sets the alignment of the Scrollable .","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of a scrollable.","The Border of a scrollable.","The Border of the scroller.","","","","","","","","","","","","","","","","","","","","","","","Returns the bounds of the current Viewport.","","","","","","","","","","","","","","","","","","","","","","The Color of the scroller.","","","","","","","","","","","","Returns the content bounds of the current Viewport.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the Direction of the Scrollable .","","","","","","","","","","","","Produces the style of a scrollbar that is being dragged.","Produces the style of a horizontal scrollbar that is being …","Draws a Scrollable.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","Sets the height of the Scrollable.","Returns the Properties of the horizontal scrollbar, if any.","Produces the style of a scrollbar when the scrollable is …","Produces the style of a horizontal scrollbar when the …","Sets the Id of the Scrollable.","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the layout of a Scrollable.","","Sets the scrollbar margin of the Scrollable .","Computes the current mouse::Interaction of a Scrollable.","","Creates a new Scrollable.","Creates new Properties for use in a Scrollable.","Creates a custom Id.","Creates a new State with the scrollbar(s) at the beginning.","","Sets a function to call when the Scrollable is scrolled.","","","Returns the RelativeOffset of the current Viewport.","Apply a scrolling offset to the current State, given the …","Produces a Command that scrolls the Scrollable with the …","Scroll to the provided AbsoluteOffset.","","Scrolls the Scrollable to a relative amount along the x …","Scrolls the Scrollable to a relative amount along the y …","The appearance of the Scroller of a scrollable.","Sets the scroller width of the Scrollable .","Returns whether any scroller is currently grabbed or not.","","Produces a Command that snaps the Scrollable with the …","","Snaps the scroll position to a RelativeOffset.","","Sets the style of the Scrollable .","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","Unsnaps the current scroll position, if snapped, given the …","","","","","","","","","","","","Processes an Event and updates the State of a Scrollable …","Returns the Properties of the vertical scrollbar, if any.","Sets the width of the Scrollable.","Sets the scrollbar width of the Scrollable .","The amount of horizontal offset","The amount of horizontal offset","The amount of vertical offset","The amount of vertical offset","The properties of the horizontal scrollbar.","The properties of the vertical scrollbar.","A Shader event.","A keyboard event.","A mouse event.","A set of methods which allows a Primitive to be rendered.","The type of primitive this Program can draw.","The state and logic of a Shader widget.","A window requested a redraw.","A widget which can render custom shaders with Iced’s wgpu…","The internal state of the Program.","Stores custom, user-provided pipelines.","A touch event.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the Primitive.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Returns a reference to pipeline with type T if it exists …","Returns a mutable reference to pipeline T if it exists in …","Returns true if Storage contains a pipeline with type T.","Set the height of the custom Shader.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Returns the current mouse interaction of the Program.","Returns the current mouse interaction of the Program.","","Create a new custom Shader.","","Processes the Primitive, allowing for GPU buffer …","Renders the Primitive.","","","Inserts the pipeline T in to Storage.","","","","","","","","","","","","","","","","","","","","","","","","","","","Update the internal State of the Program. This can be used …","Update the internal State of the Program. This can be used …","","Set the width of the custom Shader.","The appearance of a slider.","A circular handle.","The default height of a Slider.","The appearance of the handle of a slider.","The shape of the handle of a slider.","The appearance of a slider rail","A rectangular shape.","An horizontal bar and a handle that selects a single value …","The local state of a Slider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","Produces the style of an active slider.","","","","","","","","","","","","","","","","The border Color of the handle.","The border radius of the corners of the rail.","The border width of the handle.","","","","","","","","","","","The Color of the handle.","The colors of the rail of the slider.","","","","","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a Slider.","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","The appearance of the Handle of the slider.","Sets the height of the Slider.","Produces the style of an hovered slider.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a Slider.","","Creates a new Slider.","Creates a new State.","","Sets the release message of the Slider. This is called …","The colors of the rail of the slider.","The shape of the handle.","","","Sets the step size of the Slider.","Sets the style of the Slider.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a Slider …","Sets the width of the Slider.","The width of the stroke of a slider rail.","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle.","An amount of empty space.","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","Creates an amount of empty Space with the given width and …","","","","","","","","","","Creates an amount of vertical Space.","Creates an amount of horizontal Space.","The appearance of an SVG.","A handle of Svg data.","The supported style of the StyleSheet.","The stylesheet of a svg.","A vector graphics image.","","","","Produces the Appearance of the svg.","","","","","","","","","","","","","","","","","","","","","","","The Color filter of an SVG.","","","","Sets the ContentFit of the Svg.","Returns a reference to the SVG Data.","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Creates an SVG Handle from raw bytes containing either an …","Creates an SVG Handle pointing to the vector image of the …","Creates a new Svg that will display the contents of the …","","","","","Sets the height of the Svg.","Produces the hovered Appearance of a svg content.","Returns the unique identifier of the Handle.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","Creates a new Svg from the given Handle.","","Sets the style variant of this Svg.","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Svg.","An absolute height in logical pixels.","Advanced text shaping and font fallback.","The apperance of some text.","No shaping and no font fallback.","The height of a line of text in a paragraph.","A factor of the size of the text.","The shaping strategy of some text.","The internal state of a Text widget.","The supported style of the StyleSheet.","The style sheet of some text.","A paragraph.","","","","","Produces the Appearance of some text.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Color of the text.","","","","","","","","","","","","","","","","","","","","","Draws text using the same logic as the Text widget.","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Produces the layout::Node of a Text widget.","Returns the LineHeight in absolute logical pixels.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An interaction with an Editor.","The appearance of a text input.","Delete the previous character.","Click the Editor at the given Point.","The content of a TextEditor.","Delete the next character.","Move to the end of the text.","Move to the start of the text.","Move down.","Drag the mouse on the Editor to the given Point.","An action that edits text.","Perform an Edit.","Move to the end of the line.","Break the current line.","Move to the start of the line.","Insert the given character.","Move left.","A cursor movement.","Apply a Motion.","Move to the start of the next window.","Move to the start of the previous window.","Paste the given text.","Move right.","Scroll the Editor a certain amount of lines.","Select text with a given Motion.","Select the line at the current cursor.","Select the word at the current cursor.","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","A multi-line text input.","Move up.","Move to the left boundary of a word.","Move to the right boundary of a word.","Produces the style of an active text input.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the text editor.","The Border of the text editor.","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the current cursor position of the Content.","","","","","","","","","","","","","","Returns the Direction of the Motion.","Produces the style of a disabled text input.","Produces the Color of the value of a disabled text input.","","","","","","","","","","","","","","","","","","","","","","Produces the style of a focused text input.","Sets the Font of the TextEditor.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Highlights the TextEditor with the given Highlighter and a …","Produces the style of an hovered text input.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Action is an editing action.","","Returns the text of the line at the given index, if it …","Returns the amount of lines of the Content.","Returns an iterator of the text of the lines in the Content…","","Creates new TextEditor with the given Content.","Creates an empty Content.","Sets the message that should be produced when some action …","","Sets the Padding of the TextEditor.","Performs an Action on the Content.","Produces the Color of the placeholder of a text input.","Returns the selected text of the Content.","Produces the Color of the selection of a text input.","","","Sets the style of the TextEditor.","","Returns the text of the Content.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Produces the Color of the value of a text input.","Widens the Motion, if possible.","Creates a Content with the given text.","The amount of lines to scroll.","The appearance of a text input.","","The default Padding of a TextInput.","The content of the Icon.","The identifier of a TextInput.","The left side of a TextInput.","The right side of a TextInput.","The side of a TextInput.","The state of a TextInput.","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","A field that can be filled with text.","The value of a TextInput.","Produces the style of an active text input.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the text input.","The Border of the text input.","","","","","","","","","","","","","","","","","","","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","Track the cursor of a text input.","Returns the Cursor of the TextInput.","","","","","","","","","","","","","","","","","Produces the style of a disabled text input.","Produces the Color of the value of a disabled text input.","","","","","","","","Draws the TextInput with the given Renderer, overriding its","Draws the TextInput with the given Renderer, overriding its","","","","","","","","","","","","","","","","","","","","Produces a Command that focuses the TextInput with the …","","Focuses the TextInput.","Produces the style of a focused text input.","Creates a new State, representing a focused TextInput.","Sets the Font of the TextInput.","The font that will be used to display the code_point.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","Produces the style of an hovered text input.","Sets the Icon of the TextInput.","The icon Color of the text input.","Sets the Id of the TextInput.","","","","","","","","Inserts a new char at the given grapheme index.","Inserts a bunch of graphemes at the given grapheme index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Value is empty or not.","Returns whether the TextInput is currently focused or not.","","Computes the layout of a TextInput.","","Lays out the TextInput, overriding its Value if provided.","Returns the total amount of graphemes in the Value.","Sets the text::LineHeight of the TextInput.","Computes the current mouse::Interaction of the TextInput.","","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to an arbitrary location.","Produces a Command that moves the cursor of the TextInput …","Moves the Cursor of the TextInput to the end of the input …","","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to the front of the …","Creates a new TextInput.","Creates a new Value from a string slice.","Creates a custom Id.","Creates a new State, representing an unfocused TextInput.","Returns the position of the next end of a word from the …","","Sets the message that should be produced when some text is …","Sets the message that should be produced when some text is …","Sets the message that should be produced when the TextInput…","","Sets the Padding of the TextInput.","Converts the TextInput into a secure password input.","Produces the Color of the placeholder of a text input.","Returns the position of the previous start of a word from …","Removes the grapheme at the given index.","Removes the graphemes from start to end.","Returns a new Value with all its graphemes replaced with …","Returns a new Value containing the graphemes from start …","Produces a Command that selects all the content of the …","Selects all the content of the TextInput.","","Produces the Color of the selection of a text input.","The side of a TextInput where to display the Icon.","Sets the text size of the TextInput.","","The font size of the content.","The spacing between the Icon and the text in a TextInput.","","Sets the style of the TextInput.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Unfocuses the TextInput.","","Creates a unique Id.","Returns a new Value containing the graphemes until the …","","","","","","","","Processes an Event and updates the State of a TextInput …","Produces the Color of the value of a text input.","Sets the width of the TextInput.","The cursor of a text input.","Cursor without a selection","Cursor selecting a range of text","The state of a Cursor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns the current selection of the Cursor for the given …","Returns the State of the Cursor.","","","","","","","","","","","","","","","","","","","The end of the selection","The start of the selection","The style of an application.","A simple box.","The style of a button.","The style of a checkbox.","Colored text.","The style of a container.","A Theme with a customized Palette.","A Theme that uses a Custom palette.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","The built-in dark variant of a Palette.","The danger style.","The danger style.","The built-in dark variant.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","No filtering to the rendered SVG.","The default style.","The default style.","The default style.","The default style.","The destructive style.","The built-in light variant of a Palette.","The built-in light variant.","The style of a menu.","A color palette.","The style of a pane grid.","The style of a pick list.","The positive style.","The primary style.","The primary style.","The primary style.","The style of a progress bar.","The style of a radio button.","The style of a rule.","The style of a scrollable.","The secondary style.","The secondary style.","The style of a slider.","The success style.","The success style.","Svg","The style of text.","The text style.","The style of a text input.","The style of a text input.","A built-in theme.","The style of a toggler.","No style.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a custom Button style variant.","Creates a custom Scrollable theme.","Creates a custom Svg style.","The danger Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Custom theme from the given Palette.","Define the colors of a theme.","The primary Color of the Palette.","The success Color of the Palette.","The text Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Custom theme from the given Palette with a …","A set of background colors.","A set of danger colors.","The built-in dark variant of an Extended palette.","The built-in light variant of an Extended palette.","An extended set of colors generated from a Palette.","A pair of background and text colors.","A color palette.","A set of primary colors.","A set of secondary colors.","A set of success colors.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background Color of the Palette.","The set of background colors.","The base background color.","The base primary color.","The base secondary color.","The base success color.","The base danger color.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background color.","","","","","","","","The danger Color of the Palette.","The set of danger colors.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Generates an Extended palette from a simple Palette.","Generates a set of Primary colors from the base, …","Generates a set of Secondary colors from the base and text …","Generates a set of Success colors from the base, …","Generates a set of Danger colors from the base, …","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether the palette is dark or not.","Creates a new Pair from a background Color and some text …","Generates a set of Background colors from the base and …","The primary Color of the Palette.","The set of primary colors.","The set of secondary colors.","A stronger version of the base background color.","A stronger version of the base primary color.","A stronger version of the base secondary color.","A stronger version of the base success color.","A stronger version of the base danger color.","The success Color of the Palette.","The set of success colors.","The text Color of the Palette.","The text color.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A weaker version of the base background color.","A weaker version of the base primary color.","A weaker version of the base secondary color.","A weaker version of the base success color.","A weaker version of the base danger color.","The appearance of a toggler.","The default size of a Toggler.","The supported style of the StyleSheet.","A set of rules that dictate the style of a toggler.","A toggler widget.","Returns the active Appearance of the toggler for the …","","","","","","","","","","","The background Color of the toggler.","The Color of the background border of the toggler.","","","","","","","","","","","","","","","","","","","Sets the Renderer::Font of the text of the Toggler","The foreground Color of the toggler.","The Color of the foreground border of the toggler.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the hovered Appearance of the toggler for the …","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Creates a new Toggler.","","Sets the size of the Toggler.","","Sets the spacing between the Toggler and the text.","","Sets the style of the Toggler.","","Sets the horizontal alignment of the text of the Toggler","Sets the text text::LineHeight of the Toggler.","Sets the text::Shaping strategy of the Toggler.","Sets the text size o the Toggler.","","","","","","","","","","","","","","","","","","Sets the width of the Toggler.","The tooltip will appear on the bottom of the widget.","The tooltip will follow the cursor.","The tooltip will appear on the left of the widget.","The position of the tooltip. Defaults to following the …","The tooltip will appear on the right of the widget.","An element to display a widget over another.","The tooltip will appear on the top of the widget.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the font of the Tooltip.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Sets the gap between the content and its Tooltip.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Creates a new Tooltip.","","","Sets the padding of the Tooltip.","","Sets the size of the text of the Tooltip.","Sets whether the Tooltip is snapped within the viewport.","","Sets the style of the Tooltip.","","Sets the text::Shaping strategy of the Tooltip.","","","","","","","","","","","","","","","","","","The appearance of a slider.","A circular handle.","The default width of a VerticalSlider.","The appearance of the handle of a slider.","The shape of the handle of a slider.","A rectangular shape.","The local state of a VerticalSlider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","An vertical bar and a handle that selects a single value …","Produces the style of an active slider.","","","","","","","","","","","","","","","","","","","","","","","","","","The border Color of the handle.","The border width of the handle.","","","","","","","","","","","","","","","","","","","The Color of the handle.","","","","","","","","","","","","","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a VerticalSlider.","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","The appearance of the Handle of the slider.","Sets the height of the VerticalSlider.","Produces the style of an hovered slider.","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a VerticalSlider…","","Creates a new VerticalSlider.","Creates a new State.","","Sets the release message of the VerticalSlider. This is …","The colors of the rail of the slider.","The shape of the handle.","","","Sets the step size of the VerticalSlider.","Sets the style of the VerticalSlider.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a …","Sets the width of the VerticalSlider.","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle."],"i":[1,0,0,0,0,0,0,0,1,1,52,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,40,0,0,0,40,1,1,1,1,1,1,1,1,1,1,40,1,67,36,1,1,1,1,1,1,1,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,0,0,0,0,0,0,36,40,1,1,0,0,0,0,0,0,40,1,67,36,0,0,0,1,1,1,40,40,40,1,67,36,40,1,67,36,36,40,40,1,1,1,1,1,40,1,67,36,1,1,1,40,40,40,67,36,40,40,40,1,67,36,1,1,40,40,40,40,1,1,0,0,1,1,40,1,67,36,40,1,67,36,40,1,67,36,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,1,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,0,0,0,67,36,0,40,0,67,36,67,36,67,36,52,52,67,36,0,67,36,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,67,36,36,0,0,0,67,36,0,0,0,67,36,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,52,1,1,0,0,0,0,52,40,40,0,0,0,22,0,22,21,3,147,21,3,147,21,3,147,21,3,147,21,3,147,3,3,21,3,147,21,3,147,21,3,147,3,147,21,3,147,3,147,21,3,147,21,3,147,21,22,21,3,147,0,21,21,3,147,147,147,147,147,3,147,21,3,147,21,3,147,21,3,147,21,22,21,3,147,21,3,147,21,3,147,21,3,147,3,147,21,3,147,21,3,147,21,3,147,21,3,147,0,21,0,21,21,147,21,21,21,21,21,21,22,3,3,21,21,21,21,3,3,147,21,3,147,21,3,147,21,3,147,21,3,147,21,3,147,21,3,147,21,3,147,21,3,147,0,21,157,156,0,0,0,0,0,0,27,0,159,0,0,0,153,157,0,0,0,156,157,159,156,28,0,0,0,150,162,150,162,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,151,152,153,154,151,155,156,157,158,159,160,153,154,151,155,156,157,158,159,160,160,150,162,152,153,154,151,155,156,157,158,159,160,26,160,152,154,155,156,157,158,160,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,27,28,152,26,160,150,162,152,153,154,151,155,156,157,158,159,160,26,153,159,0,0,150,150,150,152,153,154,151,155,156,157,158,159,160,26,160,150,162,152,153,153,154,154,154,154,151,155,156,157,158,159,159,159,160,160,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,0,150,26,160,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,150,162,152,153,154,151,155,156,157,158,159,160,26,26,151,155,155,160,155,28,28,26,150,152,151,26,158,26,153,0,160,151,151,150,154,150,150,158,160,150,26,160,26,0,150,154,155,26,153,154,151,155,156,157,158,159,160,151,150,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,28,28,160,150,26,155,150,155,155,155,150,155,103,0,103,171,171,0,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,103,103,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,172,0,159,172,0,159,0,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,154,154,172,172,172,172,172,172,172,172,172,0,0,153,0,165,167,165,165,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,167,165,0,165,165,165,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,0,0,0,166,175,0,166,166,166,175,166,175,166,175,166,175,166,166,175,166,175,166,175,166,175,175,166,166,175,166,166,175,166,175,166,175,166,175,166,175,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,166,166,166,175,166,175,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,0,0,176,176,176,176,176,176,176,175,176,176,176,176,176,176,176,176,175,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,175,176,175,176,176,176,176,176,176,176,176,176,176,0,0,0,0,0,438,439,189,193,192,0,438,439,189,438,439,189,0,195,0,0,0,197,182,198,0,0,438,439,189,0,0,193,193,0,194,196,195,0,0,0,0,0,0,0,0,0,0,194,196,438,439,189,192,193,0,192,0,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,177,168,180,168,179,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,0,177,168,180,168,180,188,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,190,191,0,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,168,180,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,189,192,193,194,195,196,197,182,198,189,189,189,196,196,196,197,197,197,182,182,182,198,198,198,177,178,190,191,177,168,179,188,177,178,189,168,179,180,181,192,193,194,195,196,197,182,198,188,202,177,178,178,189,189,168,179,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,168,180,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,197,182,201,202,168,179,180,181,203,168,179,190,203,168,179,190,189,196,197,182,198,168,179,190,168,168,179,179,190,180,181,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,177,168,179,179,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,189,179,180,181,195,194,195,194,177,178,168,179,180,181,190,191,168,179,0,188,168,179,180,181,0,202,168,180,177,178,177,178,201,202,168,179,197,182,194,0,0,190,177,190,191,0,204,180,168,179,168,188,189,194,188,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,197,182,198,0,189,168,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,168,180,189,440,441,442,443,443,441,444,442,443,441,444,442,443,440,441,442,443,443,441,444,442,443,441,444,442,443,440,441,442,443,443,441,444,442,443,441,444,442,443,0,0,0,0,0,232,0,0,0,229,230,220,228,185,222,185,222,185,222,185,222,185,222,226,185,222,185,222,185,220,226,220,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,222,229,230,185,185,229,230,220,228,185,229,230,220,228,185,228,228,232,229,229,230,220,220,185,185,228,185,228,185,226,222,220,220,185,229,230,220,228,185,222,226,229,230,220,220,185,185,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,222,229,230,185,185,228,185,222,185,222,220,185,228,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,185,226,220,229,230,220,228,185,185,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,185,229,230,220,228,185,222,226,229,230,220,220,185,185,226,220,220,229,230,220,228,185,222,229,230,185,228,222,185,222,226,229,230,220,220,185,185,226,220,226,220,226,220,226,220,226,220,226,220,226,220,222,226,229,230,220,220,185,185,229,230,220,226,220,226,220,226,220,226,220,228,185,228,228,228,228,222,220,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,226,220,185,222,185,185,0,0,0,0,0,0,0,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,183,217,183,199,209,234,217,183,199,209,234,183,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,183,183,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,183,217,217,183,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,217,217,217,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,199,209,234,217,183,199,209,234,217,183,183,199,209,234,199,183,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,183,0,0,0,0,0,236,236,236,236,236,236,0,0,0,236,236,236,236,0,0,0,236,236,0,241,0,0,0,0,236,236,236,0,0,0,0,236,235,237,237,237,242,252,243,225,253,235,244,237,224,224,224,224,241,242,242,243,243,225,225,244,244,445,224,224,224,241,242,242,243,243,225,244,0,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,235,237,237,243,244,237,241,242,242,243,243,225,225,244,244,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,243,225,244,237,242,243,244,237,242,243,244,237,244,235,237,237,224,237,242,242,225,225,225,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,225,244,242,252,243,225,253,235,244,237,224,237,225,244,243,243,0,243,243,224,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,241,242,243,243,225,244,244,225,253,235,244,224,224,224,242,252,243,225,253,235,244,237,224,243,244,243,242,252,243,225,253,235,244,237,224,241,243,243,225,244,244,241,243,243,225,244,244,242,236,242,252,243,225,235,244,237,224,253,235,235,235,224,224,224,242,243,244,242,243,244,242,243,244,243,244,252,242,243,244,244,244,241,242,242,243,243,225,225,244,244,242,252,243,225,253,235,244,237,224,242,252,242,252,243,244,241,242,242,252,243,243,225,244,244,243,242,243,242,243,243,244,243,244,242,252,243,242,252,243,243,244,243,244,243,244,243,244,224,224,224,241,242,242,242,242,252,243,243,243,225,225,225,253,235,244,244,244,237,224,252,243,225,244,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,224,242,224,446,225,225,242,252,243,225,253,235,244,237,224,225,253,225,225,237,253,225,237,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,235,244,224,235,243,244,243,244,243,252,235,243,244,243,244,188,225,244,224,225,225,243,244,243,244,243,244,243,244,244,244,447,447,447,447,447,447,448,225,448,224,224,224,235,235,243,235,225,225,235,224,224,0,253,224,235,0,243,243,224,224,242,252,241,242,242,243,243,225,225,244,244,242,225,224,253,235,224,0,243,225,243,225,225,235,225,235,241,242,242,243,243,225,225,244,244,225,241,242,242,243,243,225,225,244,244,225,253,244,225,242,224,224,224,224,188,242,235,241,242,242,243,243,225,225,244,244,252,243,225,244,252,244,224,243,225,253,244,224,243,225,253,244,224,225,242,252,243,225,253,235,244,237,224,243,243,242,225,0,237,243,225,244,225,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,0,236,0,253,225,225,446,241,242,242,243,243,225,225,244,244,449,450,451,243,244,243,244,242,252,241,242,242,243,243,225,225,244,244,449,450,451,243,244,243,244,224,0,0,0,0,258,258,258,258,258,258,258,242,258,258,258,258,258,252,258,252,258,258,258,258,258,258,258,258,258,258,258,258,188,258,242,252,242,188,242,252,258,258,258,258,258,258,258,258,242,252,0,0,0,0,0,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,254,254,271,254,254,271,254,271,254,254,272,275,271,271,273,254,254,272,275,271,271,273,254,271,254,271,254,272,271,273,254,271,254,272,271,273,254,271,273,254,271,273,254,272,275,271,273,254,271,254,254,272,275,271,271,273,254,254,272,275,271,271,273,254,272,275,271,273,254,254,254,272,272,275,275,271,273,273,254,254,271,271,273,254,254,254,271,271,271,273,273,273,254,254,254,272,271,271,273,273,254,254,272,275,271,271,273,254,272,275,271,273,271,254,254,272,275,271,273,271,254,271,271,254,271,271,254,271,254,272,275,271,273,254,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,254,254,254,254,272,275,254,272,275,271,273,254,271,254,271,254,271,271,254,271,254,271,271,254,271,273,254,271,272,275,272,275,254,271,271,273,254,271,254,254,271,271,254,254,271,254,271,254,254,271,273,272,275,254,254,254,254,272,271,273,271,273,271,273,254,271,254,272,275,271,273,254,254,254,272,275,271,271,271,273,254,254,272,275,271,273,254,272,275,271,273,254,271,271,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,271,271,271,0,0,259,259,259,259,259,259,259,259,259,243,243,259,259,259,259,259,243,259,259,259,259,259,259,259,259,259,259,259,259,259,259,243,259,259,259,259,259,259,259,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,290,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,292,292,200,200,293,293,294,295,267,267,290,290,296,297,223,223,291,291,292,200,200,293,293,295,267,290,296,297,223,291,200,293,298,299,298,299,304,223,223,291,298,299,292,200,293,301,170,300,223,291,170,300,292,200,293,301,170,170,300,300,223,291,0,0,227,302,267,301,301,301,301,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,295,0,0,0,227,303,292,200,293,302,294,267,290,170,300,223,291,227,303,292,200,293,302,304,301,267,290,223,291,305,200,200,293,293,267,267,290,290,223,223,291,291,227,303,302,200,293,294,267,290,223,291,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,292,294,169,292,294,169,223,291,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,302,267,290,227,303,302,255,223,291,305,0,227,303,292,200,293,302,294,295,267,290,170,300,296,297,223,291,169,255,303,290,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,170,300,200,293,227,227,303,303,292,292,292,200,200,293,293,302,302,295,295,267,267,290,290,223,223,291,291,227,227,303,303,292,200,200,293,293,302,302,295,295,267,267,290,290,223,223,291,291,200,293,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,267,290,223,291,227,227,227,303,303,303,308,308,308,292,292,292,200,200,200,293,293,293,302,302,302,304,304,304,301,301,301,294,294,294,295,295,295,267,267,267,290,290,290,170,170,170,300,300,300,296,296,296,297,297,297,223,223,223,291,291,291,305,305,305,298,298,298,299,299,299,169,169,169,301,200,223,255,200,200,293,293,267,267,290,290,223,223,291,291,227,303,308,292,200,293,302,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,227,303,303,308,308,308,308,308,292,200,200,200,293,293,293,302,302,304,301,294,295,267,267,267,267,290,290,290,290,170,300,296,296,297,297,223,223,223,223,291,291,291,305,305,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,223,170,300,170,300,295,200,293,295,267,290,223,291,227,227,303,302,305,300,227,303,302,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,305,227,303,200,293,302,304,301,267,290,170,300,296,297,223,291,305,295,295,292,294,304,267,290,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,302,267,290,295,301,304,301,294,170,300,296,297,305,227,303,302,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,302,227,303,302,227,303,227,303,302,227,303,308,292,200,200,200,293,293,293,302,304,301,294,295,267,267,267,290,290,290,170,300,296,296,296,297,297,297,223,223,223,291,291,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,304,301,294,170,300,296,297,305,300,300,227,303,302,267,290,227,303,200,293,302,267,290,223,291,294,296,297,170,300,227,303,301,267,290,295,301,301,295,223,291,227,303,292,200,293,302,301,267,290,223,291,267,290,223,291,170,300,170,300,300,300,170,300,170,300,300,300,170,300,170,300,300,300,300,300,300,300,292,200,293,302,294,267,290,223,291,227,303,302,302,292,200,293,302,294,267,290,223,291,227,303,302,302,227,227,303,303,292,292,200,200,293,293,302,302,294,295,295,267,267,290,290,223,223,291,291,227,227,303,303,292,200,200,293,293,302,302,295,295,267,267,290,290,223,223,291,291,300,292,200,293,295,267,290,223,291,227,303,308,292,200,293,302,304,294,295,267,290,170,300,296,297,223,291,305,300,295,305,298,299,301,301,223,291,298,299,267,290,223,291,0,294,223,291,298,299,200,293,302,300,227,302,170,300,300,170,300,292,294,169,300,0,0,200,170,300,170,300,170,300,223,291,300,301,301,304,224,255,0,223,291,200,293,295,223,291,170,300,305,227,303,200,200,293,293,302,267,267,290,290,223,223,291,291,227,303,302,227,303,302,292,292,227,303,302,170,300,298,299,298,299,298,299,227,255,227,303,302,0,0,300,301,200,293,267,290,296,297,223,291,223,291,301,292,200,200,200,293,293,293,294,295,267,290,296,297,223,291,292,200,200,293,293,295,267,290,296,297,223,291,292,292,267,267,290,290,223,223,291,291,255,304,301,170,300,305,170,300,170,300,170,300,293,300,291,200,304,170,223,200,293,267,290,170,300,296,297,223,291,293,291,170,300,170,300,300,302,227,303,200,293,302,267,290,223,291,227,303,200,293,302,267,290,223,291,227,303,200,293,302,267,290,223,291,227,303,200,293,302,267,290,223,291,227,303,302,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,223,291,308,308,227,223,304,301,296,297,223,291,305,200,293,267,290,296,297,223,291,293,291,227,303,200,293,302,267,290,223,291,302,267,227,303,200,293,302,304,301,267,290,170,300,296,297,223,291,305,227,303,200,293,302,267,290,223,291,200,293,267,290,296,297,295,296,294,297,294,297,304,304,294,294,170,170,296,296,301,300,297,300,301,294,300,297,300,294,296,297,294,296,297,304,304,294,294,170,170,296,301,300,301,300,227,303,302,170,300,305,227,303,292,200,293,302,294,267,290,170,300,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,302,301,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,0,0,301,295,303,290,308,227,303,302,267,290,170,300,223,223,291,223,291,170,300,308,200,293,296,297,223,291,298,299,227,303,302,293,291,299,303,293,291,299,303,308,200,293,296,297,223,291,298,299,227,303,302,200,223,293,291,299,303,308,293,297,291,299,303,227,303,292,200,200,293,293,302,295,267,267,290,290,223,223,291,291,0,250,250,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,453,454,446,454,455,455,455,453,456,457,456,457,457,457,456,457,456,457,457,457,456,457,456,457,457,457,457,457,457,457,448,458,448,458,459,455,453,460,459,453,460,461,446,454,450,462,451,463,461,464,465,450,462,451,463,461,464,465,462,463,461,465,0,0,0,0,0,306,311,307,312,309,0,0,0,0,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,244,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,244,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,260,261,314,260,261,314,260,261,260,261,244,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,241,0,0,241,241,241,241,241,241,241,241,241,241,241,241,241,221,221,241,241,0,0,0,0,0,0,0,0,0,0,0,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,316,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,317,318,315,219,317,318,315,315,317,316,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,0,0,0,0,0,0,0,0,0,466,467,468,468,468,468,468,468,469,469,0,470,0,0,467,471,472,473,471,472,473,0,0,0,0,0,0,0,0,0,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,184,187,187,218,184,187,210,215,206,218,184,187,210,215,206,184,187,187,184,187,210,215,206,184,187,210,215,206,218,184,187,210,215,206,184,187,187,184,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,184,187,187,184,187,206,215,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,210,215,206,218,218,184,187,210,215,206,184,187,187,184,187,218,210,215,206,184,187,187,215,184,187,187,184,187,187,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,184,184,0,0,0,0,0,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,186,319,319,186,319,212,186,319,212,186,186,319,319,212,212,186,319,212,186,186,319,319,186,319,212,186,319,212,186,319,212,186,319,212,186,186,319,319,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,212,186,319,212,186,186,319,319,319,212,212,186,319,186,186,319,319,186,186,319,319,212,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,0,0,0,0,0,0,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,190,191,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,207,214,213,216,207,207,190,191,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,0,0,0,232,0,222,222,222,222,222,226,222,222,226,222,232,226,222,222,226,222,222,222,316,226,222,226,226,222,222,222,226,226,226,226,226,226,226,226,222,226,226,226,226,226,222,316,226,222,157,156,159,0,0,0,157,156,157,159,156,0,0,155,155,155,158,158,155,155,0,0,0,33,0,33,7,29,321,7,29,321,7,29,321,7,29,321,7,29,321,7,7,7,29,321,7,29,321,7,321,7,321,321,7,29,321,7,29,321,7,29,321,7,29,321,29,7,29,321,321,7,321,29,321,7,29,321,7,29,321,7,29,321,33,29,7,7,29,321,7,29,321,7,29,321,7,29,321,7,321,7,29,321,7,29,321,7,29,321,7,29,321,29,321,29,29,29,321,29,29,321,29,29,29,29,7,29,29,29,7,321,7,29,321,7,29,321,7,29,321,7,29,321,7,29,321,7,29,321,7,29,321,7,29,321,29,0,0,47,44,47,44,47,44,47,44,47,44,47,44,47,44,0,47,44,44,47,44,47,44,47,44,47,44,47,47,44,44,47,47,44,47,44,47,44,47,47,44,47,44,47,44,47,44,47,44,47,44,47,44,47,44,47,47,47,47,44,47,47,47,47,47,47,0,47,47,47,47,47,47,44,47,44,47,44,47,44,47,44,47,44,47,44,47,44,47,44,47,44,0,0,0,54,0,19,53,328,53,53,54,19,53,328,19,53,328,19,53,328,19,53,328,19,19,19,53,328,19,53,328,53,53,53,19,328,19,328,19,53,328,19,19,53,328,19,53,328,53,19,53,328,53,0,19,53,328,328,328,328,328,19,328,19,53,328,19,53,328,19,53,328,328,53,53,19,53,328,19,53,328,19,53,328,19,53,328,19,328,19,53,328,19,53,328,19,53,328,19,53,328,0,53,53,53,53,53,328,53,53,53,53,19,53,53,53,53,19,19,328,19,53,328,19,53,328,19,53,328,19,53,328,19,53,328,19,53,328,19,53,328,328,19,53,328,0,53,19,19,0,0,0,66,66,0,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,63,66,63,66,63,66,87,87,63,66,63,66,87,63,66,87,63,66,87,0,87,63,66,87,63,66,63,63,63,66,66,66,87,63,66,87,63,63,66,87,63,66,87,63,63,63,63,66,87,63,66,87,63,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,0,87,87,87,63,66,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,63,66,87,0,0,87,0,0,336,337,336,337,336,337,336,337,336,337,336,337,336,337,337,337,336,337,337,336,337,336,337,336,337,336,336,337,337,336,337,336,337,336,337,336,0,336,337,336,337,336,337,336,337,336,337,336,337,336,337,336,337,336,337,337,336,336,336,336,336,337,336,336,336,336,336,336,337,336,337,336,337,336,337,336,337,336,337,336,337,336,337,336,337,336,0,0,0,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,0,0,0,0,51,0,18,340,339,51,18,340,339,18,340,339,18,340,339,18,340,339,18,18,18,340,339,18,340,339,18,18,18,340,339,339,18,340,339,18,340,339,18,340,339,18,340,339,18,339,340,18,340,339,18,340,339,18,340,339,18,340,339,18,340,339,18,340,339,18,340,339,18,18,340,339,18,340,339,18,340,339,18,340,339,340,339,340,340,18,18,340,18,340,340,340,18,18,340,339,18,340,339,18,340,339,18,340,339,18,340,339,18,340,339,18,340,339,18,340,339,340,358,0,0,355,352,354,0,0,0,0,348,0,0,352,0,353,354,346,348,355,0,358,0,0,347,349,353,0,352,0,0,348,355,0,347,349,0,345,0,0,0,355,348,346,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,341,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,85,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,342,343,344,85,86,346,347,348,349,350,351,352,353,354,355,356,85,86,346,347,348,349,350,351,352,353,354,355,356,350,351,86,350,351,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,341,354,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,344,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,0,343,341,344,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,86,346,348,350,351,346,346,346,348,348,348,350,350,350,351,351,351,85,86,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,346,349,350,351,344,345,345,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,341,358,0,344,358,0,344,343,341,344,344,344,344,344,344,344,341,349,350,351,345,356,344,344,346,356,346,349,349,0,344,343,341,344,344,343,85,86,346,347,348,349,350,351,352,353,354,355,356,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,0,344,86,474,474,474,474,475,476,477,476,478,478,478,478,478,0,357,357,357,0,357,0,359,361,357,359,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,357,359,361,357,359,361,357,359,359,361,357,359,361,357,359,361,357,359,361,357,359,359,361,357,357,359,361,357,359,361,357,359,361,357,361,359,361,357,359,359,359,361,357,359,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,359,359,359,361,359,359,359,359,359,359,357,357,359,359,359,359,359,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,479,480,481,480,481,479,0,363,109,363,0,0,363,0,0,363,111,0,111,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,11,11,11,109,365,363,364,11,109,365,363,364,11,363,364,11,363,364,364,11,109,365,363,364,365,363,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,0,109,11,109,365,363,364,363,364,11,365,363,364,109,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,109,11,111,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,11,363,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,0,109,364,0,109,109,109,0,109,109,109,11,364,109,364,109,109,109,11,109,109,109,11,363,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,11,109,365,363,364,0,109,482,482,483,0,115,0,116,0,14,115,116,14,115,14,115,14,115,14,115,14,14,14,14,115,14,115,14,14,14,115,14,115,14,115,14,115,115,14,115,14,14,115,14,115,14,115,115,14,115,14,115,14,115,14,115,14,115,14,115,14,115,14,115,14,115,115,115,115,115,14,14,115,14,115,14,115,14,115,14,115,14,115,14,115,14,115,115,370,0,0,369,370,370,370,369,369,368,368,0,369,0,370,0,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,368,369,370,368,369,370,367,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,367,371,368,369,370,368,369,370,368,368,368,369,369,369,370,370,370,367,371,368,369,370,370,367,371,368,369,370,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,367,371,367,368,369,370,370,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,371,371,0,117,117,0,119,0,119,6,117,6,117,6,117,6,117,6,117,6,6,6,6,117,6,117,6,6,6,117,6,117,6,117,6,6,117,117,6,117,6,117,6,117,6,117,6,117,119,6,117,6,117,6,117,6,117,6,117,6,117,6,117,6,117,6,117,117,117,117,117,117,117,117,117,117,117,6,117,117,117,6,6,117,6,117,6,117,6,117,6,117,6,117,6,117,6,117,117,0,373,0,373,373,373,0,82,0,17,373,81,82,17,373,81,17,373,81,17,373,81,17,373,81,17,373,81,17,373,81,17,373,17,373,17,17,373,81,17,373,81,17,373,81,17,373,81,81,17,373,81,373,17,17,373,17,373,81,17,373,81,17,373,81,81,17,373,81,17,373,81,17,373,81,17,373,81,17,373,81,17,373,81,17,373,81,17,373,81,17,373,81,81,17,81,81,17,373,17,373,81,17,373,81,17,373,81,17,373,81,17,373,81,17,373,81,17,373,81,17,373,81,81,17,0,0,380,0,379,377,380,0,0,0,379,0,0,0,377,0,112,0,380,0,374,374,112,112,10,378,120,375,379,380,376,377,381,382,374,376,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,10,378,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,374,120,10,378,375,379,380,376,377,381,382,374,10,378,375,379,380,376,377,381,382,374,378,10,378,120,375,379,380,376,377,381,382,374,374,375,379,380,376,377,382,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,120,120,10,378,120,375,379,380,376,377,381,382,374,112,112,0,120,10,378,120,375,379,380,376,377,381,382,374,375,379,380,376,377,381,377,377,377,381,381,381,10,378,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,381,120,380,112,112,120,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,0,120,376,0,120,120,376,381,382,120,120,120,120,374,382,0,382,382,382,382,10,376,382,120,0,382,382,120,120,120,10,378,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,10,378,120,375,379,380,376,377,381,382,374,381,382,10,378,120,375,379,380,376,377,381,382,374,0,380,120,376,375,379,375,379,484,484,0,383,383,0,122,0,383,0,122,0,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,383,383,384,121,383,384,384,121,383,384,121,383,384,121,383,122,121,384,121,383,383,384,383,384,121,383,384,121,383,384,121,383,384,384,384,121,384,121,383,384,121,383,384,121,383,384,121,383,121,383,384,121,383,384,121,383,384,121,383,384,121,383,121,122,122,121,121,121,72,72,121,121,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,122,122,0,121,0,436,123,0,0,0,436,0,0,126,0,126,392,123,393,392,123,393,392,123,393,392,123,393,392,123,393,435,392,435,392,123,393,392,123,393,392,393,392,393,435,392,392,123,393,393,392,123,393,392,123,393,392,123,393,126,0,123,392,123,393,393,393,393,393,392,393,392,123,393,392,123,393,392,123,393,8,123,126,392,123,393,392,123,393,392,123,393,392,123,393,392,393,392,123,393,392,123,393,392,123,393,392,123,393,123,0,123,123,393,123,123,8,435,123,123,123,123,123,392,393,392,123,393,392,123,393,392,123,393,392,123,393,392,123,393,392,123,393,392,123,393,392,123,393,0,123,392,485,486,485,0,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,0,0,129,0,0,16,60,128,129,16,60,128,16,60,128,16,60,128,16,60,128,16,60,128,16,60,128,16,60,16,60,16,16,60,128,128,60,16,16,60,128,16,60,128,16,60,128,128,16,60,128,60,60,60,60,16,60,16,60,128,16,60,128,60,60,128,16,60,128,60,128,129,60,16,60,128,16,60,128,16,60,128,16,60,128,16,60,128,16,60,128,16,60,128,16,60,128,16,60,128,128,128,128,128,16,60,16,60,128,16,60,128,16,60,128,16,60,128,16,60,128,16,60,128,16,60,128,16,60,128,128,322,323,0,323,0,322,0,0,34,0,0,323,322,397,13,34,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,13,323,322,13,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,0,323,322,397,13,323,322,323,323,323,323,322,397,13,323,322,322,322,397,13,323,322,397,13,323,322,397,13,323,322,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,0,322,323,322,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,0,0,399,398,0,399,400,400,400,398,0,398,400,399,400,399,400,0,398,400,400,399,400,398,398,398,398,135,0,0,400,400,400,135,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,4,4,134,132,398,399,400,4,134,132,398,399,400,4,398,399,400,4,398,399,400,4,134,132,398,399,400,132,132,4,134,132,398,399,400,4,134,132,398,399,400,400,135,135,4,134,132,398,399,400,134,4,134,132,398,399,400,398,399,400,4,132,398,399,400,135,134,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,134,135,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,398,134,132,132,132,134,134,132,134,134,134,132,135,132,135,134,134,134,134,132,4,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,4,134,132,398,399,400,135,400,132,487,0,0,0,0,0,406,406,0,0,50,0,0,0,50,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,2,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,405,324,406,407,408,2,405,324,406,407,408,324,2,136,405,324,406,407,408,0,408,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,136,50,50,2,136,405,324,406,407,408,0,136,136,2,136,405,324,406,407,408,407,407,407,407,2,405,405,324,406,407,408,0,408,408,50,408,136,324,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,407,50,136,2,136,2,136,405,324,406,407,408,405,405,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,405,408,408,0,136,136,405,136,0,136,0,408,408,0,408,408,0,408,408,136,405,407,408,405,136,136,136,136,136,136,136,50,405,405,405,405,405,0,408,408,50,324,136,136,324,324,136,136,136,2,405,324,406,407,408,405,405,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,2,136,405,324,406,407,408,408,408,407,405,2,136,405,324,406,407,408,0,50,136,0,410,410,0,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,409,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,488,488,0,420,0,0,414,0,0,1,418,415,419,420,421,412,413,422,423,424,425,426,417,416,427,428,55,419,425,1,418,421,412,413,422,423,424,426,417,416,414,427,428,415,55,1,0,0,0,0,415,415,419,425,0,0,0,0,415,419,0,419,425,0,0,415,0,0,0,0,420,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,412,413,414,55,411,412,413,414,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,415,416,417,55,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,55,411,411,55,411,418,418,415,419,420,420,420,421,412,412,413,422,423,424,425,425,426,426,417,416,414,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,414,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,411,0,55,55,55,55,411,412,413,414,411,411,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,411,0,0,0,0,0,0,0,0,0,0,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,55,56,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,429,56,429,430,431,432,433,434,55,56,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,55,56,56,430,431,432,433,434,55,56,55,429,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,430,431,432,433,434,0,138,139,0,0,139,9,138,9,138,9,138,9,138,9,138,9,9,9,138,9,138,9,9,9,138,9,138,9,138,9,138,138,9,138,9,138,9,9,9,138,9,138,9,138,139,9,138,9,138,9,138,9,138,9,9,138,9,138,9,138,9,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,9,9,138,9,138,9,138,9,138,9,138,9,138,9,138,9,138,138,140,140,140,0,140,0,140,141,140,141,140,141,140,141,140,141,140,141,140,141,140,141,140,140,141,140,141,140,141,140,141,141,140,141,141,140,140,140,140,140,140,141,141,140,141,140,141,140,141,141,140,141,140,141,140,141,140,140,141,140,141,140,141,140,141,140,141,141,141,141,141,141,141,141,141,141,141,141,141,140,141,140,141,140,141,140,141,140,141,140,141,140,141,140,141,140,0,436,144,0,0,436,0,126,0,0,126,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,435,435,8,435,436,144,437,8,435,436,144,437,8,435,436,437,8,435,436,437,435,8,435,436,144,437,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,126,0,144,8,435,436,144,437,437,437,437,437,8,435,436,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,144,126,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,144,0,144,144,437,144,144,8,435,144,144,144,144,144,8,435,436,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,0,144,485,486,485],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,3],[1,4],[[1,5],6],[[1,5],7],[1,8],[[1,5],9],[1,10],[1,11],[1,10],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[1,13],[1,14],[1,15],[1,16],[1,17],[1,18],[1,19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-4,[[21,[-1,-2,-3]]],[],22,23,[[25,[[24,[-1,-2,-3]]]]]],0,[-4,[[26,[-4,-1,-2,-3]]],[],[],27,[[28,[-1,-2,-3]]]],0,[[-1,5,-3],[[29,[-2,-4,-5]]],[[25,[30]]],[],[[32,[5],[[31,[-2]]]]],[33,34],35],[[[36,[-1,-2,-3,-4,-5]]],[[38,[37]]],[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[40,41],[1,1],[[-1,-2],41,[],[]],[-4,[[0,[-1,-2,-3]]],[],[],23,[[43,[],[[42,[[24,[-1,-2,-3]]]]]]]],0,0,0,[[[44,[-1]],45,[46,[-1]],-3],[[47,[-1,-2,-4,-5]]],[48,49],[],[[32,[-1],[[31,[-2]]]]],[50,51],35],[-4,[[24,[-1,-2,-3]]],[],[],23,[[52,[-1,-2,-3]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-4,[[53,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],0,[[30,55],1],[[30,55,-1],1,[[57,[55],[[31,[56]]]]]],[[],1],[40],[40,58],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[36,[-1,-2,-3,-4,-5]],37],41,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[[40,60],[[62,[61]]]],[[40,63],[[62,[61]]]],[1,3],[1,4],[1,2],[1,64],[1,64],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1,10],[1,8],[1,10],[[40,60,[46,[64]],65],41],[[40,63,66,65],41],[[40,38],41],[[[67,[-1,-2,-3]],37,-3,-2,68,69,70,65],41,[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,-3,-2,68,69,70,65],41,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[[40,71],41],[[40,65,-1],41,72],[59,41],[59,41],[59,41],[59,41],[[1,1],5],[1,56],[[40,73,64,65],41],[[40,73,64,65],41],[[40,74,-1],41,[[25,[75]]]],[[40,76,73,64,65],41],[[1,77],[[79,[41,78]]]],[[1,77],[[79,[41,78]]]],[[],[[80,[-1]]],[]],[[],[[80,[-1]]],[]],[1,2],[1,4],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[81,[-2]]],[[25,[58]]],82],[-1,83,[[25,[84]]]],[[1,5],10],[[1,5],6],[1,3],[1,4],[1,16],[1,11],[[1,5],7],[1,8],[1,2],[[1,5],9],[[1,5],10],[1,85],[1,[[46,[86]]]],0,[-2,[[87,[-1]]],[],[[25,[-1]]]],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-5,[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[43,[],[[42,[[41,[-1,[24,[-2,-3,-4]]]]]]]]]],0,[[[67,[-1,-2,-3]],37,-3,94],95,[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,-3,94],95,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[[-1,-6],[[36,[-2,-3,-4,-1,-5]]],39,[],[],[],[[25,[[24,[-2,-3,-4]]]]],[[32,[-1],[[31,[-5]]]]]],[[40,[98,[[97,[96]]]]],41],[-4,[[0,[-1,-2,-3]]],[],[],23,[[25,[[24,[-1,-2,-3]]]]]],[[[67,[-1,-2,-3]],37,69,70,65,-3],99,[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,69,70,65,-3],99,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[-4,[[67,[-1,-2,-3]]],[],[],23,[[32,[62],[[31,[[24,[-1,-2,-3]]]]]]]],[[-1,-6],[[36,[-2,-3,-4,-1,-5]]],39,[],[],[],[[25,[[24,[-2,-3,-4]]]]],[[32,[-1],[[31,[-5]]]]]],[[[67,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],65],103,[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,100,69,70,-3,101,[102,[-1]],65],103,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[[[52,[],[[104,[-1]],[105,[-2]]]],-1,106],41,107,[]],[[[52,[],[[104,[-1]],[105,[-2]]]],-1,106],41,107,[]],[[[67,[-1,-2,-3]],37,69,-3,106],41,[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,69,-3,106],41,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],0,[[[67,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[1,55],0,0,[[-2,[46,[-1]],-4],[[109,[-1,-3,-5,-6]]],[110,93],[[25,[[98,[[97,[-1]]]]]]],[],[[32,[-1],[[31,[-3]]]]],[111,112,51,54],35],[1,[[46,[86]]]],[1,64],[1,64],[1,3],0,[[[114,[113]],113],[[115,[-1]]],116],0,0,[[-1,-2,[46,[-2]],-4],[[117,[-3,-5,-6]]],[[25,[30]]],[92,118],49,[[57,[-2],[[31,[-3]]]]],119,35],0,[-4,[[67,[-1,-2,-3]]],[],[],23,[[32,[62],[[31,[[24,[-1,-2,-3]]]]]]]],[-4,[[0,[-1,-2,-3]]],[],[],23,[[43,[],[[42,[[24,[-1,-2,-3]]]]]]]],0,0,0,0,0,[-4,[[120,[-1,-2,-3]]],[],112,23,[[25,[[24,[-1,-2,-3]]]]]],[1,64],[1,64],0,[-2,[[121,[-1,-2]]],[],[[122,[-1]]]],[[[67,[-1,-2,-3]]],[[62,[84]]],[],[],23],[[[36,[-1,-2,-3,-4,-5]]],[[62,[84]]],[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[[[36,[-1,-2,-3,-4,-5]]],[[62,[84]]],[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],0,[[[114,[-1]],-1,-3],[[123,[-1,-2,-4]]],[92,[124,[96]],125],49,[[32,[-1],[[31,[-2]]]]],126],0,[[[67,[-1,-2,-3]]],127,[],[],23],[[[36,[-1,-2,-3,-4,-5]]],127,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],0,0,[-1,[[128,[-2]]],[[25,[60]]],129],[[[67,[-1,-2,-3]]],130,[],[],23],[[[36,[-1,-2,-3,-4,-5]]],130,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],0,[-1,[[131,[-2,-3]]],110,34,35],0,[[[132,[-1]]],[[134,[133,-2,-3,-1]]],35,49,135],0,[[45,45],[[136,[-1,-2,-3]]],49,50,35],0,[[-1,-4],[[0,[-2,-1,-3]]],[],[],23,[[25,[[24,[-2,-1,-3]]]]]],[-1,-2,[],[]],[-1,137,[]],[-1,30,[]],0,[[-1,5,-3],[[138,[-2,-4,-5]]],[[25,[[46,[30]]]]],[],[[32,[5],[[31,[-2]]]]],139,35],0,[[-4,-5,140],[[141,[-1,-2,-3]]],[],[54,34],35,[[25,[[24,[-1,-2,-3]]]]],110],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[52,[],[[104,[-1]],[105,[-2]]]],-1,-2],[[46,[-3]]],107,[],[]],[1,64],[1,64],[-1,[[81,[-2]]],[[25,[58]]],82],0,[[[114,[-1]],-1,-3],[[144,[-1,-2,-4]]],[92,[124,[96]],125],49,[[32,[-1],[[31,[-2]]]]],126],[-1,83,[[25,[84]]]],[[[52,[],[[104,[-1]],[105,[-2]]]],-1],[[24,[-2,-3,-4]]],107,[],[],[]],[[40,65,-1],41,[[57,[40]]]],[[40,145,-1],41,[[57,[40]]]],0,0,0,0,0,[[[22,[],[[146,[-1]]]],-1],3,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[21,[-1,-2,-3]]],[[38,[37]]],49,22,23],[3,3],[147,147],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],3],[[],147],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[21,[-1,-2,-3]],37],41,49,22,23],[[[22,[],[[146,[-1]]]],-1],3,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,65,70,5,-2,-3],3,23,22,[[57,[],[[31,[147]]]]]],[[[21,[-1,-2,-3]],37,-3,-2,68,69,70,65],41,49,22,23],[59,41],[59,41],[59,41],[[147,147],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[3,77],[[79,[41,78]]]],[[147,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[21,[-1,-2,-3]],-4],[[21,[-1,-2,-3]]],[],22,23,[[25,[84]]]],[[[22,[],[[146,[-1]]]],-1],3,107],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[94,84,84,149,-1],95,[[57,[94],[[31,[95]]]]]],[[[21,[-1,-2,-3]],37,-3,94],95,49,22,23],[[69,70,5],99],[[[21,[-1,-2,-3]],37,69,70,65,-3],99,49,22,23],[-4,[[21,[-1,-2,-3]]],[],22,23,[[25,[[24,[-1,-2,-3]]]]]],[[],147],[[[21,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],65],103,49,22,23],[[[21,[-1,-2,-3]],-1],[[21,[-1,-2,-3]]],[],22,23],[[[21,[-1,-2,-3]],[46,[-1]]],[[21,[-1,-2,-3]]],[],22,23],[[[21,[-1,-2,-3]],37,69,-3,106],41,49,22,23],[[[21,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],49,22,23],[[[21,[-1,-2,-3]],-4],[[21,[-1,-2,-3]]],[],22,23,[[25,[149]]]],[[[22,[],[[146,[-1]]]],-1],3,107],0,0,[[[21,[-1,-2,-3]]],[[62,[84]]],49,22,23],[[[21,[-1,-2,-3]]],127,49,22,23],[[[21,[-1,-2,-3]],-4],[[21,[-1,-2,-3]]],[],22,23,25],[[[21,[-1,-2,-3]]],130,49,22,23],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[100,69,70,[102,[-1]],[46,[-1]],-2],103,49,[[57,[],[[31,[147]]]]]],[[[21,[-1,-2,-3]],-4],[[21,[-1,-2,-3]]],[],22,23,[[25,[84]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[150,73],[[73,113],151],[152,41],[153,153],[154,154],[151,151],[155,155],[156,156],[157,157],[158,158],[159,159],[160,160],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],152],[[],154],[[],155],[[],156],[[],157],[[],158],[[],160],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[27,[],[[161,[-1]]]],[38,[-1]]],41,[]],[[[28,[],[[104,[-1]]]],-1,-2,-3,65,70],38,107,27,[]],[[152,40,62,-1],162,[[57,[150]]]],[[[26,[-4,-1,-2,-3]],37,-3,-2,68,69,70,65],41,[],[],27,[[28,[-1,-2,-3]]]],[[160,-1],41,[[163,[151,64]]]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[153,153],5],[[159,159],5],0,0,[[150,151,-1],41,[[25,[154]]]],[[150,73,62,-1],41,[[25,[154]]]],[[150,-1],41,[[25,[160]]]],[[152,77],[[79,[41,78]]]],[[153,77],[[79,[41,78]]]],[[154,77],[[79,[41,78]]]],[[151,77],[[79,[41,78]]]],[[155,77],[[79,[41,78]]]],[[156,77],[[79,[41,78]]]],[[157,77],[[79,[41,78]]]],[[158,77],[[79,[41,78]]]],[[159,77],[[79,[41,78]]]],[[160,77],[[79,[41,78]]]],[[[26,[-4,-1,-2,-3]],77],148,164,164,[27,164],[[28,[-1,-2,-3]],164]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[165,153],[-1,-1,[]],[64,154],[-1,-1,[]],[165,154],[153,154],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[64,159],[153,159],[-1,-1,[]],[45,160],[-1,-1,[]],[30,160],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[150,113],[[[26,[-4,-1,-2,-3]],-5],[[26,[-4,-1,-2,-3]]],[],[],27,[[28,[-1,-2,-3]]],[[25,[84]]]],0,[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[150,162],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[26,[-4,-1,-2,-3]],37,-3,94],95,[],[],27,[[28,[-1,-2,-3]]]],[[73,73],151],0,0,0,0,[[[28,[],[[104,[-1]]]],-1,65,70],99,107],[[[28,[],[[104,[-1]]]],-1,65,70],99,107],[[[26,[-4,-1,-2,-3]],37,69,70,65,-3],99,[],[],27,[[28,[-1,-2,-3]]]],[[40,62],150],[[],152],[-1,151,[[57,[166]]]],[-4,[[26,[-4,-1,-2,-3]]],[],[],27,[[28,[-1,-2,-3]]]],0,[[[26,[-4,-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],65],103,[],[],27,[[28,[-1,-2,-3]]]],[153,167],0,0,[151,168],[[73,62],151],[[150,113],41],0,[[150,-1],41,[[25,[113]]]],[[150,-1],41,[[25,[145]]]],0,0,[150,62],[[[26,[-4,-1,-2,-3]]],[[62,[84]]],[],[],27,[[28,[-1,-2,-3]]]],0,[[[26,[-4,-1,-2,-3]]],127,[],[],27,[[28,[-1,-2,-3]]]],0,[[150,151,-1],41,[[25,[155]]]],0,0,[[[26,[-4,-1,-2,-3]]],130,[],[],27,[[28,[-1,-2,-3]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[151,[170,[113,169,169]]],151],[[150,145],41],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[28,[],[[104,[-1]]]],-1,171,65,70],[[41,[103,[46,[-2]]]]],107,[]],[[[28,[],[[104,[-1]]]],-1,171,65,70],[[41,[103,[46,[-2]]]]],107,[]],0,[150,113],[[[26,[-4,-1,-2,-3]],-5],[[26,[-4,-1,-2,-3]]],[],[],27,[[28,[-1,-2,-3]]],[[25,[84]]]],0,[[150,65,-2],-1,[],[[57,[150],[[31,[-1]]]]]],[[155,64],155],[[155,156],155],[[155,157],155],[[150,-2],-1,[],[[57,[150],[[31,[-1]]]]]],[[155,113],155],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[103,103],[171,171],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[[103,103],5],[[171,171],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[103,77],[[79,[41,78]]]],[[171,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[103,103],103],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[172,172],[[-1,-2],41,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[59,41],[[172,172],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[172,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[165,113,64],165],[[165,-1],165,[[43,[],[[42,[173]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[165,165],[167,167],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],0,[[165,165],5],[[167,167],5],[[165,77],[[79,[41,78]]]],[[167,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,5,[]],[[73,73],165],[[174,65],167],[165,167],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],0,[[166,175],41],[[166,73,73,113],41],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[166,73,73,73],41],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[166,151],0,[[166,73,113],41],[175,175],[[-1,-2],41,[],[]],[166,41],[-1,-2,[],[]],[-1,-2,[],[]],[[],166],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[[166,176],41],0,[[175,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[166,73],41],[[166,73],41],[[],166],[[166,73,73],41],0,[[166,73,62],41],0,[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[176,176],[[-1,-2],41,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[59,41],0,0,[[176,77],[[79,[41,78]]]],[175,176],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[177,178],[168,179],[180,181],[[168,182],[[97,[113]]]],[[179,182],[[97,[113]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],183],[[],[[185,[184]]]],[180,186],[59,187],[180,41],[188,188],[177,177],[178,178],[[[189,[-1,-2]]],[[189,[-1,-2]]],49,49],[168,168],[179,179],[180,180],[181,181],[[[190,[-1]]],[[190,[-1]]],49],[191,191],[192,192],[193,193],[194,194],[195,195],[196,196],[197,197],[182,182],[198,198],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],188],[[],168],[[],180],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[188,188],5],[[[189,[-1,-2]],[189,[-1,-2]]],5,93,93],[[192,192],5],[[193,193],5],[[194,194],5],[[195,195],5],[[196,196],5],[[197,197],5],[[182,182],5],[[198,198],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[177,198],[[189,[182,197]]]],[[178,198],[[189,[182,197]]]],[[[190,[-1]],198],[[189,[-1,41]]],[]],[[191,198],[[189,[182,197]]]],[[177,[97,[-1]],[97,[-2]]],[[199,[-1,-2]]],[],[]],[168,[[46,[[41,[[200,[113,169]],[97,[113]]]]]]]],[179,[[46,[[41,[[200,[113,169]],[97,[113]]]]]]]],[[188,77],[[79,[41,78]]]],[[177,77],[[79,[41,78]]]],[[178,77],[[79,[41,78]]]],[[[189,[-1,-2]],77],[[79,[41,78]]],164,164],[[168,77],[[79,[41,78]]]],[[179,77],[[79,[41,78]]]],[[180,77],[[79,[41,78]]]],[[181,77],[[79,[41,78]]]],[[192,77],[[79,[41,78]]]],[[193,77],[[79,[41,78]]]],[[194,77],[[79,[41,78]]]],[[195,77],[[79,[41,78]]]],[[196,77],[[79,[41,78]]]],[[197,77],[[79,[41,78]]]],[[182,77],[[79,[41,78]]]],[[198,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[177,178],[-1,-1,[]],[[[189,[-1,-2]]],-1,49,[]],[-1,-1,[]],[-1,-1,[]],[168,179],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,168,[[43,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]]],[-1,180,[[43,[],[[42,[179]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,197],[59,182],[[201,182],[[97,[113]]]],[[202,182],[[97,[113]]]],[[168,182],[[97,[113]]]],[[179,182],[[97,[113]]]],[[180,59],179],[[181,59],179],[[203,197],[[200,[113,169]]]],[[168,197],[[200,[113,169]]]],[[179,197],[[200,[113,169]]]],[[[190,[-1]],197],[[200,[113,169]]],204],[[203,182],[[200,[113,169]]]],[[168,182],[[200,[113,169]]]],[[179,182],[[200,[113,169]]]],[[[190,[-1]],182],[[200,[113,169]]],204],[[[189,[-1,-2]],-3],41,39,39,205],[[196,-1],41,205],[[197,-1],41,205],[[182,-1],41,205],[[198,-1],41,205],[168,206],[179,206],[[[190,[-1]]],207,[]],[[168,197],[[200,[113,169]]]],[[168,182],[[200,[113,169]]]],[[179,197],[[200,[113,169]]]],[[179,182],[[200,[113,169]]]],[[[190,[-1]],182],-1,[]],[180,[[208,[59]]]],[181,[[208,[59]]]],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[177,209],[168,210],[179,210],[179,210],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[189,[-1,-2]]],5,[],[]],[179,5],[180,5],[181,5],[[195,211],5],[194,5],[[195,211],5],[194,5],[177,209],[178,209],[168,210],[179,210],[180,212],[181,212],[[[190,[-1]]],[[213,[-1]]],[]],[191,214],[168,215],[179,215],0,0,[168,[[46,[[41,[[200,[113,169]],[97,[113]]]]]]]],[179,[[46,[[41,[[200,[113,169]],[97,[113]]]]]]]],[180,59],[181,59],0,[[[97,[113]],59],202],[[],168],[[],180],[[177,198],[[46,[198]]]],[[178,198],[[46,[198]]]],[[177,198],198],[[178,198],198],[201,59],[202,59],[168,59],[179,59],[197,59],[182,59],[194,194],0,0,[[[190,[-1]]],[[216,[-1]]],204],[[177,[97,[-1]],[97,[-2]]],[[217,[-1,-2]]],[],[]],0,0,0,[204,[[200,[113,169]]]],[[180,59,59,59],41],[168,[[219,[218]]]],[179,[[219,[218]]]],[[],[[220,[184]]]],0,[[[189,[-1,-2]]],-1,49,[]],[194,113],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[197,59],[182,59],[198,59],0,[[[189,[[200,[113,169]],[200,[113,169]]]],-1],[[189,[[200,[113,169]],[200,[113,169]]]]],[[221,[113]]]],[[168,-1],168,[[221,[113]]]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[59,168],[[59,59,59],180],[[[189,[-1,-2]]],[[189,[[200,[113,169]],[200,[113,169]]]]],204,204],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[222,[200,[113,169]],113,196,[97,[113]]],41],[[[185,[-1]],[200,[113,169]],113,196],41,222],[[222,[200,[113,169]],[223,[113,169]],[224,[113]],196,[97,[113]]],41],[[[185,[-1]],[200,[113,169]],[223,[113,169]],[224,[113]],196],41,222],[[222,[225,[113]],[97,[113]]],[[41,[182,182]]]],[[[185,[-1]],[225,[113]]],[[41,[182,182]]],222],[[222,[200,[113,169]],[97,[113]]],182],[[[185,[-1]],[200,[113,169]]],182,222],[[222,[190,[[200,[113,169]]]],[97,[113]]],41],[[226,[190,[[200,[113,169]]]]],41],[[[185,[-1]],[190,[[200,[113,169]]]]],41,222],[[222,[227,[113,169]],196,[97,[113]]],41],[[[185,[-1]],[227,[113,169]],196],41,222],[[222,[227,[113,169]],228,196,[97,[113]]],41],[[[185,[-1]],[227,[113,169]],228,196],41,222],[[[220,[-1]],[200,[113,169]],[223,[113,169]],[224,[113]],[224,[113]]],41,222],[[226,[223,[113,169]],[224,[113]],188,[200,[113,169]]],41],[[[220,[-1]],[223,[113,169]],[224,[113]],188,[200,[113,169]]],41,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[222,[200,[113,169]],[97,[113]]],182],[[[229,[-1]],[200,[113,169]],[97,[113]]],182,222],[[[230,[-1,-2]],[200,[113,169]],[97,[113]]],182,222,[[221,[113]]]],[[[185,[-1]],[200,[113,169]]],182,222],[[[185,[-1]],[200,[113,169]],[97,[113]]],182,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[[232,[],[[231,[-1]]]]],-1,[]],[[[229,[-1]]],[],232],[[[229,[-1]]],[],[232,222]],[[[230,[-1,-2]]],[],232,[]],[[[220,[-1]]],[],[232,222]],[[[220,[-1]]],[],[222,232]],[[[185,[-1]]],[],[222,232]],[[[185,[-2]]],-1,[],[[232,[],[[231,[-1]]]],222]],[228,228],[[[185,[-1]]],[[185,[-1]]],[49,222]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[226,41],[222,41],[[[220,[-1]]],41,222],[[[220,[-1]]],41,222],[[[185,[-1]]],41,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[222,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]],[200,[113,169]],[200,[113,169]]],41],[[[229,[-1]],[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222],[[[230,[-1,-2]],[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222,[[221,[113]]]],[[[220,[-1]],[200,[113,169]],[200,[113,169]],[200,[113,169]]],182,222],[[[220,[-1]],[200,[113,169]],[200,[113,169]],[200,[113,169]]],41,222],[[[185,[-1]],[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222],[[[185,[-1]],[200,[113,169]],[200,[113,169]],[200,[113,169]]],182,222],[[[220,[-1]]],[[200,[113,169]]],222],[[],228],[[],[[185,[-1]]],[222,107]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[[222,5],41],[[[229,[-1]],5],41,222],[[[230,[-1,-2]],5],41,222,[[221,[113]]]],[[[185,[-1]],5],41,222],[[[185,[-1]],5],41,222],[[228,228],5],[[[185,[-1]],[185,[-1]]],5,[93,222]],[[222,[189,[[41,[[200,[113,169]],[97,[113]]]],[200,[113,169]]]]],41],[[[185,[184]],[97,[179]]],41],[[222,113],[[229,[222]]]],[[[220,[-1]],113],[[220,[[229,[-1]]]]],222],[[[185,[-1]],113],[[185,[[229,[-1]]]]],222],[[228,77],[[79,[41,78]]]],[[228,77],[[79,[41,78]]]],[[[185,[-1]],77],[[79,[41,78]]],[164,222]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[185,[-1]],-2],41,[39,222],205],[[226,113],41],[[[220,[-1]],113],41,222],[[],59],[[],59],[[],59],[[],59],[[],59],[[[185,[-1]]],-1,222],[[[185,[-1]]],-1,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[185,[-1]]],-1,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[222,[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]]],41],[[[229,[-1]],[200,[113,169]],[97,[113]]],182,222],[[[230,[-1,-2]],[200,[113,169]],[97,[113]]],182,222,[[221,[113]]]],[[[220,[-1]],[200,[113,169]]],182,222],[[[220,[-1]],[200,[113,169]]],41,222],[[[185,[-1]],[200,[113,169]]],182,222],[[[185,[-1]],[200,[113,169]],[97,[113]]],182,222],[[226,[200,[113,169]]],41],[[[220,[-1]],[200,[113,169]]],182,222],[[[220,[-1]],[200,[113,169]]],41,222],[[-1,113],[[229,[-1]]],222],[[-1,-2],[[230,[-1,-2]]],[],[]],[-1,[[220,[-1]]],222],[113,228],[[],[[185,[-1]]],[107,222]],[222,59],[[[229,[-1]]],59,222],[[[230,[-1,-2]]],59,222,[[221,[113]]]],[[[185,[-1]]],59,222],[[228,228],[[46,[233]]]],[[222,[189,[[200,[113,169]],[200,[113,169]]]],[97,[113]]],41],[[[185,[-1]],[189,[[200,[113,169]],[200,[113,169]]]]],41,222],[[222,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]],[200,[113,169]]],41],[[[229,[-1]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222],[[[230,[-1,-2]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222,[[221,[113]]]],[[[220,[-1]],[200,[113,169]],[200,[113,169]]],41,222],[[[220,[-1]],[200,[113,169]],[200,[113,169]]],182,222],[[[185,[-1]],[200,[113,169]],[200,[113,169]]],182,222],[[[185,[-1]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222],[[226,[223,[113,169]],[224,[113]],188,[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]],[224,[113]],188,[223,[113,169]]],41,222],[[226,[223,[113,169]],[223,[113,169]],[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]],[223,[113,169]],[223,[113,169]]],41,222],[[226,113],41],[[[220,[-1]],113],41,222],[[226,[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]]],41,222],[[226,[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]]],41,222],[[226,[223,[113,169]],[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]],[223,[113,169]]],41,222],[[226,113],41],[[[220,[-1]],113],41,222],[[222,59,59],41],[[226,59,59],41],[[[229,[-1]],59,59],41,222],[[[230,[-1,-2]],59,59],41,222,[[221,[113]]]],[[[220,[-1]],59,59],41,222],[[[220,[-1]],59,59],41,222],[[[185,[-1]],59,59],41,222],[[[185,[-1]],59,59],41,222],[[[229,[-1]],113],41,222],[[[230,[-1,-2]],-2],41,[],[]],[[[220,[[230,[-1,-2]]]],-2],41,222,[[221,[113]]]],[[226,[200,[113,169]],[200,[113,169]]],41],[[[220,[-1]],[200,[113,169]],[200,[113,169]]],41,222],[[226,[200,[113,169]]],41],[[[220,[-1]],[200,[113,169]]],41,222],[[226,[223,[113,169]],[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]],[223,[113,169]]],41,222],[[226,[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]]],41,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,137,[]],[-1,30,[]],0,0,[[222,-1],[[230,[222,-1]]],[[221,[113]]]],[[[220,[-1]],-2],[[220,[[230,[-1,-2]]]]],222,[[221,[113]]]],[[[185,[-1]],-2],[[185,[[230,[-1,-2]]]]],222,[[221,[113]]]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[226,113],41],[[[220,[-1]],113],41,222],[[59,59],[[185,[-1]]],[107,222]],[222,[[220,[222]]]],[[[185,[-1]]],[[220,[-1]]],222],[-1,[[185,[-1]]],222],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[183,182],198],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[183,177],[[[217,[-1,-2]]],[[217,[-1,-2]]],49,49],[183,183],[[[199,[-1,-2]]],[[199,[-1,-2]]],49,49],[209,209],[[[234,[-1,-2]]],[[234,[-1,-2]]],49,49],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[183,197,197,182],198],[[],183],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[[183,5],[[46,[198]]]],[[[217,[-1,-2]]],[[199,[-1,-2]]],[],[]],[[[217,[-1,-2]],77],[[79,[41,78]]],164,164],[[183,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[217,[-1,-2]],197],[[200,[113,169]]],204,204],[[[217,[-1,-2]],182],[[200,[113,169]]],204,204],[[[217,[-1,-2]],197],-2,[],[]],[[[217,[-1,-2]],182],-1,[],[]],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[217,[-1,-2]]],209,[],[]],[[183,182],198],[[],183],[[[199,[-1,-2]]],[[46,[[189,[-1,-2]]]]],[],[]],[209,[[46,[[189,[182,197]]]]]],[[[234,[-1,-2]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],204,204],[[[199,[-1,-2]]],[[234,[-1,-2]]],204,204],[[183,197,182],198],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[59,183],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[235,[-1]]],-1,236],0,[[[237,[-1]]],[[225,[-1]]],236],[[[237,[-1]]],[[225,[-1]]],236],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[224,[-1]],[224,[-1]]],[[224,[-1]]],[[238,[],[[31,[]]]]]],[[[224,[-1]],[224,[-1]]],[[224,[-1]]],[92,[238,[],[[31,[]]]]]],[[[224,[-1]],[224,[-1]]],41,239],[[[241,[],[[240,[-1]]]],-1],[[241,[],[[240,[-1]]]]],236],[[[242,[-1]],-1],[[242,[-1]]],236],[[[242,[-1]],-1],[[242,[-1]]],236],[[[243,[-1]],-1],[[243,[-1]]],236],[[[243,[-1]],-1],[[243,[-1]]],236],[[[225,[-1]],-1],[[225,[-1]]],236],[[[225,[-1]],-1],[[225,[-1]]],236],[[[244,[-1]],-1],[[244,[-1]]],236],[[[244,[-1]],-1],[[244,[-1]]],236],0,[[[224,[-1]],[224,[-1]]],[[224,[-1]]],[[245,[],[[31,[]]]],[246,[],[[31,[]]]],[238,[],[[31,[]]]],[247,[],[[31,[]]]],248,249,92]],[[],-1,250],[[[224,[-1]],[224,[-1]],-1],5,[]],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[[235,[-1]]],-1,236],0,[[[237,[-1]]],[[225,[-1]]],236],[[[243,[-1]]],[[225,[-1]]],236],[[[244,[-1]]],[[225,[-1]]],236],[[[237,[-1]]],[[225,[-1]]],236],[[[241,[],[[240,[-1]]]],-1],[[241,[],[[240,[-1]]]]],236],[[[242,[-1]],-1],[[242,[-1]]],236],[[[242,[-1]],-1],[[242,[-1]]],236],[[[243,[-1]],-1],[[243,[-1]]],236],[[[243,[-1]],-1],[[243,[-1]]],236],[[[225,[-1]],-1],[[225,[-1]]],236],[[[225,[-1]],-1],[[225,[-1]]],236],[[[244,[-1]],-1],[[244,[-1]]],236],[[[244,[-1]],-1],[[244,[-1]]],236],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[242,[-1]]],[[227,[-1,169]]],236],[[[243,[-1]]],[[227,[-1,169]]],236],[[[225,[-1]]],[[227,[-1,169]]],236],[[[244,[-1]]],[[227,[-1,169]]],236],[[[237,[-1]]],[[227,[-1,169]]],236],[[[242,[-1]]],[[41,[-1,-1]]],236],[[[243,[-1]]],[[41,[-1,-1]]],236],[[[244,[-1]]],[[41,[-1,-1]]],236],[[[237,[-1]]],[[41,[-1,-1]]],236],[[[242,[-1]]],[[41,[-1,-1]]],236],[[[243,[-1]]],[[41,[-1,-1]]],236],[[[244,[-1]]],[[41,[-1,-1]]],236],[[[237,[-1]]],[[41,[-1,-1]]],236],[[[244,[-1]]],[[237,[-1]]],236],[[[235,[-1]]],-1,236],0,[[[237,[-1]]],[[225,[-1]]],236],[[[224,[-1]]],[[224,[-2]]],[251,92],251],[[[237,[-1]]],[[225,[-1]]],236],0,[[[200,[-1,169]],-1],[[242,[-1]]],236],[[[225,[-1]],[227,[-1,169]]],[[46,[[225,[-1]]]]],236],[[[225,[-1]],[208,[-1]]],[[46,[[225,[-1]]]]],236],[[[225,[-1]],[208,[-1]]],[[46,[[225,[-1]]]]],236],[[[242,[-1]]],[[242,[-1]]],49],[[[252,[-1]]],[[252,[-1]]],49],[[[243,[-1]]],[[243,[-1]]],49],[[[225,[-1]]],[[225,[-1]]],49],[[[253,[-1]]],[[253,[-1]]],49],[[[235,[-1]]],[[235,[-1]]],49],[[[244,[-1]]],[[244,[-1]]],49],[[[237,[-1]]],[[237,[-1]]],49],[[[224,[-1]]],[[224,[-1]]],49],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[[225,[-1]],[200,[-1,169]]],[[200,[-1,169]]],236],[[[244,[-1]],[200,[-1,169]]],-1,236],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[237,[-1]],[200,[-1,169]]],5,236],[[[225,[-1]],[225,[-1]]],5,236],0,0,0,0,[[[243,[-1]],[243,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[243,[-1]],[243,[-1]]],[[254,[[41,[-1,-1]]]]],236],[[],[[224,[-1]]],107],[-1,[[224,[-1]]],255],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[241,[],[[240,[-1]]]],-1],[[223,[-1,169]]],236],[[[242,[-1]],-1],[[223,[-1,169]]],236],[[[243,[-1]],-1],[[223,[-1,169]]],236],[[[243,[-1]],-1],[[223,[-1,169]]],236],[[[225,[-1]],-1],[[223,[-1,169]]],236],[[[244,[-1]],-1],[[223,[-1,169]]],236],[[[244,[-1]],-1],[[223,[-1,169]]],236],[[[225,[-1]],[200,[-1,169]]],-1,236],[[[253,[-1]],[200,[-1,169]]],-1,236],[[[235,[-1]],[200,[-1,169]]],-1,236],[[[244,[-1]],[200,[-1,169]]],-1,236],[[[224,[-1]],[224,[-1]]],-1,[[256,[],[[31,[]]]]]],[[[224,[-1]],-1],[[224,[-1]]],[[256,[],[[31,[]]]]]],[[[224,[-1]],-1],41,257],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[243,[-1]],-1,[200,[-1,169]]],[[243,[-1]]],236],[[[244,[-1]],-1,[200,[-1,169]]],[[244,[-1]]],236],[[[243,[-1]],-1,[200,[-1,169]],-1],[[243,[-1]]],236],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[242,[-1]]],[[224,[-1]]],236],[236,236],[[[242,[-1]],[242,[-1]]],5,93],[[[252,[-1]],[252,[-1]]],5,93],[[[243,[-1]],[243,[-1]]],5,93],[[[225,[-1]],[225,[-1]]],5,93],[[[235,[-1]],[235,[-1]]],5,93],[[[244,[-1]],[244,[-1]]],5,93],[[[237,[-1]],[237,[-1]]],5,93],[[[224,[-1]],[224,[-1]]],5,93],[[[253,[-1]]],[[235,[-1]]],236],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[[242,[-1]]],[[227,[-1,169]]],236],[[[243,[-1]]],[[227,[-1,169]]],236],[[[244,[-1]]],[[227,[-1,169]]],236],[[[242,[-1]]],[[41,[-1,-1]]],236],[[[243,[-1]]],[[41,[-1,-1]]],236],[[[244,[-1]]],[[41,[-1,-1]]],236],[[[242,[-1]]],[[41,[-1,-1]]],236],[[[243,[-1]]],[[41,[-1,-1]]],236],[[[244,[-1]]],[[41,[-1,-1]]],236],[[[243,[-1]]],[[41,[[235,[-1]],[235,[-1]]]]],236],[[[244,[-1]]],[[41,[[235,[-1]],[235,[-1]]]]],236],0,[[[242,[-1]],-1],[[258,[-1]]],236],[[[243,[-1]],-1],[[259,[-1]]],236],[[[244,[-1]],-1],[[260,[-1]]],236],[[[244,[-1]],-1],[[261,[-1]]],236],[[[244,[-1]],-1],-1,236],[[[241,[],[[240,[-1]]]]],[[241,[],[[240,[-1]]]]],236],[[[242,[-1]]],[[242,[-1]]],236],[[[242,[-1]]],[[242,[-1]]],236],[[[243,[-1]]],[[243,[-1]]],236],[[[243,[-1]]],[[243,[-1]]],236],[[[225,[-1]]],[[225,[-1]]],236],[[[225,[-1]]],[[225,[-1]]],236],[[[244,[-1]]],[[244,[-1]]],236],[[[244,[-1]]],[[244,[-1]]],236],[[[242,[-1]],77],[[79,[41,78]]],164],[[[252,[-1]],77],[[79,[41,78]]],164],[[[243,[-1]],77],[[79,[41,78]]],164],[[[225,[-1]],77],[[79,[41,78]]],164],[[[253,[-1]],77],[[79,[41,78]]],164],[[[235,[-1]],77],[[79,[41,78]]],164],[[[244,[-1]],77],[[79,[41,78]]],164],[[[237,[-1]],77],[[79,[41,78]]],164],[[[224,[-1]],77],[[79,[41,78]]],164],[[[242,[-1]],-2],41,236,[[163,[[243,[-1]]]]]],[[[252,[-1]],-2],41,236,[[163,[[243,[-1]]]]]],[[[242,[-1]],-1,-2],41,236,[[163,[[225,[-1]]]]]],[[[252,[-1]],-1,-2],41,236,[[163,[[225,[-1]]]]]],[[[243,[-1]],-1,-2],41,236,[[163,[[225,[-1]]]]]],[[[244,[-1]],-1,-2],41,236,[[163,[[225,[-1]]]]]],[[[241,[],[[240,[-1]]]],-1,163],41,236],[[[242,[-1]],-1,-2],41,236,[[163,[[225,[-1]],[208,[-1]]]]]],[[[242,[-1]],163],41,236],[[[252,[-1]],-1,-2],41,236,[[163,[[225,[-1]],[208,[-1]]]]]],[[[243,[-1]],163],41,236],[[[243,[-1]],-1,-2],41,236,[[163,[[225,[-1]],[208,[-1]]]]]],[[[225,[-1]],163],41,236],[[[244,[-1]],163],41,236],[[[244,[-1]],-1,-2],41,236,[[163,[[225,[-1]],[208,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[-1]]]],[[[242,[-1]],-2],41,236,[[163,[-1]]]],[[[243,[-1]],-2],41,236,[[163,[-1]]]],[[[242,[-1]],-2],41,236,[[163,[-1]]]],[[[243,[-1]],-2],41,236,[[163,[-1]]]],[[[243,[-1]],-2],41,236,[[163,[[243,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[244,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[[242,[-1]],-2],41,236,[[163,[[244,[-1]]]]]],[[[252,[-1]],-2],41,236,[[163,[[244,[-1]]]]]],[[[243,[-1]],-1,-2],41,236,[[163,[[244,[-1]]]]]],[[[242,[-1]],-2],41,236,[[163,[[244,[-1]],[208,[-1]]]]]],[[[252,[-1]],-2],41,236,[[163,[[244,[-1]],[208,[-1]]]]]],[[[243,[-1]],-1,-2],41,236,[[163,[[244,[-1]],[208,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[[243,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[244,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[[243,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[244,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[],[[224,[-1]]],[249,[238,[],[[31,[]]]]]],[[],[[224,[-1]]],[249,[238,[],[[31,[]]]]]],[[],[[224,[-1]]],[249,[238,[],[[31,[]]]]]],[[[241,[],[[240,[-1]]]]],[[200,[-1,169]]],236],[-1,-1,[]],[[[252,[-1]]],[[242,[-1]]],236],[[[242,[-1]]],[[200,[-1,169]]],236],[[[242,[-1]]],[[200,[-1,169]]],236],[-1,-1,[]],[-1,-1,[]],[[[243,[-1]]],[[200,[-1,169]]],236],[[[243,[-1]]],[[200,[-1,169]]],236],[[[225,[-1]]],[[200,[-1,169]]],236],[-1,-1,[]],[[[225,[-1]]],[[200,[-1,169]]],236],[-1,-1,[]],[-1,-1,[]],[[[244,[-1]]],[[200,[-1,169]]],236],[[[244,[-1]]],[[200,[-1,169]]],236],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],0,0,0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[252,[-1]]],[[242,[-1]]],236],[[[224,[-1]]],-1,[]],[[[242,[-1]],-1],[[224,[-1]]],236],[[[224,[-1]],-2],41,39,205],0,[[[225,[-1]],-1],[[46,[[200,[-1,169]]]]],236],[[[225,[-1]],-1],[[46,[-1]]],236],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[[225,[-1]],[225,[-1]]],[[46,[[200,[-1,169]]]]],236],[[[253,[-1]],[253,[-1]]],[[46,[[200,[-1,169]]]]],236],[[[225,[-1]],[225,[-1]]],[[46,[[41,[-1,-1]]]]],236],[[[225,[-1]],[225,[-1]]],5,236],[[[237,[-1]],[237,[-1]]],5,236],[[[253,[-1]],[227,[-1,169]]],5,236],[[[225,[-1]],[253,[-1]]],5,236],[[[237,[-1]],[225,[-1]]],5,236],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[235,[-1]]],[[235,[-1]]],236],[[[244,[-1]],-1],5,236],[[[224,[-1]]],5,262],[[[235,[-1]]],5,236],[[[243,[-1]],-1],5,236],[[[244,[-1]],-1],5,236],[[[243,[-1]]],5,236],[[[244,[-1]]],5,236],[[[243,[-1]],-1],5,236],[[[252,[-1]]],5,236],[[[235,[-1]]],5,236],[[[243,[-1]]],5,236],[[[244,[-1]]],5,236],[[[243,[-1]]],5,236],[[[244,[-1]]],5,236],0,[[[225,[-1]]],-1,236],[[[244,[-1]]],-1,236],[[[224,[-1]],[224,[-1]],-1],[[224,[-1]]],[[245,[],[[31,[]]]],[246,[],[[31,[]]]],[238,[],[[31,[]]]],[247,[],[[31,[]]]],248,249,92]],[[[225,[-1]],[253,[-1]]],[[46,[[200,[-1,169]]]]],236],[[[225,[-1]],[253,[-1]]],[[46,[-1]]],236],[[[243,[-1]],[253,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[244,[-1]],[253,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[243,[-1]],[253,[-1]]],[[254,[-1]]],236],[[[244,[-1]],[253,[-1]]],[[254,[-1]]],236],[[[243,[-1]],[225,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[244,[-1]],[225,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[243,[-1]],[225,[-1]]],[[254,[[41,[-1,-1]]]]],236],[[[244,[-1]],[225,[-1]]],[[254,[[41,[-1,-1]]]]],236],[[[244,[-1]]],[[46,[-1]]],236],[[[244,[-1]]],[[46,[-1]]],236],0,0,0,0,0,0,0,[[[225,[-1]]],[[200,[-1,169]]],236],0,[[[224,[-1]],-1],[[224,[-1]]],[[247,[],[[31,[]]]]]],[[[224,[-1]],-1],41,263],[[[224,[-1]]],[[224,[-1]]],[[264,[],[[31,[]]]]]],[[-1,-1,-1],[[235,[-1]]],236],[[[235,[-1]]],[[223,[-1,169]]],236],[[[243,[-1]],-1],61,236],[[[235,[-1]],-1],[[235,[-1]]],236],[[[225,[-1]],[253,[-1]]],5,236],[[[225,[-1]],[225,[-1]]],5,236],[[[235,[-1]],[200,[-1,169]]],[[235,[-1]]],236],[[[224,[-1]],[224,[-1]]],[[46,[233]]],125],[[],[[224,[-1]]],[249,[238,[],[[31,[]]]]]],[[-1,-1],[[200,[-1,169]]],[]],0,[[[224,[-1]]],[[224,[-1]]],[[246,[],[[31,[]]]],[245,[],[[31,[]]]],[238,[],[[31,[]]]],265,249,125,92]],[[[235,[-1]],[200,[-1,169]]],[[200,[-1,169]]],236],0,[[[243,[-1]],[244,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[243,[-1]],[244,[-1]]],[[254,[[41,[-1,-1]]]]],236],[-1,[[224,[-1]]],[]],0,0,0,[[[241,[],[[240,[-1]]]],-1],[[200,[-1,169]]],236],[[[242,[-1]],-1],[[200,[-1,169]]],236],[[[242,[-1]],-1],[[200,[-1,169]]],236],[[[243,[-1]],-1],[[200,[-1,169]]],236],[[[243,[-1]],-1],[[200,[-1,169]]],236],[[[225,[-1]],-1],[[200,[-1,169]]],236],[[[225,[-1]],-1],[[200,[-1,169]]],236],[[[244,[-1]],-1],[[200,[-1,169]]],236],[[[244,[-1]],-1],[[200,[-1,169]]],236],[[[242,[-1]],-1],[[223,[-1,169]]],236],[[[225,[-1]],-1],41,236],[[[224,[-1]]],[[224,[-1]]],[[246,[],[[31,[]]]],[245,[],[[31,[]]]],[238,[],[[31,[]]]],265,249,125,92]],[[[253,[-1]],[200,[-1,169]]],-1,236],[[[235,[-1]],[200,[-1,169]]],-1,236],[[[224,[-1]]],[[41,[-1,-1]]],266],[[-1,-1],[[267,[-1,169]]],[]],[[[243,[-1]],-1],[[254,[-1]]],236],[[[225,[-1]],-1],-1,236],[[[243,[-1]],-1],[[254,[-1]]],236],[[[225,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[235,[-1]],-1],[[46,[-1]]],236],[[[225,[-1]],-1],-1,236],[[[235,[-1]],-1],[[46,[-1]]],236],[[[241,[],[[240,[-1]]]],-1],[[41,[[241,[],[[240,[-1]]]],[241,[],[[240,[-1]]]]]]],236],[[[242,[-1]],-1],[[41,[[242,[-1]],[242,[-1]]]]],236],[[[242,[-1]],-1],[[41,[[242,[-1]],[242,[-1]]]]],236],[[[243,[-1]],-1],[[41,[[243,[-1]],[243,[-1]]]]],236],[[[243,[-1]],-1],[[41,[[243,[-1]],[243,[-1]]]]],236],[[[225,[-1]],-1],[[41,[[225,[-1]],[225,[-1]]]]],236],[[[225,[-1]],-1],[[41,[[225,[-1]],[225,[-1]]]]],236],[[[244,[-1]],-1],[[41,[[244,[-1]],[244,[-1]]]]],236],[[[244,[-1]],-1],[[41,[[244,[-1]],[244,[-1]]]]],236],[[[225,[-1]],-1],[[41,[[225,[-1]],[225,[-1]]]]],236],[[[241,[],[[240,[-1]]]],[208,[-1]]],[[241,[],[[240,[-1]]]]],236],[[[242,[-1]],[208,[-1]]],[[242,[-1]]],236],[[[242,[-1]],[208,[-1]]],[[242,[-1]]],236],[[[243,[-1]],[208,[-1]]],[[243,[-1]]],236],[[[243,[-1]],[208,[-1]]],[[243,[-1]]],236],[[[225,[-1]],[208,[-1]]],[[225,[-1]]],236],[[[225,[-1]],[208,[-1]]],[[225,[-1]]],236],[[[244,[-1]],[208,[-1]]],[[244,[-1]]],236],[[[244,[-1]],[208,[-1]]],[[244,[-1]]],236],[[[225,[-1]],[200,[-1,169]]],-1,236],[[[253,[-1]],[200,[-1,169]]],-1,236],[[[244,[-1]],[200,[-1,169]]],-1,236],[[[225,[-1]]],-1,236],0,[[[224,[-1]],[224,[-1]]],[],[[246,[],[[31,[]]]]]],[[[224,[-1]],[224,[-1]]],41,268],[-2,[[224,[-1]]],[238,265],[[269,[],[[42,[[224,[-1]]]]]]]],[-2,[[224,[-1]]],[238,92,265],[[269,[],[[42,[[224,[-1]]]]]]]],0,0,[[[235,[-1]]],[[223,[-1,169]]],236],[[[241,[],[[240,[-1]]]]],[[200,[-1,169]]],236],[[[242,[-1]]],[[200,[-1,169]]],236],[[[242,[-1]]],[[200,[-1,169]]],236],[[[243,[-1]]],[[200,[-1,169]]],236],[[[243,[-1]]],[[200,[-1,169]]],236],[[[225,[-1]]],[[200,[-1,169]]],236],[[[225,[-1]]],[[200,[-1,169]]],236],[[[244,[-1]]],[[200,[-1,169]]],236],[[[244,[-1]]],[[200,[-1,169]]],236],0,0,0,0,[[[252,[-1]]],[[242,[-1]]],236],[[[244,[-1]]],[[243,[-1]]],236],[[[224,[-1]]],-1,255],[[[243,[-1]]],[[243,[113]]],236],[[[225,[-1]]],[[225,[113]]],236],[[[253,[-1]]],[[253,[113]]],236],[[[244,[-1]]],[[244,[113]]],236],[[[224,[-1]]],[[224,[113]]],[251,92]],[[[243,[-1]]],[[243,[270]]],236],[[[225,[-1]]],[[225,[270]]],236],[[[253,[-1]]],[[253,[270]]],236],[[[244,[-1]]],[[244,[270]]],236],[[[224,[-1]]],[[224,[270]]],[251,92]],[[[225,[-1]]],[[253,[-1]]],236],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[243,[-1]]],[[244,[-1]]],236],[[[243,[-1]]],-1,236],[[[242,[-1]]],[[252,[-1]]],236],[[[225,[-1]]],[[223,[-1,169]]],236],0,[[[237,[-1]],-2],[[237,[-1]]],236,[[221,[-1]]]],[[[243,[-1]],-2],[[243,[-1]]],236,[[221,[-1]]]],[[[225,[-1]],-2],[[225,[-1]]],236,[[221,[-1]]]],[[[244,[-1]],-2],[[244,[-1]]],236,[[221,[-1]]]],[[[225,[-1]],[223,[-1,169]]],[[225,[-1]]],236],[[[224,[-1]]],[[46,[[224,[-2]]]]],[251,92],251],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[[],[[224,[-1]]],[249,[238,[],[[31,[]]]]]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,[113,236],[[-1,-1],[[223,[-1,169]]],[]],0,[[[225,[-1]],-1],[[46,[[200,[-1,169]]]]],236],[[[225,[-1]],-1],[[46,[-1]]],236],0,[[[241,[],[[240,[-1]]]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],0,0,0,[[[243,[-1]]],-1,236],[[[244,[-1]]],-1,236],[[[243,[-1]]],-1,236],[[[244,[-1]]],-1,236],0,0,[[[241,[],[[240,[-1]]]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],0,0,0,[[[243,[-1]]],-1,236],[[[244,[-1]]],-1,236],[[[243,[-1]]],-1,236],[[[244,[-1]]],-1,236],[[],[[224,[-1]]],265],0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[59,41],0,[-1,-1,[]],0,[-1,-1,[]],[-1,-2,[],[]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[258,[-1]]],[[46,[[200,[-1,169]]]]],236],0,0,0,0,0,0,[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[[254,[-1]]],[[97,[-1]]],[]],[[[254,[-1]]],[],[]],[[[254,[-1]]],[[97,[-1]]],[]],[271,45],[[[254,[-1]]],[],[]],[[[254,[-1]]],[[97,[-1]]],[]],[271,45],[[[254,[-1]]],[[97,[-1]]],[]],[271,45],[[[254,[-1]]],[[97,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[271,45],[-1,-2,[],[]],[-1,-2,[],[]],[[[254,[-1]]],[[97,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[271,45],[-1,-2,[],[]],[[[254,[-1]]],59,[]],[271,59],[[[254,[-1]]],41,[]],[271,41],[[[254,[-1]]],[[254,[-1]]],49],[[[272,[-1]]],[[272,[-1]]],49],[271,271],[[[273,[-1]]],[[273,[-1]]],49],[[[254,[-1]],[254,[-1]]],41,49],[[271,271],41],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[[254,[-1]],[254,[-1]]],233,274],[[271,271],233],[[[273,[-1]],[273,[-1]]],233,274],[[-1,-2],233,[],[]],[[-1,-2],233,[],[]],[[-1,-2],233,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[254,[-1]]],[]],[[],271],[[[254,[-1]]],[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[271,45],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[254,[-1]]],[],[]],[59,-1,[]],[59,-1,[]],[271,45],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[254,[-1]],-2],[[275,[-1]]],[],[[276,[59]]]],[[[254,[-1]]],41,[]],[59,41],[[[272,[-1]]],41,[]],[59,41],[59,41],[[[275,[-1]]],41,[]],[59,41],[59,41],[[[273,[-1]]],-1,[]],[[[254,[-1]],[97,[-1]]],5,93],[[[254,[-1]],[254,[-1]]],5,93],[[271,271],5],[[271,45],5],[[[273,[-1]],[273,[-1]]],5,93],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[[254,[-1]],-2],41,[],[[43,[],[[42,[-1]]]]]],[[[254,[96]]],[[79,[41,277]]]],[[[254,[-1]],77],[[79,[41,78]]],164],[[[272,[-1]],77],[[79,[41,78]]],164],[[271,77],[[79,[41,78]]]],[[271,77],[[79,[41,78]]]],[[[273,[-1]],77],[[79,[41,78]]],[]],[[[273,[-1]],77],[[79,[41,78]]],[]],[[[278,[-1]]],[[254,[-1]]],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[45,[[79,[271,[273,[45]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[278,[96]]],[[79,[271,279]]]],[-2,[[254,[-1]]],[],[[43,[],[[42,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[45,[[79,[271]]]],[[[254,[-1]],[254,[-1]]],5,125],[[271,271],5],[[271,45],5],[[[254,[-1]],[254,[-1]]],5,125],[[271,45],5],[[271,271],5],[[[254,[-1]],-2],41,39,205],[[271,-1],41,205],[[],59],[[],59],[[],59],[[],59],[[],59],[[[254,[-1]],59,-1],41,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[254,[-1]]],[[79,[[278,[-1]],[254,[-1]]]]],[]],[[[254,[-1]]],[[278,[-1]]],[]],[[[254,[-1]]],[],[]],[[[254,[-1]]],[],[]],[[[254,[-1]]],[[272,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[254,[-1]]],5,[]],[271,5],[[[254,[-1]]],5,[]],[271,5],[[[254,[-1]],[254,[-1]]],5,125],[[271,271],5],[[271,45],5],[[[254,[-1]]],59,[]],[271,59],[[[254,[-1]],[254,[-1]]],5,125],[[271,45],5],[[271,271],5],[[],[[254,[-1]]],[]],[[],271],[-1,[[273,[-1]]],[]],[[],[[254,[-1]]],[]],[[],271],[[[272,[-1]]],46,[]],[[[275,[-1]]],46,[]],[[[272,[-1]]],46,[]],[[[275,[-1]]],46,[]],[[[254,[-1]],[254,[-1]]],[[46,[233]]],125],[[271,271],[[46,[233]]]],[[271,45],[[46,[233]]]],[[[273,[-1]],[273,[-1]]],[[46,[233]]],125],[[[254,[-1]]],[[46,[-1]]],[]],[271,[[46,[280]]]],[[[254,[-1]],59],[[46,[-1]]],[]],[[[254,[-1]],-1],41,[]],[[271,280],41],[[271,45],41],[[[254,[-1]],-1],41,[]],[[[254,[-1]]],59,[]],[271,59],[[[254,[-1]],59],-1,[]],[[271,59],280],[[[254,[-1]],-2],41,[],[[163,[-1],[[31,[5]]]]]],[[[254,[-1]],59],41,[]],[[271,59],41],[[[273,[-1]]],273,[]],[[[272,[-1]]],[[41,[59,[46,[59]]]]],[]],[[[275,[-1]]],[[41,[59,[46,[59]]]]],[]],[[[254,[-1]],59],[[46,[-1]]],[]],[[[254,[-1]],59],-1,[]],[[[254,[-1]]],[[254,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,137,[]],[-1,137,[]],[-1,30,[]],[-1,30,[]],[[[254,[-1]],59],41,[]],[[271,59],41],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[[[254,[-1]],[97,[-1]]],[[79,[41,273]]],92],[[[97,[-1]]],[[79,[[254,[-1]]]]],49],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[281,[[79,[271]]]],[45,[[79,[271]]]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[[[254,[-1]],59,-1],[[79,[41,[273,[-1]]]]],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[[[254,[-1]],-1],[[79,[41,[273,[-1]]]]],[]],[[271,280],[[79,[41,[273,[280]]]]]],[[271,45],[[79,[41,[273,[45]]]]]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[254,[96]],[97,[96]]],[[79,[59,277]]]],[[-1,282],[[79,[41,277]]],[]],[[-1,[97,[283]]],[[79,[41,277]]],[]],[[-1,61],[[79,[41,277]]],[]],[[-1,[97,[284]]],[[79,[41,277]]],[]],[[-1,285],[[79,[41,277]]],[]],[[-1,286],[[79,[41,277]]],[]],[[-1,287],[[79,[41,277]]],[]],[[-1,96],[[79,[41,277]]],[]],[[-1,211],[[79,[41,277]]],[]],[[-1,113],[[79,[41,277]]],[]],[[-1,[97,[285]]],[[79,[41,277]]],[]],[[-1,[97,[282]]],[[79,[41,277]]],[]],[[-1,283],[[79,[41,277]]],[]],[[-1,[97,[286]]],[[79,[41,277]]],[]],[[-1,[97,[113]]],[[79,[41,277]]],[]],[[-1,[97,[96]]],[[79,[41,277]]],[]],[[-1,[97,[287]]],[[79,[41,277]]],[]],[[-1,[97,[270]]],[[79,[41,277]]],[]],[[-1,288],[[79,[41,277]]],[]],[[-1,284],[[79,[41,277]]],[]],[[-1,270],[[79,[41,277]]],[]],[[-1,[97,[288]]],[[79,[41,277]]],[]],[[-1,[97,[211]]],[[79,[41,277]]],[]],[[-1,[97,[61]]],[[79,[41,277]]],[]],[[-1,[97,[96]]],[[79,[41,277]]],[]],[[-1,211],[[79,[41,277]]],[]],[[-1,[97,[288]]],[[79,[41,277]]],[]],[[-1,284],[[79,[41,277]]],[]],[[-1,[97,[284]]],[[79,[41,277]]],[]],[[-1,285],[[79,[41,277]]],[]],[[-1,[97,[211]]],[[79,[41,277]]],[]],[[-1,[97,[283]]],[[79,[41,277]]],[]],[[-1,286],[[79,[41,277]]],[]],[[-1,[97,[61]]],[[79,[41,277]]],[]],[[-1,96],[[79,[41,277]]],[]],[[-1,283],[[79,[41,277]]],[]],[[-1,270],[[79,[41,277]]],[]],[[-1,113],[[79,[41,277]]],[]],[[-1,288],[[79,[41,277]]],[]],[[-1,61],[[79,[41,277]]],[]],[[-1,282],[[79,[41,277]]],[]],[[-1,[97,[285]]],[[79,[41,277]]],[]],[[-1,[97,[113]]],[[79,[41,277]]],[]],[[-1,[97,[282]]],[[79,[41,277]]],[]],[[-1,[97,[270]]],[[79,[41,277]]],[]],[[-1,[97,[286]]],[[79,[41,277]]],[]],[[-1,[97,[287]]],[[79,[41,277]]],[]],[[-1,287],[[79,[41,277]]],[]],[[271,280],[[79,[41,78]]]],[[271,45],[[79,[41,78]]]],[[],271],0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[59,41],[-1,-1,[]],0,[-1,-1,[]],[-1,-2,[],[]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[259,[-1]]],[[46,[[200,[-1,169]]]]],236],[[[259,[-1]]],[[41,[59,[46,[59]]]]],236],0,[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[267,[-1,-2]]],[[267,[-1,-2]]],289,[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],289,[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],289,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],289,[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[],[238,92],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[],238,[]],[[[200,[-1,-2]],[223,[-1,-2]]],[],238,[]],[[[200,[-1,-2]],[267,[-1,-2]]],[],238,[]],[[[293,[-1,-2]],[290,[-1,-2]]],[],238,[]],[[[293,[-1,-2]],[291,[-1,-2]]],[],238,[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[],238,[],[]],[[[295,[-1,-2]],[295,[-1,-2]]],[[295,[-1,-2]]],[[238,[],[[31,[]]]]],[]],[[[267,[-1,-2]],[267,[-1,-2]]],[],238,[]],[[[267,[-1,-2]],[267,[-1,-2]]],[[267,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[290,[-1,-2]],[290,[-1,-2]]],[],238,[]],[[[290,[-1,-2]],[290,[-1,-2]]],[[290,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[296,[-1,-2,-3]],[296,[-1,-3,-4]]],[],238,[],[],[]],[[[297,[-1,-2,-3]],[297,[-1,-3,-4]]],[],238,[],[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[],[238,92],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[],238,[]],[[[291,[-1,-2]],[291,[-1,-2]]],[],238,[]],[[[291,[-1,-2]],[291,[-1,-2]]],[],[238,92],[]],[[[292,[-1,-2]],[292,[-1,-2]]],41,239,[]],[[[200,[-1,-2]],[267,[-1,-2]]],41,239,[]],[[[200,[-1,-2]],[223,[-1,-2]]],41,[92,[238,[],[[31,[]]]]],[]],[[[293,[-1,-2]],[290,[-1,-2]]],41,239,[]],[[[293,[-1,-2]],[291,[-1,-2]]],41,[92,[238,[],[[31,[]]]]],[]],[[[295,[-1,-2]],[295,[-1,-2]]],41,239,[]],[[[267,[-1,-2]],[267,[-1,-2]]],41,239,[]],[[[290,[-1,-2]],[290,[-1,-2]]],41,239,[]],[[[296,[-1,-2,-3]],[296,[-1,-3,-3]]],41,239,[],[]],[[[297,[-1,-2,-3]],[297,[-1,-3,-3]]],41,239,[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],41,[92,[238,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],41,[92,[238,[],[[31,[]]]]],[]],[[[200,[-1,-2]],[267,[-1,-2]]],[[200,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[293,[-1,-2]],[290,[-1,-2]]],[[293,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[298,5],[299,5],[[298,298],298],[[299,299],299],0,[[[223,[-1,-2]]],[[224,[-1]]],[255,92],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[224,[-1]]],[[246,[],[[31,[]]]],255,92,[247,[],[[31,[]]]],[238,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[224,[-1]]],[255,266],[]],[298,5],[299,5],[[],-1,250],[[],[[200,[-1,-2]]],[],[]],[[],[[293,[-1,-2]]],[],[]],[[],-1,[]],[[],-1,250],[[],-1,250],[[],[[223,[-1,-2]]],[],[]],[[],[[291,[-1,-2]]],[],[]],[[[170,[-1,-2,-3]],[170,[-1,-2,-3]]],5,[],[],[]],[[[300,[-1,-2,-3]],[300,[-1,-2,-3]]],5,[],[],[]],[[[292,[-1,-2]],[292,[-1,-2]],-1],5,[],[]],[[[200,[-1,-2]],[200,[-1,-2]],[200,[-1,-2]]],5,[],[]],[[[293,[-1,-2]],[293,[-1,-2]],[293,[-1,-2]]],5,[],[]],[[[301,[-1,-2,-3]],[301,[-1,-2,-3]],-1],5,[],[],[]],[[[170,[-1,-2,-3]],[170,[-1,-2,-3]],-1],5,[],[],[]],[[[170,[-1,-2,-3]],[170,[-1,-2,-3]],-1],5,[],[],[]],[[[300,[-1,-2,-3]],[300,[-1,-2,-3]],-1],5,[],[],[]],[[[300,[-1,-2,-3]],[300,[-1,-2,-3]],-1],5,[],[],[]],[[[223,[-1,-2]],[223,[-1,-2]],[223,[-1,-2]]],5,[],[]],[[[291,[-1,-2]],[291,[-1,-2]],[291,[-1,-2]]],5,[],[]],0,0,[[[227,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],-1,[92,[247,[],[[31,[]]]]],[]],[[[267,[-1,-2]]],[],[247,92],[]],[[[291,[-1,-2]],[224,[-1]]],[[301,[-1,-2,-3]]],266,[],[]],[[[224,[-1]]],[[301,[-1,-2,-3]]],266,[],[]],[[[224,[-1]]],[[301,[-1,-2,-3]]],266,[],[]],[[[224,[-1]]],[[301,[-1,-2,-3]]],266,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-1,-1,-1,-1,-1],[[303,[-1,-2]]],92,[]],[[5,5],298],[[5,5,5],299],[[[227,[-1,-2]]],[[227,[-3,-2]]],[251,92],[],251],[[[303,[-1,-2]]],[[303,[-3,-2]]],[251,92],[],251],[[[292,[-1,-2]]],[[292,[-3,-2]]],[251,49],[],251],[[[200,[-1,-2]]],[[200,[-3,-2]]],[251,92],[],251],[[[293,[-1,-2]]],[[293,[-3,-2]]],[251,92],[],251],[[[302,[-1,-2]]],[[302,[-3,-2]]],[251,92],[],251],[[[294,[-1,-2,-3]]],[[294,[-4,-2,-3]]],251,[],[],251],[[[267,[-1,-2]]],[[267,[-3,-2]]],[251,92],[],251],[[[290,[-1,-2]]],[[290,[-3,-2]]],[251,92],[],251],[[[170,[-1,-2,-3]]],[[170,[-4,-2,-3]]],[251,92],[],[],251],[[[300,[-1,-2,-3]]],[[300,[-4,-2,-3]]],[251,92],[],[],251],[[[223,[-1,-2]]],[[223,[-3,-2]]],[251,92],[],251],[[[291,[-1,-2]]],[[291,[-3,-2]]],[251,92],[],251],[[[227,[-1,-2]]],[[227,[-1,-3]]],92,[],[]],[[[303,[-1,-2]]],[[303,[-1,-3]]],92,[],[]],[[[292,[-1,-2]]],[[292,[-1,-3]]],49,[],[]],[[[200,[-1,-2]]],[[200,[-1,-3]]],92,[],[]],[[[293,[-1,-2]]],[[293,[-1,-3]]],92,[],[]],[[[302,[-1,-2]]],[[302,[-1,-3]]],92,[],[]],[[[304,[-1,-2,-3]]],[[304,[-1,-4,-5]]],92,[],[],[],[]],[[[301,[-1,-2,-3]]],[[301,[-1,-4,-5]]],92,[],[],[],[]],[[[267,[-1,-2]]],[[267,[-1,-3]]],92,[],[]],[[[290,[-1,-2]]],[[290,[-1,-3]]],92,[],[]],[[[223,[-1,-2]]],[[223,[-1,-3]]],92,[],[]],[[[291,[-1,-2]]],[[291,[-1,-3]]],92,[],[]],[[[305,[-1,-2,-3]]],[[305,[-1,-4,-5]]],92,[],[],[],[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],306,[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],[306,92],[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],306,[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],[306,92],[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],[306,92],[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],306,[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],306,[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],[306,92],[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],306,[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],[306,92],[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],306,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],[306,92],[]],[[[227,[-1,-2]]],[[200,[-1,-2]]],[92,307,[238,[],[[31,[]]]],[256,[],[[31,[]]]]],[]],[[[303,[-1,-2]]],[[293,[-1,-2]]],[92,307,[238,[],[[31,[]]]],[256,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],[[200,[-1,-2]]],[92,307,[238,[],[[31,[]]]],[256,[],[[31,[]]]]],[]],[[[200,[-1,-2]],[200,[-1,-2]],[200,[-1,-2]]],[[200,[-1,-2]]],[92,125],[]],[[[293,[-1,-2]],[293,[-1,-2]],[293,[-1,-2]]],[[293,[-1,-2]]],[92,125],[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[[294,[-1,-2,-3]]],[92,125],[],[]],[[[267,[-1,-2]],[267,[-1,-2]],[267,[-1,-2]]],[[267,[-1,-2]]],[92,125],[]],[[[290,[-1,-2]],[290,[-1,-2]],[290,[-1,-2]]],[[290,[-1,-2]]],[92,125],[]],[[[223,[-1,-2]],[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[92,125],[]],[[[291,[-1,-2]],[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[92,125],[]],[[[223,[-1,-2]],-1,-1],[[223,[-1,-2]]],266,[]],[[[291,[-1,-2]],-1,-1],[[291,[-1,-2]]],266,[]],[[[227,[-1,-2]]],[[227,[-1,-2]]],49,[]],[[[303,[-1,-2]]],[[303,[-1,-2]]],49,[]],[[[308,[-1,-2]]],[[308,[-1,-2]]],49,[]],[[[292,[-1,-2]]],[[292,[-1,-2]]],49,[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],49,[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],49,[]],[[[302,[-1,-2]]],[[302,[-1,-2]]],49,[]],[[[304,[-1,-2,-3]]],[[304,[-1,-2,-3]]],49,[],[]],[[[301,[-1,-2,-3]]],[[301,[-1,-2,-3]]],49,[],[]],[[[294,[-1,-2,-3]]],[[294,[-1,-2,-3]]],49,[],[]],[[[295,[-1,-2]]],[[295,[-1,-2]]],49,[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],49,[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],49,[]],[[[170,[-1,-2,-3]]],[[170,[-1,-2,-3]]],49,[],[]],[[[300,[-1,-2,-3]]],[[300,[-1,-2,-3]]],49,[],[]],[[[296,[-1,-2,-3]]],[[296,[-1,-2,-3]]],49,[],[]],[[[297,[-1,-2,-3]]],[[297,[-1,-2,-3]]],49,[],[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],49,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],49,[]],[[[305,[-1,-2,-3]]],[[305,[-1,-2,-3]]],49,[],[]],[298,298],[299,299],[169,169],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[[292,[-1,-2]],[292,[-1,-2]]],233,274,[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],233,274,[],[]],[[169,169],233],[[-1,-2],233,[],[]],[[-1,-2],233,[],[]],[[-1,-2],233,[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[[256,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[[256,[],[[31,[]]]],92],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[[247,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[[247,[],[[31,[]]]],92],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[227,[-1,-2]],[200,[-1,-2]]],5,125,[]],[[[303,[-1,-2]],[293,[-1,-2]]],5,125,[]],[[[302,[-1,-2]],[200,[-1,-2]]],5,[92,125,[238,[],[[31,[]]]]],[]],[[[267,[-1,-2]],[267,[-1,-2]]],5,125,[]],[[[290,[-1,-2]],[290,[-1,-2]]],5,125,[]],[[[227,[-1,-2]],[227,[-1,-2]]],5,125,[]],[[[303,[-1,-2]],[303,[-1,-2]]],5,125,[]],[[[302,[-1,-2]],[302,[-1,-2]]],5,[92,309,125,[238,[],[[31,[]]]]],[]],[255,255],[[[223,[-1,-2]],[223,[-1,-2]]],-1,[[246,[],[[31,[]]]],[247,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[305,[-1,-2,-3]]],[[41,[[291,[-1,-2]],[301,[-1,-2,-3]]]]],[],[],[]],0,[[],[[227,[-1,-2]]],107,[]],[[],[[303,[-1,-2]]],107,[]],[[],[[292,[-1,-2]]],107,[]],[[],[[200,[-1,-2]]],107,[]],[[],[[293,[-1,-2]]],107,[]],[[],[[302,[-1,-2]]],107,[]],[[],[[294,[-1,-2,-3]]],107,[],[]],[[],[[295,[-1,-2]]],107,[]],[[],[[267,[-1,-2]]],107,[]],[[],[[290,[-1,-2]]],107,[]],[[],[[170,[-1,-2,-3]]],[309,307],[],[]],[[],[[300,[-1,-2,-3]]],[309,307],[],[]],[[],[[296,[-1,-2,-3]]],309,[],[]],[[],[[297,[-1,-2,-3]]],309,[],[]],[[],[[223,[-1,-2]]],107,[]],[[],[[291,[-1,-2]]],107,[]],[[],169],[255,255],[[[303,[-1,-2]]],-1,[92,[246,[],[[31,[]]]]],[]],0,[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[170,[-1,-2,-3]]],-1,[92,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],93,309,307],[],[]],[[[300,[-1,-2,-3]]],-1,[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[200,[-1,-2]],[200,[-1,-2]]],-1,[[266,[],[[31,[]]]],246],[]],[[[293,[-1,-2]],[293,[-1,-2]]],-1,[[266,[],[[31,[]]]],246],[]],[[[227,[-1,-2]],-1],[],[92,256],[]],[[[227,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[303,[-1,-2]],-1],[],[92,256],[]],[[[303,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[292,[-1,-2]],[292,[-1,-3]]],[],256,[],[]],[[[292,[-1,-2]],-1],[],256,[]],[[[292,[-1,-2]],[294,[-1,-3,-2]]],[],256,[],[]],[[[200,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[200,[-1,-2]],-1],[],[92,256],[]],[[[293,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[293,[-1,-2]],-1],[],[92,256],[]],[[[302,[-1,-2]],-1],[],[92,256],[]],[[[302,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[295,[-1,-2]],-1],[],[92,256],[]],[[[295,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[267,[-1,-2]],-1],[],[92,256],[]],[[[267,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[290,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[290,[-1,-2]],-1],[],[92,256],[]],[[[223,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[223,[-1,-2]],-1],[],[92,256],[]],[[[291,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[291,[-1,-2]],-1],[],[92,256],[]],[[[227,[-1,-2]],-1],41,[92,257],[]],[[[227,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[303,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[303,[-1,-2]],-1],41,[92,257],[]],[[[292,[-1,-2]],-1],41,[92,[256,[],[[31,[]]]]],[]],[[[200,[-1,-2]],-1],41,[92,[256,[],[[31,[]]]]],[]],[[[200,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[293,[-1,-2]],-1],41,[92,257],[]],[[[293,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[302,[-1,-2]],-1],41,[92,257],[]],[[[302,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[295,[-1,-2]],-1],41,[92,257],[]],[[[295,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[267,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[267,[-1,-2]],-1],41,[92,257],[]],[[[290,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[290,[-1,-2]],-1],41,[92,257],[]],[[[223,[-1,-2]],-1],41,[92,[256,[],[[31,[]]]]],[]],[[[223,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[291,[-1,-2]],-1],41,[92,[256,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[200,[-1,-2]],[267,[-1,-2]]],[[200,[-1,-2]]],310,[]],[[[293,[-1,-2]],[290,[-1,-2]]],[[293,[-1,-2]]],310,[]],[[[223,[-1,-2]],[223,[-1,-2]]],-1,[[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],-1,[[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[[227,[-1,-2]],[227,[-1,-2]]],5,93,[]],[[[303,[-1,-2]],[303,[-1,-2]]],5,93,[]],[[[308,[-1,-2]],[308,[-1,-2]]],5,93,[]],[[[292,[-1,-2]],[292,[-1,-2]]],5,93,[]],[[[200,[-1,-2]],[200,[-1,-2]]],5,93,[]],[[[293,[-1,-2]],[293,[-1,-2]]],5,93,[]],[[[302,[-1,-2]],[302,[-1,-2]]],5,93,[]],[[[304,[-1,-2,-3]],[304,[-1,-2,-3]]],5,93,[],[]],[[[301,[-1,-2,-3]],[301,[-1,-2,-3]]],5,93,[],[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],5,93,[],[]],[[[295,[-1,-2]],[295,[-1,-2]]],5,93,[]],[[[267,[-1,-2]],[267,[-1,-2]]],5,93,[]],[[[290,[-1,-2]],[290,[-1,-2]]],5,93,[]],[[[170,[-1,-2,-3]],[170,[-1,-2,-3]]],5,93,[],[]],[[[300,[-1,-2,-3]],[300,[-1,-2,-3]]],5,93,[],[]],[[[296,[-1,-2,-3]],[296,[-1,-2,-3]]],5,93,[],[]],[[[297,[-1,-2,-3]],[297,[-1,-2,-3]]],5,93,[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],5,93,[]],[[[291,[-1,-2]],[291,[-1,-2]]],5,93,[]],[[[305,[-1,-2,-3]],[305,[-1,-2,-3]]],5,93,93,93],[[298,298],5],[[299,299],5],[[169,169],5],[[[267,[-1,-2]],[267,[-1,-2]]],298,93,[]],[[[290,[-1,-2]],[290,[-1,-2]]],299,93,[]],[[[223,[-1,-2]],[223,[-1,-2]]],298,93,[]],[[[291,[-1,-2]],[291,[-1,-2]]],299,93,[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[[224,[-1]],[224,[-1]],[224,[-1]]],[[301,[-1,-2,-3]]],266,[],[]],[[[200,[-1,-2]],-1],[[293,[-1,-2]]],92,[]],[[[223,[-1,-2]],-1],[[291,[-1,-2]]],92,[]],[[255,255],255],[[[200,[-1,-2]]],[[200,[-1,-2]]],[311,92],[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],311,[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],311,[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],[311,92],[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],311,[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],[311,92],[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],311,[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],[311,92],[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],311,[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],[311,92],[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],311,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],[311,92],[]],[[[227,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[303,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[308,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[292,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[200,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[293,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[302,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[301,[-1,-2,-3]],77],[[79,[41,78]]],164,[],[]],[[[294,[-1,-2,-3]],77],[[79,[41,78]]],164,[],[]],[[[295,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[267,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[290,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[170,[-1,-2,-3]],77],[[79,[41,78]]],[92,164,93,307,309],[],[]],[[[300,[-1,-2,-3]],77],[[79,[41,78]]],[92,164,93,307,309],[],[]],[[[296,[-1,-2,-3]],77],[[79,[41,78]]],164,[],[]],[[[297,[-1,-2,-3]],77],[[79,[41,78]]],164,[],[]],[[[223,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[291,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[305,[-1,-2,-3]],77],[[79,[41,78]]],164,164,164],[[298,77],[[79,[41,78]]]],[[299,77],[[79,[41,78]]]],[[169,77],[[79,[41,78]]]],[-1,-1,[]],[[[267,[-1,-2]]],[[227,[-1,-2]]],[92,309,125],[]],[[[290,[-1,-2]]],[[303,[-1,-2]]],[92,309,125],[]],[-1,-1,[]],[[[291,[-1,-2]]],[[308,[-1,-2]]],309,[]],[[[200,[-1,-2]]],[[308,[-1,-2]]],[309,307],[]],[[[223,[-1,-2]]],[[308,[-1,-2]]],309,[]],[[[293,[-1,-2]]],[[308,[-1,-2]]],307,[]],[-1,-1,[]],[-1,-1,[]],[[[41,[-1,-1]]],[[200,[-1,-2]]],[],[]],[-1,-1,[]],[[[278,[-1]]],[[200,[-1,-2]]],[],[]],[-1,-1,[]],[[[41,[-1,-1,-1]]],[[293,[-1,-2]]],[],[]],[[[278,[-1]]],[[293,[-1,-2]]],[],[]],[[[267,[-1,-2]]],[[302,[-1,-2]]],309,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[223,[-1,-2]]],[[267,[-1,-2]]],[],[]],[-1,-1,[]],[[[41,[-1,-1]]],[[267,[-1,-2]]],[],[]],[[[278,[-1]]],[[267,[-1,-2]]],[],[]],[[[278,[-1]]],[[290,[-1,-2]]],[],[]],[[[291,[-1,-2]]],[[290,[-1,-2]]],[],[]],[[[41,[-1,-1,-1]]],[[290,[-1,-2]]],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[223,[-1,-2]]],[[296,[-1,-2,-3]]],[],[],[]],[[[291,[-1,-2]]],[[297,[-1,-2,-3]]],[],[],[]],[-1,-1,[]],[-1,-1,[]],[[[278,[-1]]],[[223,[-1,-2]]],[],[]],[[[267,[-1,-2]]],[[223,[-1,-2]]],[],[]],[[[41,[-1,-1]]],[[223,[-1,-2]]],[],[]],[[[41,[-1,-1,-1]]],[[291,[-1,-2]]],[],[]],[-1,-1,[]],[[[278,[-1]]],[[291,[-1,-2]]],[],[]],[-1,-1,[]],[[[291,[-1,-2]]],[[305,[-1,-3,-2]]],[],[],[]],[[[301,[-1,-2,-3]]],[[305,[-1,-2,-3]]],[],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[224,[-1]],-1],[[223,[-1,-2]]],[255,[247,[],[[31,[]]]],92],[]],[[[278,[-1]]],[[170,[-1,-2,-3]]],92,[],[]],[[[278,[-1]]],[[300,[-1,-2,-3]]],92,[],[]],[[[278,[[278,[-1]]]]],[[170,[-1,-2,-3]]],92,[],[]],[[[278,[[278,[-1]]]]],[[300,[-1,-2,-3]]],92,[],[]],[[[292,[-1,-2]]],[[295,[-1,-2]]],92,[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[200,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]],[292,[-1,-2]]],[[293,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]],[292,[-1,-2]],[292,[-1,-2]]],[[295,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[267,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]],[292,[-1,-2]]],[[290,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[223,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]],[292,[-1,-2]]],[[291,[-1,-2]]],[],[]],[[[200,[-1,-2]],[267,[-1,-2]]],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[-1,[[227,[-2,-3]]],43,[92,309,125],[]],[-1,[[303,[-2,-3]]],43,[92,309,125],[]],[-1,[[302,[-2,-3]]],43,[92,309,125,[246,[],[[31,[]]]]],[]],[[[301,[-1,-2,-3]]],[[305,[-1,-2,-3]]],[],[],[]],[[[294,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[267,[-1,-2]]],[[227,[-1,-2]]],309,[]],[[[290,[-1,-2]]],[[303,[-1,-2]]],309,[]],[[[267,[-1,-2]]],[[302,[-1,-2]]],309,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[291,[-1,-2]]],[[305,[-1,-3,-2]]],[],[],[]],[[[227,[-1,169]]],[[227,[-1,-2]]],92,[]],[[[303,[-1,169]]],[[303,[-1,-2]]],92,[]],[[[200,[-1,169]]],[[200,[-1,-2]]],[],[]],[[[293,[-1,169]]],[[293,[-1,-2]]],[],[]],[[[302,[-1,169]]],[[302,[-1,-2]]],92,[]],[[[304,[-1,169,169]]],[[304,[-1,-2,-3]]],92,[],[]],[[[301,[-1,169,169]]],[[301,[-1,-2,-3]]],92,[],[]],[[[267,[-1,169]]],[[267,[-1,-2]]],[],[]],[[[290,[-1,169]]],[[290,[-1,-2]]],[],[]],[[[170,[-1,169,169]]],[[170,[-1,-2,-3]]],92,[],[]],[[[300,[-1,169,169]]],[[300,[-1,-2,-3]]],92,[],[]],[[[296,[-1,169,169]]],[[296,[-1,-2,-3]]],92,[],[]],[[[297,[-1,169,169]]],[[297,[-1,-2,-3]]],92,[],[]],[[[223,[-1,169]]],[[223,[-1,-2]]],[],[]],[[[291,[-1,169]]],[[291,[-1,-2]]],[],[]],[[[305,[-1,169,169]]],[[305,[-1,-2,-3]]],[],[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[295,[-1,-2]]],[[264,[],[[31,[]]]]],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[295,[-1,-2]]],[[264,[],[[31,[]]]]],[]],[[[292,[-1,-2]]],-1,49,[]],[[[294,[-1,-2,-3]]],-1,[],[],[]],[[[304,[-1,-2,-3]]],[[224,[-1]]],92,[],[]],[[[267,[-1,-2]],[267,[-1,-2]]],298,125,[]],[[[290,[-1,-2]],[290,[-1,-2]]],299,125,[]],[[[223,[-1,-2]],[223,[-1,-2]]],298,125,[]],[[[291,[-1,-2]],[291,[-1,-2]]],299,125,[]],[[[227,[-1,-2]],-3],41,39,[],205],[[[303,[-1,-2]],-3],41,39,[],205],[[[308,[-1,-2]],-3],41,39,[],205],[[[292,[-1,-2]],-3],41,39,[],205],[[[200,[-1,-2]],-3],41,39,[],205],[[[293,[-1,-2]],-3],41,39,[],205],[[[302,[-1,-2]],-3],41,39,[],205],[[[304,[-1,-2,-3]],-4],41,39,[],[],205],[[[301,[-1,-2,-3]],-4],41,39,[],[],205],[[[294,[-1,-2,-3]],-4],41,39,[],[],205],[[[295,[-1,-2]],-3],41,39,[],205],[[[267,[-1,-2]],-3],41,39,[],205],[[[290,[-1,-2]],-3],41,39,[],205],[[[170,[-1,-2,-3]],-4],41,39,[],[],205],[[[300,[-1,-2,-3]],-4],41,39,[],[],205],[[[296,[-1,-2,-3]],-4],41,39,[],[],205],[[[297,[-1,-2,-3]],-4],41,39,[],[],205],[[[223,[-1,-2]],-3],41,39,[],205],[[[291,[-1,-2]],-3],41,39,[],205],[[[305,[-1,-2,-3]],-4],41,39,39,39,205],[[298,-1],41,205],[[299,-1],41,205],[[169,-1],41,205],[[[227,[-1,-2]]],-1,[92,[246,[],[[31,[]]]]],[]],[[[303,[-1,-2]]],-1,[92,[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],0,0,[[[295,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],0,[[],[[304,[-1,-2,-3]]],265,[],[]],[[],[[301,[-1,-2,-3]]],[265,248],[],[]],[[],[[294,[-1,-2,-3]]],307,[],[]],[[],[[170,[-1,-2,-3]]],[309,307],[],[]],[[],[[300,[-1,-2,-3]]],[309,307],[],[]],[[],[[296,[-1,-2,-3]]],309,[],[]],[[],[[297,[-1,-2,-3]]],309,[],[]],[[],[[305,[-1,-2,-3]]],[],[],[]],[[[227,[-1,-2]],-1,-1],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[303,[-1,-2]],-1,-1,-1],[[303,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]],-1,-1],[[302,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[[227,[-1,-2]],[295,[-1,-2]]],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]],[295,[-1,-2]]],[[302,[-1,-2]]],[92,309,125,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[227,[-1,-2]],[227,[-1,-2]]],[[46,[[227,[-1,-2]]]]],[92,125],[]],[[[303,[-1,-2]],[303,[-1,-2]]],[[46,[[303,[-1,-2]]]]],[92,125],[]],[[[302,[-1,-2]],[302,[-1,-2]]],[[46,[[302,[-1,-2]]]]],[92,125,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[227,[-1,-2]],[227,[-1,-2]]],[[227,[-1,-2]]],[92,125],[]],[[[303,[-1,-2]],[303,[-1,-2]]],[[303,[-1,-2]]],[92,125],[]],[[[227,[-1,-2]],[227,[-1,-2]]],5,125,[]],[[[303,[-1,-2]],[303,[-1,-2]]],5,125,[]],[[[302,[-1,-2]],[302,[-1,-2]]],5,[92,125,[238,[],[[31,[]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[200,[-1,-2]]],[[278,[-1]]],[],[]],[[[200,[-1,-2]]],[[41,[-1,-1]]],[],[]],[[[293,[-1,-2]]],[[41,[-1,-1,-1]]],[],[]],[[[293,[-1,-2]]],[[278,[-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[267,[-1,-2]]],[[278,[-1]]],[],[]],[-1,-2,[],[]],[[[267,[-1,-2]]],[[41,[-1,-1]]],[],[]],[[[290,[-1,-2]]],[[41,[-1,-1,-1]]],[],[]],[[[290,[-1,-2]]],[[278,[-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[296,[-1,-2,-3]]],[[170,[-1,-2,-3]]],[309,307],[],[]],[[[296,[-1,-2,-3]]],[[223,[-1,-2]]],[],[],[]],[-1,-2,[],[]],[[[297,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[309,307],[],[]],[[[297,[-1,-2,-3]]],[[291,[-1,-2]]],[],[],[]],[-1,-2,[],[]],[[[223,[-1,-2]]],[[41,[-1,-1]]],[],[]],[[[223,[-1,-2]]],[[278,[-1]]],[],[]],[[[291,[-1,-2]]],[[278,[-1]]],[],[]],[-1,-2,[],[]],[[[291,[-1,-2]]],[[41,[-1,-1,-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[304,[-1,-2,-3]]],[[304,[-1,-3,-2]]],266,[],[]],[[[301,[-1,-2,-3]]],[[301,[-1,-3,-2]]],266,[],[]],[[[294,[-1,-2,-3]]],[[294,[-3,-2]]],[307,256],[],[]],[[[170,[-1,-2,-3]]],[[46,[[170,[-1,-3,-2]]]]],[92,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],93,309,307],[],[]],[[[300,[-1,-2,-3]]],[[46,[[300,[-1,-3,-2]]]]],[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[296,[-1,-2,-3]]],[[296,[-3,-2]]],[264,92],[],[]],[[[297,[-1,-2,-3]]],[[297,[-3,-2]]],[264,92],[],[]],[[[305,[-1,-2,-3]]],[[305,[-1,-3,-2]]],[],[],[]],[[[300,[-1,-2,-3]]],5,[309,307,93],[],[]],[[[300,[-1,-2,-3]]],5,[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[227,[-1,-2]]],5,125,[]],[[[303,[-1,-2]]],5,125,[]],[[[302,[-1,-2]]],5,[92,309,125],[]],[[[267,[-1,-2]]],5,[309,125],[]],[[[290,[-1,-2]]],5,[309,125],[]],[[[227,[-1,-2]]],5,262,[]],[[[303,[-1,-2]]],5,262,[]],[[[200,[-1,-2]]],5,262,[]],[[[293,[-1,-2]]],5,262,[]],[[[302,[-1,-2]]],5,262,[]],[[[267,[-1,-2]]],5,262,[]],[[[290,[-1,-2]]],5,262,[]],[[[223,[-1,-2]]],5,262,[]],[[[291,[-1,-2]]],5,262,[]],[[[294,[-1,-2,-3]]],5,[93,307],[],[]],[[[296,[-1,-2,-3]]],5,[309,93],[],[]],[[[297,[-1,-2,-3]]],5,[309,93],[],[]],[[[170,[-1,-2,-3]]],5,[92,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],93,309,307],[],[]],[[[300,[-1,-2,-3]]],5,[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[227,[-1,-2]]],5,125,[]],[[[303,[-1,-2]]],5,125,[]],[[[301,[-1,-2,-3]]],5,[],[],[]],[[[267,[-1,-2]]],5,289,[]],[[[290,[-1,-2]]],5,289,[]],[[[295,[-1,-2]]],5,[309,93],[]],0,0,0,[[[223,[-1,-2]]],-1,266,[]],[[[291,[-1,-2]]],-1,266,[]],[[[227,[-1,-2]],[227,[-1,-2]],-1],[[227,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[303,[-1,-2]],[303,[-1,-2]],-1],[[303,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[292,[-1,-2]],[292,[-1,-2]],-1],[[292,[-1,-2]]],[307,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[238,[],[[31,[]]]],49],[]],[[[200,[-1,-2]],[200,[-1,-2]],-1],[[200,[-1,-2]]],[307,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[238,[],[[31,[]]]],92],[]],[[[293,[-1,-2]],[293,[-1,-2]],-1],[[293,[-1,-2]]],[307,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[238,[],[[31,[]]]],92],[]],[[[302,[-1,-2]],[302,[-1,-2]],-1],[[302,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[301,[-1,-2,-3]],[301,[-1,-2,-3]],-1],[[301,[-1,-2,-3]]],266,[],[]],[[[267,[-1,-2]],[267,[-1,-2]],-1],[[267,[-1,-2]]],[307,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[238,[],[[31,[]]]],92],[]],[[[290,[-1,-2]],[290,[-1,-2]],-1],[[290,[-1,-2]]],[307,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[238,[],[[31,[]]]],92],[]],[[[223,[-1,-2]],[223,[-1,-2]],-1],[[223,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[291,[-1,-2]],[291,[-1,-2]],-1],[[291,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[267,[-1,-2]],[267,[-1,-2]]],298,125,[]],[[[290,[-1,-2]],[290,[-1,-2]]],299,125,[]],[[[223,[-1,-2]],[223,[-1,-2]]],298,125,[]],[[[291,[-1,-2]],[291,[-1,-2]]],299,125,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[292,[-1,-2]],[292,[-1,-2]]],[[292,[-1,-2]]],125,[]],[[[200,[-1,-2]],[200,[-1,-2]]],[[200,[-1,-2]]],125,[]],[[[293,[-1,-2]],[293,[-1,-2]]],[[293,[-1,-2]]],125,[]],[[[302,[-1,-2]]],[[200,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[[294,[-1,-2,-3]]],125,[],[]],[[[267,[-1,-2]],[267,[-1,-2]]],[[267,[-1,-2]]],125,[]],[[[290,[-1,-2]],[290,[-1,-2]]],[[290,[-1,-2]]],125,[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],125,[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],125,[]],0,0,[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[292,[-1,-2]]],125,[]],[[[200,[-1,-2]],[200,[-1,-2]]],[[200,[-1,-2]]],125,[]],[[[293,[-1,-2]],[293,[-1,-2]]],[[293,[-1,-2]]],125,[]],[[[302,[-1,-2]]],[[200,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[[294,[-1,-2,-3]]],125,[],[]],[[[267,[-1,-2]],[267,[-1,-2]]],[[267,[-1,-2]]],125,[]],[[[290,[-1,-2]],[290,[-1,-2]]],[[290,[-1,-2]]],125,[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],125,[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],125,[]],0,0,[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],[[[227,[-1,-2]],-1],[],[92,247],[]],[[[227,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[303,[-1,-2]],-1],[],[92,247],[]],[[[303,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[292,[-1,-2]],[294,[-1,-2,-3]]],[],247,[],[]],[[[292,[-1,-2]],-1],[],247,[]],[[[200,[-1,-2]],-1],[],[92,247],[]],[[[200,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[293,[-1,-2]],-1],[],[92,247],[]],[[[293,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[302,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[302,[-1,-2]],-1],[],[92,247],[]],[[[294,[-1,-2,-3]],[294,[-1,-3,-4]]],[],247,[],[],[]],[[[295,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[295,[-1,-2]],-1],[],[92,247],[]],[[[267,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[267,[-1,-2]],-1],[],[92,247],[]],[[[290,[-1,-2]],-1],[],[92,247],[]],[[[290,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[223,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[223,[-1,-2]],-1],[],[92,247],[]],[[[291,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[291,[-1,-2]],-1],[],[92,247],[]],[[[227,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[227,[-1,-2]],-1],41,[92,263],[]],[[[303,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[303,[-1,-2]],-1],41,[92,263],[]],[[[292,[-1,-2]],-1],41,[92,[247,[],[[31,[]]]]],[]],[[[200,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[200,[-1,-2]],-1],41,[92,[247,[],[[31,[]]]]],[]],[[[293,[-1,-2]],-1],41,[92,263],[]],[[[293,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[302,[-1,-2]],-1],41,[92,263],[]],[[[302,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[295,[-1,-2]],-1],41,[92,263],[]],[[[295,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[267,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[267,[-1,-2]],-1],41,[92,263],[]],[[[290,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[290,[-1,-2]],-1],41,[92,263],[]],[[[223,[-1,-2]],-1],41,[92,[247,[],[[31,[]]]]],[]],[[[223,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[291,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[291,[-1,-2]],-1],41,[92,[247,[],[[31,[]]]]],[]],[[[300,[-1,-2,-3]],-1],[[300,[-1,-2,-3]]],[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[292,[-1,-2]]],[],264,[]],[[[200,[-1,-2]]],[],264,[]],[[[293,[-1,-2]]],[],264,[]],[[[295,[-1,-2]]],[[295,[-1,-2]]],[[264,[],[[31,[]]]]],[]],[[[267,[-1,-2]]],[],264,[]],[[[290,[-1,-2]]],[],264,[]],[[[223,[-1,-2]]],[],264,[]],[[[291,[-1,-2]]],[],264,[]],[[[200,[-1,-2]],[200,[-1,-2]]],[[227,[-1,-2]]],[],[]],[[[293,[-1,-2]],[293,[-1,-2]]],[[303,[-1,-2]]],[],[]],[[-1,-1,-1,-1],[[308,[-1,-2]]],[],[]],[-1,[[292,[-1,-2]]],[],[]],[[-1,-1],[[200,[-1,-2]]],[],[]],[[-1,-1,-1],[[293,[-1,-2]]],[],[]],[[[200,[-1,-2]],[267,[-1,-2]]],[[302,[-1,-2]]],[],[]],[[[224,[-1]]],[[304,[-1,-2,-3]]],[],[],[]],[-1,[[294,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1],[[295,[-1,-2]]],[],[]],[[-1,-1],[[267,[-1,-2]]],[],[]],[[-1,-1,-1],[[290,[-1,-2]]],[],[]],[[-1,-1,-1,-1,-1,-1],[[170,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1],[[300,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[296,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1],[[297,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[223,[-1,-2]]],[],[]],[[-1,-1,-1],[[291,[-1,-2]]],[],[]],[[[301,[-1,-2,-3]],[291,[-1,-3]]],[[305,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1,-1,-1],[[300,[-1,-2,-3]]],[309,307],[],[]],[-1,[[295,[-1,-2]]],92,[]],[[[291,[-1,-2]],[301,[-1,-2,-3]]],[[305,[-1,-2,-3]]],[],[],[]],[298,5],[299,5],[[[301,[-1,-2,-3]]],-1,266,[],[]],[[[301,[-1,-2,-3]]],[[301,[-1,-2,-3]]],266,[],[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],266,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],266,[]],[298,298],[299,299],[[[267,[-1,-2]],[267,[-1,-2]]],298,93,[]],[[[290,[-1,-2]],[290,[-1,-2]]],299,93,[]],[[[223,[-1,-2]],[223,[-1,-2]]],298,93,[]],[[[291,[-1,-2]],[291,[-1,-2]]],299,93,[]],0,[[],[[294,[-1,-2,-3]]],307,[],[]],[[],[[223,[-1,-2]]],307,[]],[[],[[291,[-1,-2]]],307,[]],[[298,298],298],[[299,299],299],[[],[[200,[-1,-2]]],309,[]],[[],[[293,[-1,-2]]],309,[]],0,[[-1,-1,-1,-1,-1,-1],[[300,[-1,-2,-3]]],[],[],[]],[[[227,[-1,-2]],[295,[-1,-2]]],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]],[295,[-1,-2]]],[[302,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[170,[-1,-2,-3]],[227,[-1,-2]]],[[227,[-1,-3]]],[[246,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[300,[-1,-2,-3]],[227,[-1,-2]]],[[46,[[227,[-1,-3]]]]],[[246,[],[[31,[]]]],[256,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[300,[-1,-2,-3]],[303,[-1,-2]]],[[46,[[303,[-1,-3]]]]],[[246,[],[[31,[]]]],[256,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[170,[-1,-2,-3]],[302,[-1,-2]]],[[302,[-1,-3]]],[[246,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[300,[-1,-2,-3]],[302,[-1,-2]]],[[46,[[302,[-1,-3]]]]],[[246,[],[[31,[]]]],[256,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[46,[233]]],125,[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[[46,[233]]],125,[],[]],[[169,169],[[46,[233]]]],[-1,[[300,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[200,[-1,-2]]],[],[]],[[-1,-1,-1],[[293,[-1,-2]]],[],[]],[[[200,[113,-1]]],[[200,[113,169]]],[]],[[[170,[-1,-2,-3]],[224,[-1]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],309,255],[],[]],[[[300,[-1,-2,-3]],-1,-1,-1,[224,[-1]]],[[300,[-1,-2,-3]]],[[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,309,307,255],[],[]],[[[170,[-1,-2,-3]],-1,-1],[[170,[-1,-2,-3]]],[92,[247,[],[[31,[]]]]],[],[]],[[[300,[-1,-2,-3]],-1,-1,-1],[[300,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[170,[-1,-2,-3]],[223,[-1,-2]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[300,[-1,-2,-3]],[291,[-1,-2]]],[[300,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[[246,[],[[31,[]]]],[256,[],[[31,[]]]],92,[247,[],[[31,[]]]],[238,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[[246,[],[[31,[]]]],[256,[],[[31,[]]]],92,[247,[],[[31,[]]]],[238,[],[[31,[]]]]],[]],[[[300,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[92,[247,[],[[31,[]]]],[256,[],[[31,[]]]],309,307,93],[],[]],[[-1,-1,-1,-1],[[301,[-1,-2,-3]]],[],[],[]],0,[-1,[[304,[-1,-2,-3]]],[],[],[]],0,[255,255],[[-1,-1,-1,-1],[[302,[-1,-2]]],[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[200,[-1,-2]],[267,[-1,-2]]],[[200,[-1,-2]]],310,[]],[[[293,[-1,-2]],[290,[-1,-2]]],[[293,[-1,-2]]],310,[]],0,[[[223,[-1,-2]]],[[223,[-1,-2]]],262,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],262,[]],[[[224,[-1]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],309,255],[],[]],[[-1,-1,-1,[224,[-1]]],[[300,[-1,-2,-3]]],[],[],[]],0,[[[227,[-1,-2]]],[[227,[-1,-2]]],312,[]],[[[303,[-1,-2]]],[[303,[-1,-2]]],312,[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],312,[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],[312,92],[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],312,[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],[312,92],[]],[[[302,[-1,-2]]],[[302,[-1,-2]]],[311,306,312,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],312,[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],[312,92],[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],[312,92],[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],312,[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],[312,92],[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],312,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],[312,92],[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],312,[]],[[[227,[-1,-2]]],[[227,[-1,-2]]],[311,306],[]],[[[303,[-1,-2]]],[[303,[-1,-2]]],[311,306],[]],[[[302,[-1,-2]]],[[302,[-1,-2]]],[311,306,312,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[227,[-1,-2]]],[[227,[-1,-2]]],[311,306],[]],[[[303,[-1,-2]]],[[303,[-1,-2]]],[311,306],[]],[[[302,[-1,-2]]],[[302,[-1,-2]]],[311,306,312,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[292,[-1,-2]]],313,[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[292,[-1,-2]]],313,[]],[[[227,[-2,-3]],-1,-1],[[227,[-2,-3]]],92,[[247,[-1],[[31,[]]]],92],[]],[[[303,[-2,-3]],-1,-1,-1],[[303,[-2,-3]]],92,[[247,[-1],[[31,[]]]],92],[]],[[[302,[-2,-3]],-1,-1],[[302,[-2,-3]]],92,[92,[247,[-1],[[31,[]]]]],[]],[[-1,-1],[[170,[-1,-2,-3]]],309,[],[]],[[-1,-1,-1],[[300,[-1,-2,-3]]],[309,307],[],[]],[[298,[200,[-1,-2]],[200,[-1,-2]]],[[200,[-1,-2]]],[],[]],[[299,[293,[-1,-2]],[293,[-1,-2]]],[[293,[-1,-2]]],[],[]],[[298,[267,[-1,-2]],[267,[-1,-2]]],[[267,[-1,-2]]],[],[]],[[299,[290,[-1,-2]],[290,[-1,-2]]],[[290,[-1,-2]]],[],[]],[[298,[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[],[]],[[299,[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[],[]],[[[227,[-1,-2]],[267,[-1,-2]]],41,[92,[246,[],[[31,[]]]]],[]],[255,255],[[[227,[-1,-2]]],[[267,[-1,-2]]],[92,[246,[],[[31,[]]]]],[]],[[[303,[-1,-2]]],[[290,[-1,-2]]],[92,[246,[],[[31,[]]]]],[]],0,[[-1,-1],[[267,[-1,-2]]],[],[]],[[-1,-1,-1],[[290,[-1,-2]]],[],[]],[[[224,[-1]],[224,[-1]]],[[300,[-1,-2,-3]]],[255,309,307],[],[]],[[[301,[-1,-2,-3]],[301,[-1,-2,-3]],-1],[[301,[-1,-2,-3]]],[],[],[]],[-1,[[200,[-1,-2]]],49,[]],[-1,[[293,[-1,-2]]],49,[]],[-1,[[267,[-1,-2]]],49,[]],[-1,[[290,[-1,-2]]],49,[]],[-1,[[296,[-1,-2,-3]]],49,[],[]],[-1,[[297,[-1,-2,-3]]],49,[],[]],[-1,[[223,[-1,-2]]],49,[]],[-1,[[291,[-1,-2]]],49,[]],[[[223,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[238,[],[[31,[]]]]],[]],[[[291,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[238,[],[[31,[]]]]],[]],[[[301,[-1,-2,-3]]],-1,266,[],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[],246,[]],[[[200,[-1,-2]],[200,[-1,-2]]],[],246,[]],[[[200,[-1,-2]],[223,[-1,-2]]],[],246,[]],[[[200,[-1,-2]],[267,[-1,-2]]],[],246,[]],[[[293,[-1,-2]],[290,[-1,-2]]],[],246,[]],[[[293,[-1,-2]],[293,[-1,-2]]],[],246,[]],[[[293,[-1,-2]],[291,[-1,-2]]],[],246,[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[],246,[],[]],[[[295,[-1,-2]],[295,[-1,-2]]],[[295,[-1,-2]]],[[246,[],[[31,[]]]]],[]],[[[267,[-1,-2]],[267,[-1,-2]]],[],246,[]],[[[290,[-1,-2]],[290,[-1,-2]]],[],246,[]],[[[296,[-1,-2,-3]],[296,[-1,-4,-3]]],[],246,[],[],[]],[[[297,[-1,-2,-3]],[297,[-1,-4,-3]]],[],246,[],[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[],246,[]],[[[291,[-1,-2]],[291,[-1,-2]]],[],246,[]],[[[292,[-1,-2]],[292,[-1,-2]]],41,268,[]],[[[200,[-1,-2]],[267,[-1,-2]]],41,268,[]],[[[200,[-1,-2]],[223,[-1,-2]]],41,[92,[246,[],[[31,[]]]]],[]],[[[293,[-1,-2]],[290,[-1,-2]]],41,268,[]],[[[293,[-1,-2]],[291,[-1,-2]]],41,[92,[246,[],[[31,[]]]]],[]],[[[295,[-1,-2]],[295,[-1,-2]]],41,268,[]],[[[267,[-1,-2]],[267,[-1,-2]]],41,268,[]],[[[290,[-1,-2]],[290,[-1,-2]]],41,268,[]],[[[296,[-1,-2,-3]],[296,[-1,-3,-3]]],41,268,[],[]],[[[297,[-1,-2,-3]],[297,[-1,-3,-3]]],41,268,[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],41,[92,[246,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],41,[92,[246,[],[[31,[]]]]],[]],[-3,[[292,[-1,-2]]],[[238,[],[[31,[]]]],309],[],[[269,[],[[42,[[292,[-1,-2]]]]]]]],[-3,[[292,[-1,-2]]],[[238,[],[[31,[]]]],92,309],[],[[269,[],[[42,[[292,[-1,-2]]]]]]]],[-3,[[267,[-1,-2]]],[[238,[],[[31,[]]]],309],[],[[269,[],[[42,[[267,[-1,-2]]]]]]]],[-3,[[267,[-1,-2]]],[[238,[],[[31,[]]]],92,309],[],[[269,[],[[42,[[267,[-1,-2]]]]]]]],[-3,[[290,[-1,-2]]],[[238,[],[[31,[]]]],309],[],[[269,[],[[42,[[290,[-1,-2]]]]]]]],[-3,[[290,[-1,-2]]],[[238,[],[[31,[]]]],92,309],[],[[269,[],[[42,[[290,[-1,-2]]]]]]]],[-3,[[223,[-1,-2]]],[[238,[],[[31,[]]]],309],[],[[269,[],[[42,[[223,[-1,-2]]]]]]]],[-3,[[223,[-1,-2]]],[[238,[],[[31,[]]]],92,309],[],[[269,[],[[42,[[223,[-1,-2]]]]]]]],[-3,[[291,[-1,-2]]],[[238,[],[[31,[]]]],92,309],[],[[269,[],[[42,[[291,[-1,-2]]]]]]]],[-3,[[291,[-1,-2]]],[[238,[],[[31,[]]]],309],[],[[269,[],[[42,[[291,[-1,-2]]]]]]]],[255,255],[[[304,[-1,-2,-3]],[304,[-1,-4,-2]]],[[304,[-1,-4,-3]]],266,[],[],[]],[[[301,[-1,-2,-3]],[301,[-1,-3,-4]]],[[301,[-1,-2,-4]]],[],[],[],[]],[[[170,[-1,-2,-3]],[170,[-1,-3,-4]]],[[170,[-1,-2,-4]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[],[]],[[[300,[-1,-2,-3]],[300,[-1,-3,-4]]],[[300,[-1,-2,-4]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[],[]],[[[305,[-1,-2,-3]],[305,[-1,-3,-4]]],[[305,[-1,-2,-4]]],[],[],[],[]],[[[170,[-1,-2,-3]],[224,[-1]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],309,255],[],[]],[[[300,[-1,-2,-3]],-1,-1,-1,[224,[-1]]],[[300,[-1,-2,-3]]],[[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,309,307,255],[],[]],[[[170,[-1,-2,-3]],-1,-1],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309],[],[]],[[[300,[-1,-2,-3]],-1,-1,-1],[[300,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[170,[-1,-2,-3]],[223,[-1,-3]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[300,[-1,-2,-3]],[291,[-1,-3]]],[[300,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[293,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[300,[-1,-2,-3]]],[[170,[-1,-2,-3]]],92,[],[]],[[[291,[-1,-2]]],[[223,[-1,-2]]],92,[]],[[[200,[-1,-2]]],[[293,[-1,-2]]],[309,92],[]],[[[304,[-1,-2,-3]]],[[301,[-1,-2,-3]]],266,[],[]],[[[170,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[309,307,92],[],[]],[[[223,[-1,-2]]],[[291,[-1,-2]]],[309,92],[]],[[[200,[-1,-2]]],[[278,[-1]]],92,[]],[[[293,[-1,-2]]],[[278,[-1]]],92,[]],[[[267,[-1,-2]]],[[278,[-1]]],92,[]],[[[290,[-1,-2]]],[[278,[-1]]],92,[]],[[[170,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[300,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[296,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[297,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[223,[-1,-2]]],[[278,[-1]]],92,[]],[[[291,[-1,-2]]],[[278,[-1]]],92,[]],[[[293,[-1,-2]]],[[278,[-1]]],[307,92],[]],[[[291,[-1,-2]]],[[278,[-1]]],[309,92],[]],[[[170,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[300,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[170,[-1,-2,-3]]],[[278,[[278,[-1]]]]],92,[],[]],[[[300,[-1,-2,-3]]],[[278,[[278,[-1]]]]],92,[],[]],[[[300,[-1,-2,-3]]],[[278,[[278,[-1]]]]],92,[],[]],[[[302,[-1,-2]]],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[227,[-1,-2]]],[[227,[113,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[113,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[113,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[113,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[113,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[113,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[113,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[113,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[113,-2]]],[251,92],[]],[[[227,[-1,-2]]],[[227,[270,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[270,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[270,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[270,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[270,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[270,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[270,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[270,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[270,-2]]],[251,92],[]],[[[227,[-1,-2]]],[[227,[285,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[285,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[285,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[285,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[285,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[285,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[285,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[285,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[285,-2]]],[251,92],[]],[[[227,[-1,-2]]],[[227,[284,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[284,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[284,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[284,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[284,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[284,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[284,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[284,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[284,-2]]],[251,92],[]],[[[227,[-1,-2]]],[[46,[[227,[-1,-2]]]]],[92,125],[]],[[[303,[-1,-2]]],[[46,[[303,[-1,-2]]]]],[92,125],[]],[[[302,[-1,-2]]],[[46,[[302,[-1,-2]]]]],[92,309,125],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[223,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[291,[-1,-2]]],[[293,[-1,-2]]],92,[]],[[[308,[-1,-2]]],[[46,[[200,[-1,-2]]]]],[92,[256,[],[[31,[]]]],309,125],[]],[[[308,[-1,-2]]],[[46,[[293,[-1,-2]]]]],[92,[256,[],[[31,[]]]],309,125],[]],[[[227,[-1,-2]]],[[302,[-1,-2]]],[92,[246,[],[[31,[]]]]],[]],[[[223,[-1,-2]]],[[267,[-1,-2]]],92,[]],[[[304,[-1,-2,-3]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],265,255],[],[]],[[[301,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[],[],[]],[[[296,[-1,-2,-3]]],[[170,[-1,-2,-3]]],[309,307,92],[],[]],[[[297,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[309,307,92],[],[]],[[[223,[-1,-2]]],[[170,[-1,-2,-2]]],[309,307,92],[]],[[[291,[-1,-2]]],[[300,[-1,-2,-2]]],[309,307,92],[]],[[[305,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[],[],[]],[[[200,[-1,-2]]],[[41,[-1,-1]]],92,[]],[[[293,[-1,-2]]],[[41,[-1,-1,-1]]],92,[]],[[[267,[-1,-2]]],[[41,[-1,-1]]],92,[]],[[[290,[-1,-2]]],[[41,[-1,-1,-1]]],92,[]],[[[296,[-1,-2,-3]]],[[41,[-1,-1]]],92,[],[]],[[[297,[-1,-2,-3]]],[[41,[-1,-1,-1]]],92,[],[]],[[[223,[-1,-2]]],[[41,[-1,-1]]],92,[]],[[[291,[-1,-2]]],[[41,[-1,-1,-1]]],92,[]],[[[293,[-1,-2]]],[[41,[-1,-1,-1,-1]]],[307,92],[]],[[[291,[-1,-2]]],[[41,[-1,-1,-1,-1]]],[309,92],[]],[[[227,[-1,-2]]],[[227,[61,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[61,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[61,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[61,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[61,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[61,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[61,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[61,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[61,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[282,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[282,-2]]],[251,92],[]],[[[227,[-1,-2]]],[[227,[-1,169]]],92,[]],[[[303,[-1,-2]]],[[303,[-1,169]]],92,[]],[[[200,[-1,-2]]],[[200,[-1,169]]],92,[]],[[[293,[-1,-2]]],[[293,[-1,169]]],92,[]],[[[302,[-1,-2]]],[[302,[-1,169]]],92,[]],[[[304,[-1,-2,-3]]],[[304,[-1,169,169]]],92,[],[]],[[[301,[-1,-2,-3]]],[[301,[-1,169,169]]],92,[],[]],[[[267,[-1,-2]]],[[267,[-1,169]]],92,[]],[[[290,[-1,-2]]],[[290,[-1,169]]],92,[]],[[[170,[-1,-2,-3]]],[[170,[-1,169,169]]],92,[],[]],[[[300,[-1,-2,-3]]],[[300,[-1,169,169]]],92,[],[]],[[[296,[-1,-2,-3]]],[[296,[-1,169,169]]],92,[],[]],[[[297,[-1,-2,-3]]],[[297,[-1,169,169]]],92,[],[]],[[[223,[-1,-2]]],[[223,[-1,169]]],92,[]],[[[291,[-1,-2]]],[[291,[-1,169]]],92,[]],[[[305,[-1,-2,-3]]],[[305,[-1,169,169]]],[],[],[]],[[[227,[-1,-2]]],[[227,[59,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[59,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[59,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[59,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[59,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[59,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[59,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[59,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[59,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[223,[-1,-2]]],92,[]],[[[293,[-1,-2]]],[[291,[-1,-2]]],92,[]],[[[267,[-1,-2]]],[[223,[-1,-2]]],92,[]],[[[290,[-1,-2]]],[[291,[-1,-2]]],92,[]],[[[296,[-1,-2,-3]]],[[223,[-1,-2]]],92,[],[]],[[[297,[-1,-2,-3]]],[[291,[-1,-2]]],92,[],[]],0,[[[296,[-1,-2,-3]],[227,[-1,-2]]],[[227,[-3]]],[238,92],[],[]],[[[294,[-1,-2,-3]],[227,[-1,-2]]],[[227,[-3]]],[92,247],[],[]],[[[297,[-1,-2,-3]],[227,[-1,-2]]],[[227,[-3]]],[238,92],[],[]],[[[294,[-1,-2,-3]],[303,[-1,-2]]],[[303,[-3]]],[92,247],[],[]],[[[297,[-1,-2,-3]],[303,[-1,-2]]],[[303,[-3]]],[238,92],[],[]],[[[304,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-1,-3]]],266,[],[]],[[[304,[-1,169,169]],[200,[-1,169]]],[[200,[-1,169]]],236],[[[294,[-1,169,169]],[200,[-1,169]]],[[200,[-1,169]]],236],[[[294,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-3]]],[92,247],[],[]],[[[170,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[170,[-1,169,169]],[200,[-1,169]]],[[200,[-1,169]]],236],[[[296,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-3]]],[238,92],[],[]],[[[296,[-1,169,169]],[200,[-1,169]]],[[200,[-1,169]]],236],[[[301,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-1,-3]]],[],[],[]],[[[300,[-1,-2,-3]],[200,[-1,-2]]],[[46,[[200,[-1,-3]]]]],[[256,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[297,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-3]]],[238,92],[],[]],[[[300,[-1,-2,-3]],[200,[-1,-2]]],[[308,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[301,[-1,-2,-3]],[293,[-1,-2]]],[[293,[-1,-3]]],[],[],[]],[[[294,[-1,-2,-3]],[293,[-1,-2]]],[[293,[-3]]],[92,247],[],[]],[[[300,[-1,-2,-3]],[293,[-1,-2]]],[[46,[[293,[-1,-3]]]]],[[256,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[297,[-1,-2,-3]],[293,[-1,-2]]],[[293,[-3]]],[238,92],[],[]],[[[300,[-1,-2,-3]],[293,[-1,-2]]],[[308,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[294,[-1,-2,-3]],[302,[-1,-2]]],[[302,[-3]]],[92,247],[],[]],[[[296,[-1,-2,-3]],[302,[-1,-2]]],[[302,[-3]]],[[238,[],[[31,[]]]],92],[],[]],[[[297,[-1,-2,-3]],[302,[-1,-2]]],[[302,[-1,-3]]],[[238,[],[[31,[]]]],92],[],[]],[[[294,[-1,-2,-3]],[267,[-1,-2]]],[[267,[-3]]],[92,247],[],[]],[[[296,[-1,-2,-3]],[267,[-1,-2]]],[[267,[-1,-3]]],[],[],[]],[[[297,[-1,-2,-3]],[267,[-1,-2]]],[[267,[-1,-3]]],[],[],[]],[[[304,[-1,169,169]],[223,[-1,169]]],[[223,[-1,169]]],236],[[[304,[-1,-2,-3]],[223,[-1,-2]]],[[223,[-1,-3]]],266,[],[]],[[[294,[-1,-2,-3]],[223,[-1,-2]]],[[223,[-3]]],[92,247],[],[]],[[[294,[-1,169,169]],[223,[-1,169]]],[[223,[-1,169]]],236],[[[170,[-1,169,169]],[223,[-1,169]]],[[223,[-1,169]]],236],[[[170,[-1,-2,-3]],[223,[-1,-2]]],[[223,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[296,[-1,169,169]],[223,[-1,169]]],[[223,[-1,169]]],236],[[[301,[-1,-2,-3]],[223,[-1,-2]]],[[223,[-1,-3]]],[],[],[]],[[[300,[-1,-2,-3]],[223,[-1,-2]]],[[223,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[301,[-1,-2,-3]],[291,[-1,-2]]],[[291,[-1,-3]]],[],[],[]],[[[300,[-1,-2,-3]],[291,[-1,-2]]],[[291,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[227,[-1,-2]],[223,[-1,-2]]],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[303,[-1,-2]],[291,[-1,-2]]],[[303,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[302,[-1,-2]],[223,[-1,-2]]],[[302,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[-1,-1],[[170,[-1,-2,-3]]],[309,307],[],[]],[[-1,-1,-1],[[300,[-1,-2,-3]]],[309,307],[],[]],0,[[[227,[-1,-2]]],[[46,[[227,[-3,-2]]]]],[251,92],[],251],[[[303,[-1,-2]]],[[46,[[303,[-3,-2]]]]],[251,92],[],251],[[[292,[-1,-2]]],[[46,[[292,[-3,-2]]]]],[251,49],[],251],[[[200,[-1,-2]]],[[46,[[200,[-3,-2]]]]],[251,92],[],251],[[[293,[-1,-2]]],[[46,[[293,[-3,-2]]]]],[251,92],[],251],[[[302,[-1,-2]]],[[46,[[302,[-3,-2]]]]],[251,92],[],251],[[[294,[-1,-2,-3]]],[[46,[[294,[-4,-2,-3]]]]],251,[],[],251],[[[267,[-1,-2]]],[[46,[[267,[-3,-2]]]]],[251,92],[],251],[[[290,[-1,-2]]],[[46,[[290,[-3,-2]]]]],[251,92],[],251],[[[170,[-1,-2,-3]]],[[46,[[170,[-4,-2,-3]]]]],[251,92],[],[],251],[[[300,[-1,-2,-3]]],[[46,[[300,[-4,-2,-3]]]]],[251,92],[],[],251],[[[223,[-1,-2]]],[[46,[[223,[-3,-2]]]]],[251,92],[],251],[[[291,[-1,-2]]],[[46,[[291,[-3,-2]]]]],[251,92],[],251],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[[[223,[-1,-2]]],[[46,[[223,[-1,-2]]]]],266,[]],[[[291,[-1,-2]]],[[46,[[291,[-1,-2]]]]],266,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[227,[-1,-2]],[227,[-1,-2]]],[[227,[-1,-2]]],[92,125],[]],[[[303,[-1,-2]],[303,[-1,-2]]],[[303,[-1,-2]]],[92,125],[]],[[[302,[-1,-2]],[302,[-1,-2]]],[[302,[-1,-2]]],[92,125,[238,[],[[31,[]]]],[246,[],[[31,[]]]],309],[]],[[-1,-1,-1,-1],[[301,[-1,-2,-3]]],266,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[-1,-1],[[223,[-1,-2]]],[],[]],[[-1,-1,-1],[[291,[-1,-2]]],[],[]],[[[301,[-1,-2,-3]]],[[291,[-1,169]]],92,[],[]],[[[295,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],[[[303,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[290,[-1,-2]]],-1,[[247,[],[[31,[]]]],92],[]],0,[[[227,[-1,-2]]],-1,[92,[246,[],[[31,[]]]]],[]],[[[303,[-1,-2]]],-1,[92,[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],0,0,[[[170,[-1,-2,-3]]],[[170,[-1,-2,-4]]],92,[],[],[]],[[[300,[-1,-2,-3]]],[[300,[-1,-2,-4]]],92,[],[],[]],[[[223,[-1,-2]],-1],[[223,[-1,-2]]],266,[]],[[[223,[-1,-2]],-1],[[223,[-1,-2]]],266,[]],[[[291,[-1,-2]],-1],[[291,[-1,-2]]],266,[]],[[[223,[-1,-2]],-1],[[223,[-1,-2]]],266,[]],[[[291,[-1,-2]],-1],[[291,[-1,-2]]],266,[]],[[[170,[-1,-2,-3]]],[[170,[-1,-4,-3]]],92,[],[],[]],[[[300,[-1,-2,-3]]],[[300,[-1,-4,-3]]],92,[],[],[]],0,0,0,0,0,0,0,0,0,[[[227,[-1,-2]]],[[208,[-1]]],92,[]],[[[303,[-1,-2]]],[[208,[-1]]],92,[]],[[[302,[-1,-2]]],[[208,[-1]]],[92,[238,[],[[31,[]]]]],[]],[[[293,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[291,[-1,-2]]],[[223,[-1,-2]]],92,[]],[299,298],[[[303,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[293,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[291,[-1,-2]]],[[223,[-1,-2]]],92,[]],[299,298],[[[303,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],0,0,0,0,0,0,0,0,0,[[[227,[-1,-2]]],[[208,[-1]]],92,[]],[[[303,[-1,-2]]],[[208,[-1]]],92,[]],[[[302,[-1,-2]]],[[208,[-1]]],[92,[238,[],[[31,[]]]]],[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],92,[]],[[[293,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[291,[-1,-2]]],[[223,[-1,-2]]],92,[]],[299,298],[[[303,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],0,0,0,0,0,[[[303,[-1,-2]]],[[208,[-1]]],92,[]],[[],[[227,[-1,-2]]],309,[]],[[],[[303,[-1,-2]]],309,[]],[[],[[292,[-1,-2]]],309,[]],[[],[[200,[-1,-2]]],309,[]],[[],[[200,[-1,-2]]],309,[]],[[],[[293,[-1,-2]]],309,[]],[[],[[293,[-1,-2]]],309,[]],[[],[[302,[-1,-2]]],309,[]],[[],[[295,[-1,-2]]],309,[]],[[],[[267,[-1,-2]]],309,[]],[[],[[267,[-1,-2]]],309,[]],[[],[[290,[-1,-2]]],309,[]],[[],[[290,[-1,-2]]],309,[]],[[],[[223,[-1,-2]]],309,[]],[[],[[223,[-1,-2]]],309,[]],[[],[[291,[-1,-2]]],309,[]],[[],[[291,[-1,-2]]],309,[]],0,[[],-1,[]],[[250,250],5],[[250,250,-1],5,[]],[[-1,-1],-1,125],[[-1,-1],-1,125],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[306,306],[311,311],[[],307],[312,312],[[],309],0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[244,[-1]],-1],[[314,[-1]]],236],[[[260,[-1]]],[[46,[[200,[-1,169]]]]],236],[[[261,[-1]]],[[46,[-1]]],236],[[[260,[-1]]],[[41,[59,[46,[59]]]]],236],[[[261,[-1]]],[[41,[59,[46,[59]]]]],236],0,[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,[[[241,[],[[240,[-1]]]],-1],[[241,[],[[240,[-1]]]]],236],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[241,[],[[240,[-1]]]],-1],[[241,[],[[240,[-1]]]]],236],[[[241,[],[[240,[-1]]]],-1],[[223,[-1,169]]],236],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[241,[],[[240,[-1]]]]],[[241,[],[[240,[-1]]]]],236],[[[241,[],[[240,[-1]]]],-1,163],41,236],[[[241,[],[[240,[-1]]]]],[[200,[-1,169]]],236],[[[241,[],[[240,[-1]]]],-1],[[200,[-1,169]]],236],[[[241,[],[[240,[-1]]]],-1],[[41,[[241,[],[[240,[-1]]]],[241,[],[[240,[-1]]]]]]],236],[[[241,[],[[240,[-1]]]],[208,[-1]]],[[241,[],[[240,[-1]]]]],236],[[[241,[],[[240,[-1]]]]],[[200,[-1,169]]],236],[[221,[200,[-1,169]]],[[200,[-1,169]]],[]],[[221,[223,[-1,169]]],[[223,[-1,169]]],[]],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[241,[],[[240,[-1]]]],-1],-1,236],[[-1,-1,-1,-1],[[254,[-1]]],236],[[[223,[-1,169]],[223,[-1,169]]],-1,236],[[[200,[-1,169]],[200,[-1,169]],[200,[-1,169]]],-1,236],[[-1,-1],[[41,[-1,-1]]],262],[[[223,[-1,169]]],[[223,[-1,169]]],236],[[[223,[-1,169]]],[[223,[-1,169]]],262],0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[315,[-1]]],[[269,[],[[42,[[200,[113,169]]]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[[316,113],[[317,[316]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[113,-1],[[317,[-1]]],[[269,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]]],[[-1,-2],[[318,[-2,-1]]],[[221,[113]]],[[269,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]]],[[5,-1],[[315,[-1]]],[[269,[],[[42,[[200,[113,169]]]]]]]],[[[219,[-1]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],[[269,[],[[42,[[189,[[41,[[200,[113,169]],[97,[113]]]],[200,[113,169]]]]]]]]]],[[[317,[-1]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],[[269,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]]],[[[318,[-1,-2]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],[[269,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]],[[221,[113]]]],[[[315,[-1]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],[[269,[],[[42,[[200,[113,169]]]]]]]],[-1,[[315,[-1]]],[[269,[],[[42,[[200,[113,169]]]]]]]],[[[317,[-1]]],[[41,[59,[46,[59]]]]],[[269,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]]],[[316,-1],[[318,[316,-1]]],[[221,[113]]]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[219,[-1]]],-1,[[269,[],[[42,[[189,[[41,[[200,[113,169]],[97,[113]]]],[200,[113,169]]]]]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[113,113],[[200,[113,169]]]],0,[[113,113],[[267,[113,169]]]],[[113,113],[[223,[113,169]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[184,[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[97,[113]]],182],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[184,168],[187,168],[187,168],[184,184],[187,187],[210,210],[215,215],[206,206],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[184,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[],184],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[184,5],41],[[187,5],41],[[187,5],41],[[184,[97,[179]]],41],[[187,[97,[179]]],41],[[206,77],[[79,[41,78]]]],[[215,113,-1],41,[[163,[[189,[[41,[[200,[113,169]],[97,[113]]]],[200,[113,169]]]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[218,168],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[184,[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[97,[113]]],182],[[],184],[59,187],[218,46],[210,[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]]],[215,46],[206,[[46,[[189,[182,197]]]]]],[184,59],[187,59],[187,59],[215,210],[[184,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[184,59,59],41],[[187,59,59],41],[[187,59,59],41],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[59,59],184],[184,[[220,[184]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[186,[200,[113,169]]],182],[[186,[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[97,[113]]],182],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[186,59],[186,59],[319,59],[319,59],[212,212],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[186,[200,[113,169]],[200,[113,169]],[200,[113,169]]],182],[[186,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[[186,5],41],[[186,5],41],[[319,5],41],[[319,5],41],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[186,[200,[113,169]],[97,[113]]],182],[[186,[200,[113,169]]],182],[[319,[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[97,[113]]],182],[[180,59],319],[212,[[46,[179]]]],[212,[[46,[179]]]],[186,59],[319,59],[[186,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[186,[200,[113,169]],[200,[113,169]]],182],[[319,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[186,59,59],41],[[186,59,59],41],[[319,59,59],41],[[319,59,59],41],[212,[[41,[59,[46,[59]]]]]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[186,59],319],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[214,214],[[[213,[-1]]],[[213,[-1]]],49],[[[216,[-1]]],[[216,[-1]]],49],[207,207],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[208,[61]],5],207],[214,[[46,[[189,[182,197]]]]]],[[[213,[-1]]],[[46,[[189,[-1,41]]]]],[]],[[[216,[-1]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],204],[207,[[46,[[189,[182,197]]]]]],[-1,[[320,[-2]]],[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,[[222,[200,[113,169]],113,196,[97,[113]]],41],[[222,[200,[113,169]],[223,[113,169]],[224,[113]],196,[97,[113]]],41],[[222,[225,[113]],[97,[113]]],[[41,[182,182]]]],[[222,[200,[113,169]],[97,[113]]],182],[[222,[190,[[200,[113,169]]]],[97,[113]]],41],[[226,[190,[[200,[113,169]]]]],41],[[222,[227,[113,169]],196,[97,[113]]],41],[[222,[227,[113,169]],228,196,[97,[113]]],41],[[226,[223,[113,169]],[224,[113]],188,[200,[113,169]]],41],[[222,[200,[113,169]],[97,[113]]],182],[[[232,[],[[231,[-1]]]]],-1,[]],[226,41],[222,41],[[222,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]],[200,[113,169]],[200,[113,169]]],41],[[222,5],41],[[222,[189,[[41,[[200,[113,169]],[97,[113]]]],[200,[113,169]]]]],41],[[222,113],[[229,[222]]]],[[316,113],[[317,[316]]]],[[226,113],41],[[222,[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]]],41],[[226,[200,[113,169]]],41],[222,59],[[222,[189,[[200,[113,169]],[200,[113,169]]]],[97,[113]]],41],[[222,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]],[200,[113,169]]],41],[[226,[223,[113,169]],[224,[113]],188,[223,[113,169]]],41],[[226,[223,[113,169]],[223,[113,169]],[223,[113,169]]],41],[[226,113],41],[[226,[223,[113,169]]],41],[[226,[223,[113,169]]],41],[[226,[223,[113,169]],[223,[113,169]]],41],[[226,113],41],[[222,59,59],41],[[226,59,59],41],[[226,[200,[113,169]],[200,[113,169]]],41],[[226,[200,[113,169]]],41],[[226,[223,[113,169]],[223,[113,169]]],41],[[226,[223,[113,169]]],41],[[222,-1],[[230,[222,-1]]],[[221,[113]]]],[[316,-1],[[318,[316,-1]]],[[221,[113]]]],[[226,113],41],[222,[[220,[222]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[33,[],[[146,[-1]]]],-1,5],7,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[7,7],[[[321,[-1]]],[[321,[-1]]],49],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[29,[-1,-2,-3]],37,-3,-2,68,69,70,65],41,[],[33,34],35],[59,41],[59,41],[59,41],[[[321,[-1]],[321,[-1]]],5,93],[[7,77],[[79,[41,78]]]],[[[321,[-1]],77],148,164],[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,25],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[33,[],[[146,[-1]]]],-1,5],7,107],[[[29,[-1,-2,-3]],321],[[29,[-1,-2,-3]]],[],[33,34],35],0,[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[29,[-1,-2,-3]],37,-3,94],95,[],[33,34],35],0,[[[29,[-1,-2,-3]],37,69,70,65,-3],99,[],[33,34],35],[[-1,5,-3],[[29,[-2,-4,-5]]],[[25,[30]]],[],[[32,[5],[[31,[-2]]]]],[33,34],35],[[[29,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],65],103,[],[33,34],35],0,[[[29,[-1,-2,-3]]],[[62,[84]]],[],[33,34],35],[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,[[25,[58]]]],0,[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,[[25,[58]]]],[[[29,[-1,-2,-3]]],127,[],[33,34],35],[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,25],[[[29,[-1,-2,-3]]],130,[],[33,34],35],0,[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,[[25,[322]]]],[[[29,[-1,-2,-3]],323],[[29,[-1,-2,-3]]],[],[33,34],35],[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,[[25,[58]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,[[25,[84]]]],0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-2,[[38,[30]]],48,[[43,[],[[42,[-1]]]]]],[[[47,[-1,-2,-3,-4]]],[[38,[37]]],[48,49],49,[54,50,112,51],35],[[[44,[-1]]],[[44,[-1]]],49],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[47,[-1,-2,-3,-4]],37,-4,-3,68,69,70,65],41,[48,49],49,[54,50,112,51],35],[59,41],[59,41],[[[44,[-1]],77],148,164],[[[47,[-1,-2,-3,-4]]],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[47,[-1,-2,-3,-4]],324],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[47,[-1,-2,-3,-4]],37,-4,94],95,[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[[25,[322]]]],[[[47,[-1,-2,-3,-4]],37,69,70,65,-4],99,[48,49],49,[54,50,112,51],35],[[[44,[-1]],45,[46,[-1]],-3],[[47,[-1,-2,-4,-5]]],[48,49],[],[[32,[-1],[[31,[-2]]]]],[50,51],35],[[[38,[-1]]],[[44,[-1]]],[48,49]],[[[47,[-1,-2,-3,-4]],-2],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35],[[[47,[-1,-2,-3,-4]],37,100,69,70,-4,101,[102,[-2]],65],103,[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[[32,[30],[[31,[-2]]]]]],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[[32,[-1],[[31,[-2]]]]]],[[[47,[-1,-2,-3,-4]],37,69,-4],[[46,[[108,[-2,-3,-4]]]]],[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[[25,[149]]]],[[-2,-4,45],[[0,[[269,[],[[42,[-1]]]]]]],[],[[43,[],[[42,[-1]]]]],[[325,[45]]],[[43,[],[[42,[-3]]]]]],[[[47,[-1,-2,-3,-4]]],[[62,[84]]],[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]],113],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35],[[[47,[-1,-2,-3,-4]]],127,[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[25,25,49]],[[[47,[-1,-2,-3,-4]]],130,[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[25,49]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[[25,[84]]]],[[[38,[-1]],[46,[-1]]],[[44,[-1]]],[48,49]],0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[53,[-1,-2,-3]],326],[[53,[-1,-2,-3]]],[],54,23],[[[53,[-1,-2,-3]],327],[[53,[-1,-2,-3]]],[],54,23],[[[54,[],[[146,[-1]]]],-1],19,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[53,[-1,-2,-3]]],[[53,[-1,-2,-3]]],[],54,23],[[[53,[-1,-2,-3]]],[[53,[-1,-2,-3]]],[],54,23],[[[53,[-1,-2,-3]]],[[38,[37]]],[],54,23],[19,19],[328,328],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],19],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[53,[-1,-2,-3]],37],41,[],54,23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[53,[-1,-2,-3]],37,-3,-2,68,69,70,65],41,[],54,23],[[-1,19,65],41,23],[59,41],[59,41],[59,41],[[328,328],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[19,77],[[79,[41,78]]]],[[328,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[328,-1],41,205],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,[[25,[84]]]],[[[53,[-1,-2,-3]],328],[[53,[-1,-2,-3]]],[],54,23],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[94,84,84,113,113,149,326,327,-1],95,[[57,[94],[[31,[95]]]]]],[[[53,[-1,-2,-3]],37,-3,94],95,[],54,23],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,[[25,[58]]]],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,[[25,[58]]]],[[[53,[-1,-2,-3]],37,69,70,65,-3],99,[],54,23],[-4,[[53,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],[-1,328,[[25,[[98,[45]]]]]],[[[53,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],65],103,[],54,23],[[[53,[-1,-2,-3]],37,69,-3,106],41,[],54,23],[[[53,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],54,23],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,[[25,[149]]]],0,[[[53,[-1,-2,-3]]],[[62,[84]]],[],54,23],[[[53,[-1,-2,-3]]],127,[],54,23],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,25],[[[53,[-1,-2,-3]]],130,[],54,23],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],328],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[328,[[80,[[46,[65]]]]]],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,[[25,[84]]]],[[19,-1],19,[[25,[75]]]],[[19,-1,-2],19,[[25,[64]]],[[25,[58]]]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[63,63],[66,66],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[87,[-1]],329],[[87,[-1]]],[]],[63,330],[[],66],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,69,-1,329,66],41,[49,39],[[332,[],[[331,[-1]]]]]],[[[87,[-1]],37,-2,-3,68,69,70,65],41,[49,39],[[332,[],[[331,[-1]]]]],[]],[59,41],[59,41],[59,41],[[63,63],5],[[66,66],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[[87,[-1]],66],[[87,[-1]]],[]],[[63,77],[[79,[41,78]]]],[[66,77],[[79,[41,78]]]],[[[87,[-1]],77],148,164],[-1,-1,[]],[-1,63,[[25,[333]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,63,[[325,[[97,[96]]]],334,335]],[-1,63,[[25,[333]]]],[[61,61,-1],63,[[325,[[97,[96]]]],334,335]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[63,-1],41,205],[[66,-1],41,205],[[[87,[-1]],-2],[[87,[-1]]],[],[[25,[84]]]],[63,282],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,94,-1,84,84,329],95,[],[[332,[],[[331,[-1]]]]]],[[[87,[-1]],37,-2,94],95,[49,39],[[332,[],[[331,[-1]]]]]],[-2,[[87,[-1]]],[],[[25,[-1]]]],[[[87,[-1]]],[[62,[84]]],[49,39]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,[-1,[[336,[-1]]],[]],[[[87,[-1]],-2],[[87,[-1]]],[],[[25,[84]]]],0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[337,337],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],337],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[336,[-1]],37,-2,-3,68,69,70,65],41,[49,39],[[332,[],[[331,[-1]]]]],[]],[59,41],[59,41],[[337,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[336,[-1]],-2],[[336,[-1]]],[],[[25,[84]]]],[[-1,337,62],62,332],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[337,5],[[[336,[-1]],37,-2,94],95,[49,39],[[332,[],[[331,[-1]]]]]],[[[336,[-1]],113],[[336,[-1]]],[]],[[[336,[-1]],113],[[336,[-1]]],[]],[[[336,[-1]],37,69,70,65,-2],99,[49,39],[[332,[],[[331,[-1]]]]]],[-1,[[336,[-1]]],[]],[[],337],[[[336,[-1]],37,100,69,70,-2,101,[102,[-3]],65],103,[49,39],[[332,[],[[331,[-1]]]]],[]],[[[336,[-1]],-2],[[336,[-1]]],[],[[25,[58]]]],[[[336,[-1]],113],[[336,[-1]]],[]],[[[336,[-1]]],[[62,[84]]],[49,39]],[[[336,[-1]]],127,[49,39]],[[[336,[-1]]],130,[49,39]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[336,[-1]],-2],[[336,[-1]]],[],[[25,[84]]]],0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[91,[-1,-2,-3,-4]],338],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[91,[-1,-2,-3,-4]]],[[38,[37]]],[92,93],[],[],23],[-1,-2,[],[]],[[],[[91,[-1,-2,-3]]],[92,93],[],23],[59,-1,[]],[59,-1,[]],[[[91,[-1,-2,-3,-4]],37],41,[92,93],[],[],23],[-1,-2,[],[]],[[[91,[-1,-2,-3,-4]],37,-4,-3,68,69,70,65],41,[92,93],[],[],23],[59,41],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[91,[-1,-2,-3,-4]],-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[84]]]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[91,[-1,-2,-3,-4]],37,-4,94],95,[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[58]]]],[[[91,[-1,-2,-3,-4]],37,69,70,65,-4],99,[92,93],[],[],23],[[],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],37,100,69,70,-4,101,[102,[-2]],65],103,[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],37,69,-4,106],41,[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],37,69,-4],[[46,[[108,[-2,-3,-4]]]]],[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[149]]]],[[[91,[-1,-2,-3,-4]],-1,-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[[24,[-2,-3,-4]]]]]],[[[91,[-1,-2,-3,-4]]],[[62,[84]]],[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[58]]]],[[[91,[-1,-2,-3,-4]]],127,[92,93],[],[],23],[[[91,[-1,-2,-3,-4]]],130,[92,93],[],[],23],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[[[91,[-1,-2,-3,-4]],-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[84]]]],[-5,[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[43,[],[[42,[[41,[-1,[24,[-2,-3,-4]]]]]]]]]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[51,[],[[146,[-1]]]],-1],18,[107,49]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[18,18],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],339],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[[18,77],[[79,[41,78]]]],[[339,77],148],[[[340,[-1,-2,-3,-4]],-5],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35,25],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[339,[97,[-1]],[46,[59]],-3,[46,[32]]],[[340,[-1,-2,-4,-5]]],[110,49],[],[[163,[-1],[[31,[-2]]]]],[51,54,112],35],[[],339],[[[340,[-1,-2,-3,-4]],73,113],[[108,[-2,-3,-4]]],[110,49],[],[51,54,112],35],[[[340,[-1,-2,-3,-4]],-5],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35,[[25,[149]]]],0,0,[[[340,[-1,-2,-3,-4]],-5],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35,25],0,[[[340,[-1,-2,-3,-4]],-5],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35,[[25,[322]]]],[[[340,[-1,-2,-3,-4]],323],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35],[[[340,[-1,-2,-3,-4]],-5],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35,[[25,[58]]]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[340,[-1,-2,-3,-4]],113],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[341,[-1,-2,-3]]],[[341,[-1,-2,-3]]],[],54,23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[342,69,73],5],[[[343,[-1,-2,-3]],69,73],5,[],54,23],[[[344,[-1,-2,-3]]],[[38,[37]]],[],[345,54],23],[85,85],[86,86],[346,346],[[[347,[-1]]],[[347,[-1]]],49],[348,348],[349,349],[350,350],[351,351],[352,352],[353,353],[354,354],[355,355],[356,356],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[350,350],233],[[351,351],233],0,[[-1,-2],233,[],[]],[[-1,-2],233,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[341,[-1,-2,-3]],-4],[[341,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],[[],354],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[344,[-1,-2,-3]],37],41,[],[345,54],23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[357,349,69,70,-1,-2,68,65,113,[46,[113]],-4,-5],41,23,345,[],[[269,[],[[42,[[41,[350,-3]]]]]]],[[32,[-3,-1,68,69,70,65]]]],[[[343,[-1,-2,-3]],37,-3,-2,68,69,70,65],41,[],54,23],[[[341,[-1,-2,-3]],37,-3,-2,68,69,70,65,5],41,[],54,23],[[[344,[-1,-2,-3]],37,-3,-2,68,69,70,65],41,[],[345,54],23],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[86,86],5],[[346,346],5],[[348,348],5],[[350,350],5],[[351,351],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[85,77],[[79,[41,78]]]],[[86,77],[[79,[41,78]]]],[[346,77],148],[[[347,[-1]],77],148,164],[[348,77],148],[[349,77],148],[[350,77],148],[[351,77],148],[[352,77],148],[[353,77],148],[[354,77],148],[[355,77],148],[[356,77],148],[[[358,[-1]],77],148,164],[-1,-1,[]],[-1,-1,[]],[-4,[[343,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[346,-1],41,205],[[349,-1],41,205],[[350,-1],41,205],[[351,-1],41,205],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,[[25,[84]]]],[[[345,[],[[146,[-1]]]],-1],85,107],[[[345,[],[[146,[-1]]]],-1],[[46,[86]]],107],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[341,[-1,-2,-3]],69,73],5,[],54,23],[[[358,[-1]]],[[88,[269]]],[]],[[37,-1,94,349,84,84,113,-3,-4],95,[],[],[[269,[],[[42,[[41,[350,-2]]]]]]],[[32,[-2,37,-1,94],[[31,[95]]]]]],[[[344,[-1,-2,-3]],37,-3,94],95,[],[345,54],23],[[[358,[-1]]],349,[]],[[357,349,69,70,113,[46,[113]]],[[46,[99]]]],[[[344,[-1,-2,-3]],37,69,70,65,-3],99,[],[345,54],23],[-4,[[343,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],[-4,[[341,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],[[[359,[-1]],-5],[[344,[-2,-3,-4]]],[],[],[345,54],23,[[32,[350,-1,5],[[31,[[343,[-2,-3,-4]]]]]]]],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,[[32,[350],[[31,[-1]]]]]],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,[[32,[352],[[31,[-1]]]]]],[[[344,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],65],103,[],[345,54],23],[[[344,[-1,-2,-3]],-4,-5],[[344,[-1,-2,-3]]],[],[345,54],23,[[25,[58]]],[[32,[356],[[31,[-1]]]]]],[[[344,[-1,-2,-3]],37,69,-3,106],41,[],[345,54],23],[[[344,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],[345,54],23],[[[341,[-1,-2,-3]],-4],[[341,[-1,-2,-3]]],[],54,23,[[25,[149]]]],[[349,113,62],[[360,[350,65]]]],[[350,350],[[46,[233]]]],[[351,351],[[46,[233]]]],[[[345,[],[[146,[-1]]]],-1],[[46,[86]]],107],0,[[[344,[-1,-2,-3]]],[[62,[84]]],[],[345,54],23],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,[[25,[58]]]],[[346,65,113,113],[[41,[65,65]]]],0,[[346,65,113,113],65],[[349,113,62],[[360,[351,[41,[346,65,113]]]]]],[349,[[0,[[269,[],[[42,[351]]]]]]]],0,[[[344,[-1,-2,-3]]],127,[],[345,54],23],[[[343,[-1,-2,-3]],-4],[[343,[-1,-2,-3]]],[],54,23,25],[[[341,[-1,-2,-3]],-4],[[341,[-1,-2,-3]]],[],54,23,25],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,25],[[[344,[-1,-2,-3]]],130,[],[345,54],23],[[[343,[-1,-2,-3]],[341,[-1,-2,-3]]],[[343,[-1,-2,-3]]],[],54,23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[357,349,100,69,70,[102,[-1]],113,-3,[46,[[88,[32]]]],[46,[[88,[32]]]],[46,[[41,[113,[88,[32]]]]]]],103,[],342,[[269,[],[[42,[[41,[350,-2]]]]]]]],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,[[25,[84]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[359,[-1]],350,348],[[46,[350]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[357,[[46,[[41,[350,73]]]]]],[[[359,[-1]]],[[359,[-1]]],49],[361,361],[357,357],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[[359,[-1]],350],[[46,[[41,[-1,350]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[[[359,[-1]],350,353],41,[]],[59,41],[59,41],[[357,357],5],[[[359,[-1]],77],148,164],[[361,77],148],[[357,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[362,[350,-1]],[347,[-1]],59],361,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[359,[-1]],350],[[46,[-1]]],[]],[[[359,[-1]],350],[[46,[-1]]],[]],[[],59],[[],59],[[],59],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[359,[-1]]],5,[]],[[[359,[-1]]],[[0,[[269,[],[[42,[[41,[350,-1]]]]]]]]],[]],[[[359,[-1]]],[[0,[[269,[],[[42,[[41,[350,-1]]]]]]]]],[]],[[[359,[-1]]],349,[]],[361,349],[[[359,[-1]]],59,[]],[[[359,[-1]],350],41,[]],[[[359,[-1]]],[[46,[350]]],[]],[[[359,[-1]],350,355],41,[]],[-1,[[41,[[359,[-1]],350]]],[]],0,[357,[[46,[[41,[350,73]]]]]],[357,[[46,[[41,[351,346]]]]]],[[[359,[-1]],351,113],41,[]],[[[359,[-1]]],41,[]],[[[359,[-1]],346,350,-1],[[46,[[41,[350,351]]]]],[]],[[[359,[-1]],350,350,354],41,[]],[[[359,[-1]],350,350],41,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-2,[[359,[-1]]],[],[[25,[[347,[-1]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[111,[],[[146,[-1]]]],-1],11,[107,49]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[11,11],[[[363,[-1]]],[[363,[-1]]],49],[[[364,[-1]]],[[364,[-1]]],49],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[365,[-1]]],366],[[],[[363,[-1]]],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2,69,70,149,[46,[58]],322,323,[46,[45]],[46,[-3]],363,-4,65],41,35,111,110,[[57,[],[[31,[365]]]]]],[[[109,[-1,-2,-3,-4]],37,-4,-3,68,69,70,65],41,[49,110,93],[],[111,112,51,54],35],[59,41],[59,41],[59,41],[59,41],[59,41],[[[363,[-1]],[363,[-1]]],5,93],[[[364,[-1]],[364,[-1]]],5,93],[[11,77],[[79,[41,78]]]],[[[365,[-1]],77],148,[164,366]],[[[363,[-1]],77],148,164],[[[364,[-1]],77],148,164],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,25],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[109,[-1,-2,-3,-4]],363],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35],0,[[[111,[],[[146,[-1]]]],-1],11,[107,49]],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[365,-1,94,84,149,[46,[58]],322,323,46,[46,[45]],[97,[-2]]],95,35,110],[[[109,[-1,-2,-3,-4]],37,-4,94],95,[49,110,93],[],[111,112,51,54],35],0,[[69,70],99],[[[109,[-1,-2,-3,-4]],37,69,70,65,-4],99,[49,110,93],[],[111,112,51,54],35],[[-2,[46,[-1]],-4],[[109,[-1,-3,-5,-6]]],[110,93],[[25,[[98,[[97,[-1]]]]]]],[],[[32,[-1],[[31,[-3]]]]],[111,112,51,54],35],[[[109,[-1,-2,-3,-4]],37,100,69,70,-4,101,[102,[-2]],65],103,[49,110,93],[],[111,112,51,54],35],[[69,365,149,[46,[58]],323,[97,[-1]],32],[[46,[[108,[-2,-3,-4]]]]],[49,110],[],[111,112,51,54],35],[[[109,[-1,-2,-3,-4]],37,69,-4],[[46,[[108,[-2,-3,-4]]]]],[49,110,93],[],[111,112,51,54],35],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,[[25,[149]]]],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,[[25,[30]]]],0,0,[[[109,[-1,-2,-3,-4]]],[[62,[84]]],[49,110,93],[],[111,112,51,54],35],0,[[[109,[-1,-2,-3,-4]]],127,[49,110,93],[],[111,112,51,54],35],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,25],[[[109,[-1,-2,-3,-4]]],130,[49,110,93],[],[111,112,51,54],35],0,[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,[[25,[322]]]],[[[109,[-1,-2,-3,-4]],323],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,[[25,[58]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[100,69,70,[102,[-1]],32,[46,[-2]],[97,[-2]],-4],103,[],[93,49],366,[[57,[],[[31,[[365,[-3]]]]]]]],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,[[25,[84]]]],0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[116,[],[[146,[-1]]]],-1],14,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,14],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[115,[-1]],37,-2,-1,68,69,70,65],41,116,23],[59,41],[59,41],[[14,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[115,[-1]],-2],[[115,[-1]]],116,[[25,[84]]]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[115,[-1]],37,-2,94],95,116,23],[[[114,[113]],113],[[115,[-1]]],116],[[[115,[-1]]],[[62,[84]]],116],[[[115,[-1]],-2],[[115,[-1]]],116,25],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[115,[-1]],-2],[[115,[-1]]],116,[[25,[84]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[367,288],367],[368,368],[369,369],[370,370],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[367,64,64],367],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[367,37,40,-1,68,69,70,65],41,[]],[59,41],[59,41],[59,41],[59,41],[59,41],[[368,368],5],[[369,369],5],[[370,370],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[367,77],148],[[371,77],148],[[368,77],148],[[369,77],148],[[370,77],148],[[370,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[372,370],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[367,37,40,94],95],[371,367],[-1,[[79,[371,370]]],[[325,[[97,[96]]]]]],[367,[[62,[84]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,137,[]],[-1,30,[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[-1,369],[[79,[371,370]]],[[325,[[97,[96]]]]]],[[-1,368,369],[[79,[371,370]]],[[325,[[97,[96]]]]]],0,0,0,0,0,0,[[[119,[],[[146,[-1]]]],-1,5],6,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[6,6],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[[117,[-1,-2,-3]],37,-3,-2,68,69,70,65],41,49,[119,34],35],[59,41],[59,41],[[6,77],[[79,[41,78]]]],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,25],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[119,[],[[146,[-1]]]],-1,5],6,107],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[117,[-1,-2,-3]],37,-3,94],95,49,[119,34],35],[[[117,[-1,-2,-3]],37,69,70,65,-3],99,49,[119,34],35],[[-1,-2,[46,[-2]],-4],[[117,[-3,-5,-6]]],[[25,[30]]],[118,92],49,[[57,[-2],[[31,[-3]]]]],119,35],[[[117,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],65],103,49,[119,34],35],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,[[25,[58]]]],[[[117,[-1,-2,-3]]],[[62,[84]]],49,[119,34],35],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,[[25,[58]]]],[[[117,[-1,-2,-3]]],127,49,[119,34],35],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,25],[[[117,[-1,-2,-3]]],130,49,[119,34],35],0,[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,[[25,[322]]]],[[[117,[-1,-2,-3]],323],[[117,[-1,-2,-3]]],49,119,35],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,[[25,[58]]]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,[[25,[84]]]],0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[82,[],[[146,[-1]]]],-1],17,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[17,17],[373,373],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[81,[-1]],37,-2,-1,68,69,70,65],41,82,23],[59,41],[59,41],[59,41],[[373,113],[[41,[113,113]]]],0,[[17,77],[[79,[41,78]]]],[[373,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[81,[-2]]],[[25,[58]]],82],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[81,[-1]],37,-2,94],95,82,23],0,[[[81,[-1]]],[[62,[84]]],82],[[[81,[-1]],-2],[[81,[-1]]],82,25],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[81,[-2]]],[[25,[58]]],82],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[374,375],[374,375],[[[112,[],[[146,[-1]]]],-1],10,107],[[[112,[],[[146,[-1]]]],-1],10,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[376,377],376],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[374,65],[[[120,[-1,-2,-3]]],[[38,[37]]],[],112,23],[10,10],[378,378],[375,375],[379,379],[380,380],[376,376],[377,377],[381,381],[382,382],[374,374],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[374,65],[[],375],[[],379],[[],380],[[],376],[[],377],[[],382],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[120,[-1,-2,-3]],37],41,[],112,23],[[[120,[-1,-2,-3]],380],[[120,[-1,-2,-3]]],[],112,23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[112,[],[[146,[-1]]]],-1],10,107],[[[112,[],[[146,[-1]]]],-1],10,107],[[382,-1,-2,69,70,380,-3],41,23,112,[[57,[-1,69,70,65]]]],[[[120,[-1,-2,-3]],37,-3,-2,68,69,70,65],41,[],112,23],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[375,375],5],[[379,379],5],[[380,380],5],[[376,376],5],[[377,377],5],[[381,381],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[10,77],[[79,[41,78]]]],[[378,77],[[79,[41,78]]]],[[375,77],[[79,[41,78]]]],[[379,77],[[79,[41,78]]]],[[380,77],148],[[376,77],148],[[377,77],148],[[381,77],148],[[382,77],148],[[374,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[381,-1],41,205],[[[120,[-1,-2,-3]],-4],[[120,[-1,-2,-3]]],[],112,23,[[25,[84]]]],[380,[[46,[376]]]],[[[112,[],[[146,[-1]]]],-1,5],10,107],[[[112,[],[[146,[-1]]]],-1,5],10,107],[[[120,[-1,-2,-3]],381],[[120,[-1,-2,-3]]],[],112,23],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,94,84,84,380,-2],95,[],[[57,[-1,94],[[31,[95]]]]]],[[[120,[-1,-2,-3]],37,-3,94],95,[],112,23],[[376,-1],376,[[25,[58]]]],[[382,69,70,380,-1],99,[[57,[69,70,65],[[31,[99]]]]]],[[[120,[-1,-2,-3]],37,69,70,65,-3],99,[],112,23],[-4,[[120,[-1,-2,-3]]],[],112,23,[[25,[[24,[-1,-2,-3]]]]]],[[],376],[-1,381,[[25,[[98,[45]]]]]],[[],382],[[[120,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],65],103,[],112,23],[[[120,[-1,-2,-3]],-4],[[120,[-1,-2,-3]]],[],112,23,[[32,[374],[[31,[-1]]]]]],[[[120,[-1,-2,-3]],37,69,-3,106],41,[],112,23],[[[120,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],112,23],[374,379],[[382,[145,[113]],380,65,65],41],[[381,375],[[80,[-1]]],[]],[[382,375],41],[[382,375],41],[[382,113,65,65],41],[[382,113,65,65],41],0,[[376,-1],376,[[25,[58]]]],[382,5],[[[120,[-1,-2,-3]]],[[62,[84]]],[],112,23],[[381,379],[[80,[-1]]],[]],[[382,379],41],[[382,379],41],[[[120,[-1,-2,-3]]],127,[],112,23],[[[120,[-1,-2,-3]],-4],[[120,[-1,-2,-3]]],[],112,23,25],[[[120,[-1,-2,-3]]],130,[],112,23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],381],[[382,65,65],41],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[382,100,69,70,101,[102,[-1]],380,[46,[[88,[32]]]],-2],103,[],[[57,[100,69,70,101,[102,[-1]],65],[[31,[103]]]]]],[380,[[46,[376]]]],[[[120,[-1,-2,-3]],-4],[[120,[-1,-2,-3]]],[],112,23,[[25,[84]]]],[[376,-1],376,[[25,[58]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[383,383],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],384],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[122,[],[[104,[-1]],[385,[-2]]]],-1,70,65],-2,107,72],[[[121,[-1,-2]],37,-3,-4,68,69,70,65],41,[],[[122,[-1]]],386,[]],[59,41],[59,41],[59,41],[[383,383],5],[[384,77],[[79,[41,78]]]],[[383,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[384,[[46,[-1]]],[]],[384,[[46,[-1]]],[]],[384,5],[[[121,[-1,-2]],-3],[[121,[-1,-2]]],[],[[122,[-1]]],[[25,[84]]]],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[121,[-1,-2]],37,-3,94],95,[],[[122,[-1]]],386],[[[122,[],[[104,[-1]],[385,[-2]]]],-1,65,70],99,107,72],[[[122,[],[[104,[-1]],[385,[-2]]]],-1,65,70],99,107,72],[[[121,[-1,-2]],37,69,70,65,-3],99,[],[[122,[-1]]],386],[-2,[[121,[-1,-2]]],[],[[122,[-1]]]],[[[121,[-1,-2]],37,100,69,70,-3,101,[102,[-1]],65],103,[],[[122,[-1]]],386],[[72,387,388,389,65,[62,[61]],113,384],41],[[72,384,390,[62,[61]],[65,[61]],391],41],[[[121,[-1,-2]]],[[62,[84]]],[],[[122,[-1]]]],[[[121,[-1,-2]]],127,[],[[122,[-1]]]],[[384,-1],41,334],[[[121,[-1,-2]]],130,[],[[122,[-1]]]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[122,[],[[104,[-1]],[385,[-2]]]],-1,383,65,70,[102,[-3]]],[[41,[103,[46,[-3]]]]],107,72,[]],[[[122,[],[[104,[-1]],[385,[-2]]]],-1,383,65,70,[102,[-3]]],[[41,[103,[46,[-3]]]]],107,72,[]],0,[[[121,[-1,-2]],-3],[[121,[-1,-2]]],[],[[122,[-1]]],[[25,[84]]]],0,0,0,0,0,0,0,0,0,0,0,[[[126,[],[[146,[-1]]]],-1],8,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[392,392],[393,393],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],393],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[126,[],[[146,[-1]]]],-1],8,107],[[-1,69,70,393,-2,[114,[-2]],-3],41,23,[[25,[270]],92],126],[[[123,[-1,-2,-3]],37,-4,-3,68,69,70,65],41,[92,[25,[270]],394],49,126,23],[59,41],[59,41],[59,41],[[393,393],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[392,77],[[79,[41,78]]]],[[393,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[123,[-1,-2,-3]],-4],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[58]]]],[[[126,[],[[146,[-1]]]],-1],8,107],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[123,[-1,-2,-3]],37,-4,94],95,[92,[25,[270]],394],49,126,23],[[69,70,393],99],[[[123,[-1,-2,-3]],37,69,70,65,-4],99,[92,[25,[270]],394],49,126,23],[[[114,[-1]],-1,-3],[[123,[-1,-2,-4]]],[92,[124,[96]],125],49,[[32,[-1],[[31,[-2]]]]],126],[[],393],[[[123,[-1,-2,-3]],37,100,69,70,-4,101,[102,[-2]],65],103,[92,[25,[270]],394],49,126,23],[[[123,[-1,-2,-3]],-2],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126],0,0,[[[123,[-1,-2,-3]]],[[62,[84]]],[92,[25,[270]],394],49,126],[[[123,[-1,-2,-3]]],127,[92,[25,[270]],394],49,126],[[[123,[-1,-2,-3]],-4],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[-1]]]],[[[123,[-1,-2,-3]],-4],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126,25],[[[123,[-1,-2,-3]]],130,[92,[25,[270]],394],49,126],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[100,69,70,[102,[-1]],393,-2,[114,[-2]],-2,32,[46,[-1]]],103,49,[92,[25,[270]],394]],[[[123,[-1,-2,-3]],-4],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[84]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[[83,37,-1,-2,68,69,70,65],41,23,[]],[59,41],[[83,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[83,37,-1,94],95,23],[[-1,-2],83,[[25,[84]]],[[25,[84]]]],[83,[[62,[84]]]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,83,[[25,[84]]]],[-1,83,[[25,[84]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[129,[],[[146,[-1]]]],-1],16,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[16,16],[60,60],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[128,[-1]],329],[[128,[-1]]],129],[60,395],[[],16],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[128,[-1]],37,-2,-1,68,69,70,65],41,129,396],[59,41],[59,41],[59,41],[[60,60],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[16,77],[[79,[41,78]]]],[[60,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,60,[[25,[[98,[[97,[96]]]]]]]],[-1,60,[[25,[333]]]],[-1,[[128,[-2]]],[[25,[333]]],129],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[60,-1],41,205],[[[128,[-1]],-2],[[128,[-1]]],129,[[25,[84]]]],[[[129,[],[[146,[-1]]]],-1],16,107],[60,282],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[128,[-1]],37,-2,94],95,129,396],[-1,[[128,[-2]]],[[25,[60]]],129],[[[128,[-1]]],[[62,[84]]],129],[[[128,[-1]],-2],[[128,[-1]]],129,25],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[128,[-1]],-2],[[128,[-1]]],129,[[25,[84]]]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[34,[],[[146,[-1]]]],-1],13,[107,49]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[323,323],[322,322],[13,13],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],323],[[],322],[[],[[397,[-1]]],[107,366]],[[],13],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,68,69,397,13,65],41,35],[59,41],[59,41],[59,41],[59,41],[[323,323],5],[[322,322],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[323,77],[[79,[41,78]]]],[[322,77],[[79,[41,78]]]],[[[397,[-1]],77],[[79,[41,78]]],[164,366]],[[13,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[58,322],[113,322],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[323,-1],41,205],[[322,-1],41,205],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[397,-1,94,84,84,45,322,[46,[58]],46,326,327,323],95,35],[[322,58],58],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[135,[],[[146,[-1]]]],-1],4,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[4,4],[398,398],[399,399],[400,400],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[132,[-1]]],[[41,[59,59]]],35],[[],[[132,[-1]]],35],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[400,401],[[[135,[],[[146,[-1]]]],-1],4,107],[[[135,[],[[146,[-1]]]],-1],64,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[134,[-1,-2,-3,-4]],37,-4,-3,68,69,70,65],41,402,[],135,35],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[398,398],5],[[399,399],5],[[400,400],5],[[4,77],[[79,[41,78]]]],[[[132,[-1]],77],148,35],[[398,77],[[79,[41,78]]]],[[399,77],[[79,[41,78]]]],[[400,77],[[79,[41,78]]]],[[[135,[],[[146,[-1]]]],-1],4,107],[[[134,[-1,-2,-3,-4]],-5],[[134,[-1,-2,-3,-4]]],402,[],135,35,25],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[134,[-1,-2,-3,-4]]],[[134,[-5,-2,-3,-4]]],402,[],135,35,402],[[[135,[],[[146,[-1]]]],-1],4,107],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[398,5],[[[134,[-1,-2,-3,-4]],37,-4,94],95,402,[],135,35],[[[132,[-1]],59],[[46,[[0,[[404,[],[[403,[45]]]]]]]]],35],[[[132,[-1]]],59,35],[[[132,[-1]]],[[0,[[269,[],[[42,[[0,[[404,[],[[403,[45]]]]]]]]]]]]],35],[[[134,[-1,-2,-3,-4]],37,69,70,65,-4],99,402,[],135,35],[[[132,[-1]]],[[134,[133,-2,-3,-1]]],35,[],135],[[],[[132,[-1]]],35],[[[134,[-1,-2,-3,-4]],-5],[[134,[-1,-2,-3,-4]]],402,[],135,35,[[32,[398],[[31,[-2]]]]]],[[[134,[-1,-2,-3,-4]],37,100,69,70,-4,101,[102,[-2]],65],103,402,[],135,35],[[[134,[-1,-2,-3,-4]],-5],[[134,[-1,-2,-3,-4]]],402,[],135,35,[[25,[149]]]],[[[132,[-1]],398],41,35],[[[135,[],[[146,[-1]]]],-1],64,107],[[[132,[-1]]],[[46,[30]]],35],[[[135,[],[[146,[-1]]]],-1],64,107],[[[134,[-1,-2,-3,-4]]],[[62,[84]]],402,[],135,35],[[[134,[-1,-2,-3,-4]]],127,402,[],135,35],[[[134,[-1,-2,-3,-4]],-5],[[134,[-1,-2,-3,-4]]],402,[],135,35,25],[[[134,[-1,-2,-3,-4]]],130,402,[],135,35],[[[132,[-1]]],30,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[135,[],[[146,[-1]]]],-1],64,107],[400,400],[45,[[132,[-1]]],35],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[50,[],[[146,[-1]]]],-1],2,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[2,2],[405,405],[[[324,[-1]]],[[324,[-1]]],49],[406,406],[407,407],[[[408,[-1]]],[[408,[-1]]],[49,366]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[408,[-1]]],409,366],[[],[[408,[-1]]],[107,366]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[136,[-1,-2,-3]],37],41,49,50,35],[[[50,[],[[146,[-1]]]],-1],2,107],[[[50,[],[[146,[-1]]]],-1],64,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2,69,70,408,405,5,5,[46,[324]],65],41,35,50],[[[136,[-1,-2,-3]],37,-3,-2,69,70,[46,[405]],65],41,49,50,35],[[[136,[-1,-2,-3]],37,-3,-2,68,69,70,65],41,49,50,35],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[407,407],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[2,77],[[79,[41,78]]]],[[405,77],148],[[405,77],148],[[[324,[-1]],77],148,164],[[406,77],148],[[407,77],148],[[[408,[-1]],77],148,[164,366]],[407,[[80,[-1]]],[]],[[[408,[-1]]],41,366],[[[408,[-1]]],41,366],[[[50,[],[[146,[-1]]]],-1],2,107],[[],[[408,[-1]]],366],[[[136,[-1,-2,-3]]],[[136,[-1,-2,-3]]],49,50,35],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[407,-1],41,205],[[[50,[],[[146,[-1]]]],-1],2,107],[[[136,[-1,-2,-3]],324],[[136,[-1,-2,-3]]],49,50,35],0,[[[136,[-1,-2,-3]],407],[[136,[-1,-2,-3]]],49,50,35],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[405,59,280],41],[[405,59,405],41],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[405,5],[[[408,[-1]]],5,366],[[[408,[-1]]],5,366],[[-1,94,84,149,[46,[58]],46,322,[46,[324]],408,405,45,5],95,35],[[[136,[-1,-2,-3]],37,-3,94],95,49,50,35],[[[136,[-1,-2,-3]],37,-3,94,[46,[405]]],95,49,50,35],[405,59],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[25,[322]]]],[[69,70,5],99],[[[136,[-1,-2,-3]],37,69,70,65,-3],99,49,50,35],[[407,59],[[80,[-1]]],[]],[[[408,[-1]],59],41,366],[[[408,[-1]],59],41,366],[407,[[80,[-1]]],[]],[[[408,[-1]]],41,366],[[[408,[-1]]],41,366],[407,[[80,[-1]]],[]],[[[408,[-1]]],41,366],[[[408,[-1]]],41,366],[[45,45],[[136,[-1,-2,-3]]],49,50,35],[45,405],[-1,407,[[25,[[98,[45]]]]]],[[],[[408,[-1]]],366],[[405,59],59],[[[136,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],65],103,49,50,35],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[32,[30],[[31,[-1]]]]]],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[32,[30],[[31,[-1]]]]]],[[[136,[-1,-2,-3]],-1],[[136,[-1,-2,-3]]],49,50,35],[[[136,[-1,-2,-3]],37,69,-3,106],41,49,50,35],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[25,[149]]]],[[[136,[-1,-2,-3]]],[[136,[-1,-2,-3]]],49,50,35],[[[50,[],[[146,[-1]]]],-1],64,107],[[405,59],59],[[405,59],41],[[405,59,59],41],[405,405],[[405,59,59],405],[407,[[80,[-1]]],[]],[[[408,[-1]]],41,366],[[[408,[-1]]],41,366],[[[50,[],[[146,[-1]]]],-1],64,107],0,[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[25,[58]]]],[[[136,[-1,-2,-3]]],[[62,[84]]],49,50,35],0,0,[[[136,[-1,-2,-3]]],127,49,50,35],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,25],[[[136,[-1,-2,-3]]],130,49,50,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,137,[]],[-1,30,[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[408,[-1]]],41,366],[[[408,[-1]]],41,366],[[],407],[[405,59],405],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[100,69,70,-1,101,[102,[-2]],405,[46,[58]],322,46,5,[46,[32]],[46,[32]],[46,[-2]],-3],103,35,49,[[57,[],[[31,[408]]]]]],[[[50,[],[[146,[-1]]]],-1],64,107],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[25,[84]]]],0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[409,409],[410,410],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],409],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[[409,77],148],[[410,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[409,405],[[46,[[41,[59,59]]]]]],[[409,405],410],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[55,55],[411,411],[412,412],[413,413],[414,414],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,415,[[22,[],[[146,[1]]]]]],[-1,416,[[112,[],[[146,[1]]]]]],[[],417],0,[[],418],[[],415],[[],419],[[],420],[[],421],[[],412],[[],413],[[],422],[[],423],[[],424],[[],425],[[],426],[[],417],[[],416],[[],414],[[],427],[[],428],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[55,55],5],[[411,411],5],[[55,77],[[79,[41,78]]]],[[411,77],[[79,[41,78]]]],[[411,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,418,[[32,[1],[[31,[15]]]]]],[-1,-1,[]],[-1,-1,[]],[19,420],[-1,420,[[32,[1],[[31,[19]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[413,412],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,425,[[32,[1],[[31,[14]]]]]],[-1,-1,[]],[-1,426,[[32,[1],[[31,[17]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[64,414],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[30,55],411],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,137,[]],[-1,30,[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[30,55,-1],411,[[57,[55],[[31,[56]]]]]],0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,56],[429,429],[430,430],[431,431],[432,432],[433,433],[434,434],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[56,56],5],[[429,429],5],[[430,430],5],[[431,431],5],[[432,432],5],[[433,433],5],[[434,434],5],[[56,77],[[79,[41,78]]]],[[429,77],[[79,[41,78]]]],[[430,77],[[79,[41,78]]]],[[431,77],[[79,[41,78]]]],[[432,77],[[79,[41,78]]]],[[433,77],[[79,[41,78]]]],[[434,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[55,56],[[64,64,64],431],[[64,64],432],[[64,64,64],433],[[64,64,64],434],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[64,64],429],[[64,64],430],0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,[[[139,[],[[146,[-1]]]],-1,5],9,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[9,9],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[138,[-1,-2,-3]],37,-3,-2,68,69,70,65],41,[],[139,34],35],[59,41],[59,41],[[9,77],[[79,[41,78]]]],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,25],0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[139,[],[[146,[-1]]]],-1,5],9,107],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[138,[-1,-2,-3]],37,-3,94],95,[],[139,34],35],[[[138,[-1,-2,-3]],37,69,70,65,-3],99,[],[139,34],35],[[-1,5,-3],[[138,[-2,-4,-5]]],[[25,[[46,[30]]]]],[],[[32,[5],[[31,[-2]]]]],139,35],[[[138,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],65],103,[],[139,34],35],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,[[25,[58]]]],[[[138,[-1,-2,-3]]],[[62,[84]]],[],[139,34],35],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,[[25,[58]]]],[[[138,[-1,-2,-3]]],127,[],[139,34],35],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,25],[[[138,[-1,-2,-3]]],130,[],[139,34],35],[[[138,[-1,-2,-3]],326],[[138,[-1,-2,-3]]],[],139,35],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,[[25,[322]]]],[[[138,[-1,-2,-3]],323],[[138,[-1,-2,-3]]],[],139,35],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,[[25,[58]]]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,[[25,[84]]]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[-1,-2,-3]]],[[38,[37]]],[],[54,34],35],[140,140],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[141,[-1,-2,-3]],37],41,[],[54,34],35],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[-1,-2,-3]],37,-3,-2,68,69,70,65],41,[],[54,34],35],[59,41],[59,41],[[140,140],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[140,77],148],[[[141,[-1,-2,-3]],-4],[[141,[-1,-2,-3]]],[],[54,34],35,25],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[-1,-2,-3]],-4],[[141,[-1,-2,-3]]],[],[54,34],35,[[25,[58]]]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[-1,-2,-3]],37,-3,94],95,[],[54,34],35],[[[141,[-1,-2,-3]],37,69,70,65,-3],99,[],[54,34],35],[[-4,-5,140],[[141,[-1,-2,-3]]],[],[54,34],35,[[25,[[24,[-1,-2,-3]]]]],[[25,[[98,[45]]]]]],[[[141,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],65],103,[],[54,34],35],[[[141,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],[54,34],35],[[[141,[-1,-2,-3]],-4],[[141,[-1,-2,-3]]],[],[54,34],35,[[25,[58]]]],[[[141,[-1,-2,-3]]],[[62,[84]]],[],[54,34],35],[[[141,[-1,-2,-3]],-4],[[141,[-1,-2,-3]]],[],[54,34],35,[[25,[58]]]],[[[141,[-1,-2,-3]],5],[[141,[-1,-2,-3]]],[],[54,34],35],[[[141,[-1,-2,-3]]],127,[],[54,34],35],[[[141,[-1,-2,-3]],-4],[[141,[-1,-2,-3]]],[],[54,34],35,25],[[[141,[-1,-2,-3]]],130,[],[54,34],35],[[[141,[-1,-2,-3]],323],[[141,[-1,-2,-3]]],[],[54,34],35],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,[[[126,[],[[146,[-1]]]],-1],8,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[8,8],[435,435],[436,436],[437,437],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],437],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[126,[],[[146,[-1]]]],-1],8,107],[[-1,69,70,437,-2,[114,[-2]],-3],41,23,[[25,[270]],92],126],[[[144,[-1,-2,-3]],37,-4,-3,68,69,70,65],41,[92,[25,[270]],394],49,126,23],[59,41],[59,41],[59,41],[59,41],[59,41],[[437,437],5],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[-1,-2],5,[],[]],[[8,77],[[79,[41,78]]]],[[435,77],[[79,[41,78]]]],[[436,77],[[79,[41,78]]]],[[437,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[144,[-1,-2,-3]],-4],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[84]]]],[[[126,[],[[146,[-1]]]],-1],8,107],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[144,[-1,-2,-3]],37,-4,94],95,[92,[25,[270]],394],49,126,23],[[69,70,437],99],[[[144,[-1,-2,-3]],37,69,70,65,-4],99,[92,[25,[270]],394],49,126,23],[[[114,[-1]],-1,-3],[[144,[-1,-2,-4]]],[92,[124,[96]],125],49,[[32,[-1],[[31,[-2]]]]],126],[[],437],[[[144,[-1,-2,-3]],37,100,69,70,-4,101,[102,[-2]],65],103,[92,[25,[270]],394],49,126,23],[[[144,[-1,-2,-3]],-2],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126],0,0,[[[144,[-1,-2,-3]]],[[62,[84]]],[92,[25,[270]],394],49,126],[[[144,[-1,-2,-3]]],127,[92,[25,[270]],394],49,126],[[[144,[-1,-2,-3]],-1],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126],[[[144,[-1,-2,-3]],-4],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126,25],[[[144,[-1,-2,-3]]],130,[92,[25,[270]],394],49,126],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[100,69,70,[102,[-1]],437,-2,[114,[-2]],-2,32,[46,[-1]]],103,49,[92,[25,[270]],394]],[[[144,[-1,-2,-3]],-4],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[58]]]],0,0,0],"c":[],"p":[[6,"Theme",0],[5,"Appearance",10906],[5,"Appearance",339],[5,"Appearance",10626],[1,"bool"],[5,"Appearance",9282],[5,"Appearance",7094],[5,"Appearance",12550],[5,"Appearance",12359],[5,"Scrollbar",9504],[5,"Appearance",8760],[10,"TransformMatrix",12769],[5,"Appearance",10456],[5,"Appearance",8985],[5,"Appearance",12770],[5,"Appearance",10325],[5,"Appearance",9379],[5,"Appearance",7757],[5,"Appearance",7324],[10,"Any",12771],[5,"Button",339],[10,"StyleSheet",339],[10,"Renderer",12772],[5,"Element",12773],[10,"Into",12774],[5,"Canvas",485],[10,"Renderer",485],[10,"Program",485],[5,"Checkbox",7094],[5,"String",12775],[17,"Output"],[10,"Fn",12776],[10,"StyleSheet",7094],[10,"StyleSheet",10456],[10,"Renderer",12777],[5,"Lazy",0],[5,"Tree",12778],[5,"Vec",12779],[10,"Hash",12780],[6,"Renderer",0],[1,"tuple"],[17,"Item"],[10,"IntoIterator",12781],[5,"State",7231],[1,"str"],[6,"Option",12782],[5,"ComboBox",7231],[10,"Display",12783],[10,"Clone",12784],[10,"StyleSheet",10906],[10,"StyleSheet",7757],[10,"Component",0],[5,"Container",7324],[10,"StyleSheet",7324],[5,"Palette",11337],[5,"Extended",12055],[10,"FnOnce",12776],[5,"Pixels",12785],[1,"usize"],[5,"Handle",10325],[1,"u32"],[5,"Size",12786],[5,"Handle",7473],[5,"Color",12787],[5,"Rectangle",12788],[6,"FilterMethod",7473],[5,"Responsive",0],[5,"Style",12772],[5,"Layout",12789],[6,"Cursor",12790],[6,"Mesh",12791],[10,"Primitive",9999],[5,"Point",12792],[5,"Quad",12772],[6,"Background",12793],[5,"Text",12777],[5,"Formatter",12783],[5,"Error",12783],[6,"Result",12794],[5,"Command",12795],[5,"Rule",9379],[10,"StyleSheet",9379],[5,"Space",10285],[6,"Length",12796],[5,"Appearance",7878],[5,"Line",7878],[5,"Image",7473],[5,"Box",12797],[5,"Arc",12798],[5,"Rc",12799],[5,"Column",7703],[10,"Copy",12800],[10,"PartialEq",12801],[5,"Limits",12802],[5,"Node",12803],[1,"u8"],[1,"slice"],[6,"Cow",12804],[6,"Interaction",12805],[6,"Event",12806],[10,"Clipboard",12807],[5,"Shell",12808],[6,"Status",1056],[17,"State"],[17,"Event"],[10,"Operation",12809],[10,"Default",12810],[5,"Element",12811],[5,"PickList",8760],[10,"ToString",12775],[10,"StyleSheet",8760],[10,"StyleSheet",9504],[1,"f32"],[5,"RangeInclusive",12812],[5,"ProgressBar",8985],[10,"StyleSheet",8985],[5,"Radio",9282],[10,"Eq",12801],[10,"StyleSheet",9282],[5,"Scrollable",9504],[5,"Shader",9999],[10,"Program",9999],[5,"Slider",10134],[10,"From",12774],[10,"PartialOrd",12801],[10,"StyleSheet",12550],[6,"State",12778],[5,"Svg",10325],[10,"StyleSheet",10325],[5,"Tag",12778],[8,"Text",10456],[5,"Content",10626],[5,"PlainText",12813],[5,"TextEditor",10626],[10,"StyleSheet",10626],[5,"TextInput",10906],[5,"SmolStr",12814],[5,"Toggler",12359],[10,"StyleSheet",12359],[6,"Position",12454],[5,"Tooltip",12454],[5,"OutOfBounds",12815],[5,"TypeId",12771],[5,"VerticalSlider",12550],[5,"Vector",12816],[17,"Style"],[5,"State",339],[8,"Result",12783],[5,"Padding",12817],[6,"Frame",485],[5,"Path",485],[5,"Cache",485],[6,"Gradient",485],[5,"Fill",485],[5,"Stroke",485],[6,"LineCap",485],[6,"LineJoin",485],[5,"LineDash",485],[6,"Style",485],[5,"Text",485],[17,"Geometry"],[6,"Geometry",485],[10,"FnMut",12776],[10,"Debug",12783],[5,"Linear",1190],[5,"Builder",1277],[5,"Packed",1190],[5,"Path",1414],[5,"UnknownUnit",4106],[5,"Transform2D",4106],[6,"Event",1056],[6,"Rule",1141],[5,"ColorStop",12818],[6,"Gradient",12818],[5,"Arc",1277],[5,"Elliptical",1366],[5,"PathCommands",1414],[5,"PathCommandsSlice",1414],[5,"PathSlice",1414],[5,"PathBuffer",1414],[5,"PathBufferSlice",1414],[5,"EndpointId",1414],[5,"PathCommandsBuilder",2663],[5,"BuilderImpl",6468],[5,"NoAttributes",2341],[5,"Builder",6725],[5,"BuilderWithAttributes",6468],[5,"ArcFlags",1414],[6,"Event",1414],[5,"Polygon",1414],[5,"IdPolygon",1414],[6,"LineCap",1414],[6,"LineJoin",1414],[6,"Side",1414],[6,"FillRule",1414],[6,"Winding",1414],[5,"ControlPointId",1414],[5,"EventId",1414],[5,"Events",2663],[5,"Point2D",4106],[10,"AttributeStore",1414],[5,"AttributeSlice",1414],[10,"PositionStore",1414],[10,"Position",1414],[10,"Hasher",12780],[5,"IdIter",6468],[5,"PolygonIdIter",6865],[5,"Range",12812],[5,"Iter",2663],[5,"Iter",6468],[1,"i16"],[5,"Iter",6725],[5,"PolygonIter",6865],[5,"IdPolygonIter",6865],[5,"IterWithAttributes",6468],[5,"PathEvents",6865],[5,"CommandsPathSlice",2663],[5,"Reversed",6468],[5,"NoAttributes",6288],[5,"WithSvg",2341],[10,"Transformation",6262],[10,"PathBuilder",7025],[5,"Vector2D",4106],[5,"Angle",2866],[5,"LineSegment",2866],[10,"SvgPathBuilder",7025],[5,"Box2D",4106],[5,"BorderRadii",2341],[5,"Flattened",2341],[5,"Transformed",2341],[17,"PathType"],[10,"Build",7025],[6,"Ordering",12801],[5,"PointEvents",2663],[5,"LineEquation",2866],[10,"Scalar",2866],[5,"Triangle",2866],[10,"Add",12819],[10,"AddAssign",12819],[17,"Scalar"],[10,"Segment",2866],[5,"Arc",2866],[5,"CubicBezierSegment",2866],[5,"QuadraticBezierSegment",2866],[10,"Rem",12819],[10,"Sub",12819],[10,"Mul",12819],[10,"One",12820],[10,"FloatConst",12821],[10,"ApproxEq",6053],[10,"NumCast",12822],[5,"SvgArc",2866],[5,"Line",2866],[5,"ArrayVec",3697],[10,"Trig",4106],[10,"Div",12819],[10,"DivAssign",12819],[5,"Flattened",3647],[5,"Flattened",4064],[5,"Flattened",6152],[5,"FlattenedT",6152],[10,"Float",12821],[10,"MulAssign",12819],[10,"Neg",12819],[10,"Zero",12820],[10,"Real",12823],[5,"Size2D",4106],[10,"SubAssign",12819],[10,"Iterator",12824],[1,"f64"],[5,"ArrayString",3697],[5,"IntoIter",3697],[5,"CapacityError",3697],[10,"Ord",12801],[5,"Drain",3697],[10,"RangeBounds",12812],[5,"Error",12825],[1,"array"],[5,"Utf8Error",12826],[1,"char"],[5,"Arguments",12783],[1,"u64"],[1,"i8"],[1,"i64"],[1,"i32"],[1,"u128"],[1,"i128"],[1,"u16"],[10,"Signed",12827],[5,"Size3D",4106],[5,"Vector3D",4106],[5,"Length",4106],[5,"Point3D",4106],[5,"Scale",4106],[5,"SideOffsets2D",4106],[5,"Translation2D",4106],[5,"Translation3D",4106],[5,"BoolVector2D",4106],[5,"BoolVector3D",4106],[5,"Transform3D",4106],[5,"Rotation3D",4106],[5,"Rect",4106],[5,"Box3D",4106],[5,"Rotation2D",4106],[5,"RigidTransform3D",4106],[10,"Ceil",6142],[10,"One",6142],[5,"HomogeneousVector",4106],[10,"Zero",6142],[10,"Euclid",12828],[10,"Floor",6142],[10,"Round",6142],[10,"Saturating",12829],[5,"FlatteningParameters",6152],[5,"FromPolyline",6288],[10,"PathIterator",7025],[5,"Flattened",6288],[5,"Transformed",6288],[5,"BuilderWithAttributes",6725],[5,"IterBridge",12830],[5,"Icon",7094],[6,"LineHeight",10456],[6,"Shaping",10456],[5,"Icon",10906],[10,"AsRef",12774],[6,"Horizontal",12831],[6,"Vertical",12831],[5,"Id",7324],[6,"ContentFit",12832],[6,"Data",12833],[17,"Handle"],[10,"Renderer",12833],[5,"PathBuf",12834],[10,"Send",12800],[10,"Sync",12800],[5,"Viewer",7613],[5,"State",7613],[6,"Alignment",12831],[5,"State",7757],[5,"Menu",7757],[5,"TitleBar",7878],[10,"Draggable",7878],[5,"Content",7878],[5,"PaneGrid",7878],[10,"StyleSheet",7878],[6,"Axis",7878],[6,"Configuration",7878],[6,"Direction",7878],[6,"Node",7878],[5,"Pane",7878],[5,"Split",7878],[6,"DragEvent",7878],[6,"Target",7878],[6,"Region",7878],[6,"Edge",7878],[5,"ResizeEvent",7878],[6,"Action",8611],[6,"Contents",7878],[5,"State",8611],[5,"BTreeMap",12835],[5,"Internal",8611],[5,"HashMap",12836],[6,"Handle",8760],[5,"Icon",8760],[5,"State",8760],[10,"Paragraph",12837],[5,"QRCode",9069],[6,"Version",9069],[6,"ErrorCorrection",9069],[6,"Error",9069],[5,"State",9069],[6,"QrError",12838],[6,"FillMode",9379],[5,"Viewport",9504],[5,"AbsoluteOffset",9504],[5,"Properties",9504],[6,"Alignment",9504],[5,"Scroller",9504],[5,"RelativeOffset",9504],[6,"Direction",9504],[5,"Id",9504],[5,"State",9504],[6,"Event",9999],[5,"Storage",9999],[17,"Primitive"],[10,"Renderer",12839],[6,"TextureFormat",12840],[5,"Device",12841],[5,"Queue",12841],[5,"TextureView",12841],[5,"CommandEncoder",12841],[5,"Rail",10134],[5,"State",10134],[10,"FromPrimitive",12822],[6,"Data",12842],[10,"Renderer",12842],[5,"State",10456],[6,"Action",10626],[6,"Edit",10626],[6,"Motion",10626],[6,"Direction",12843],[10,"Highlighter",12813],[17,"Target"],[10,"Deref",12844],[5,"Value",10906],[6,"Side",10906],[5,"Id",10906],[5,"State",10906],[5,"Cursor",11256],[6,"State",11256],[5,"Custom",11337],[6,"Menu",11337],[6,"PickList",11337],[6,"Text",11337],[6,"Button",11337],[6,"Scrollable",11337],[6,"Svg",11337],[6,"Application",11337],[6,"Checkbox",11337],[6,"Container",11337],[6,"Slider",11337],[6,"Radio",11337],[6,"Toggler",11337],[6,"PaneGrid",11337],[6,"ProgressBar",11337],[6,"Rule",11337],[6,"TextInput",11337],[6,"TextEditor",11337],[5,"Pair",12055],[5,"Background",12055],[5,"Primary",12055],[5,"Secondary",12055],[5,"Success",12055],[5,"Danger",12055],[5,"Handle",12550],[6,"HandleShape",12550],[5,"State",12550],[8,"PathEvent",1414],[8,"IdEvent",1414],[15,"Begin",2302],[15,"End",2302],[15,"Quadratic",2302],[15,"Cubic",2302],[15,"Line",2302],[8,"Rotation",2866],[8,"Size",2866],[8,"Transform",2866],[8,"Box2D",2866],[8,"Translation",2866],[8,"Point",2866],[8,"Vector",2866],[8,"Rotation2D",6059],[8,"SideOffsets2D",6059],[8,"Size3D",6059],[8,"Rotation3D",6059],[8,"Transform2D",6059],[8,"Transform3D",6059],[8,"Box3D",6059],[8,"Rect",6059],[8,"RigidTransform3D",6059],[8,"HomogeneousVector",6059],[8,"Point3D",6059],[8,"Vector3D",6059],[8,"Translation2D",6059],[8,"Translation3D",6059],[8,"Rotation",6438],[8,"Size",6438],[8,"Transform",6438],[8,"Box2D",6438],[8,"Angle",6438],[8,"Point",6438],[8,"Vector",6438],[8,"Translation",6438],[15,"Split",8598],[15,"Picked",8602],[15,"Dropped",8602],[15,"Canceled",8602],[15,"Split",8606],[15,"Resizing",8754],[15,"Clicking",8754],[15,"Dragging",8754],[15,"Dynamic",8982],[15,"Arrow",8982],[15,"Both",9997],[15,"Rectangle",10282],[15,"Circle",10282],[15,"Scroll",10905],[15,"Selection",11335]],"b":[[40,"impl-StyleSheet-for-Theme"],[41,"impl-StyleSheet-for-Theme"],[42,"impl-StyleSheet-for-Theme"],[43,"impl-StyleSheet-for-Theme"],[44,"impl-StyleSheet-for-Theme"],[45,"impl-StyleSheet-for-Theme"],[46,"impl-StyleSheet-for-Theme"],[47,"impl-StyleSheet-for-Theme"],[48,"impl-StyleSheet-for-Theme"],[54,"impl-StyleSheet-for-Theme"],[55,"impl-StyleSheet-for-Theme"],[56,"impl-StyleSheet-for-Theme"],[57,"impl-StyleSheet-for-Theme"],[58,"impl-StyleSheet-for-Theme"],[59,"impl-StyleSheet-for-Theme"],[60,"impl-StyleSheet-for-Theme"],[122,"impl-Renderer-for-Renderer"],[123,"impl-Renderer-for-Renderer"],[124,"impl-StyleSheet-for-Theme"],[125,"impl-StyleSheet-for-Theme"],[126,"impl-StyleSheet-for-Theme"],[127,"impl-StyleSheet-for-Theme"],[128,"impl-StyleSheet-for-Theme"],[133,"impl-StyleSheet-for-Theme"],[134,"impl-StyleSheet-for-Theme"],[136,"impl-Renderer-for-Renderer"],[137,"impl-Renderer-for-Renderer"],[138,"impl-Renderer-for-Renderer"],[153,"impl-Debug-for-Theme"],[154,"impl-Display-for-Theme"],[157,"impl-StyleSheet-for-Theme"],[158,"impl-StyleSheet-for-Theme"],[174,"impl-StyleSheet-for-Theme"],[175,"impl-StyleSheet-for-Theme"],[176,"impl-StyleSheet-for-Theme"],[177,"impl-StyleSheet-for-Theme"],[178,"impl-StyleSheet-for-Theme"],[179,"impl-StyleSheet-for-Theme"],[180,"impl-StyleSheet-for-Theme"],[181,"impl-StyleSheet-for-Theme"],[182,"impl-StyleSheet-for-Theme"],[183,"impl-StyleSheet-for-Theme"],[248,"impl-StyleSheet-for-Theme"],[249,"impl-StyleSheet-for-Theme"],[265,"impl-StyleSheet-for-Theme"],[266,"impl-StyleSheet-for-Theme"],[330,"impl-StyleSheet-for-Theme"],[331,"impl-StyleSheet-for-Theme"],[731,"impl-From%3CColor%3E-for-Fill"],[733,"impl-From%3CLinear%3E-for-Fill"],[734,"impl-From%3CGradient%3E-for-Fill"],[740,"impl-From%3CColor%3E-for-Style"],[741,"impl-From%3CGradient%3E-for-Style"],[743,"impl-From%3C%26str%3E-for-Text"],[745,"impl-From%3CString%3E-for-Text"],[1887,"impl-Index%3CControlPointId%3E-for-Path"],[1888,"impl-Index%3CEndpointId%3E-for-Path"],[1889,"impl-Index%3CControlPointId%3E-for-PathSlice%3C\'l%3E"],[1890,"impl-Index%3CEndpointId%3E-for-PathSlice%3C\'l%3E"],[2048,"impl-IntoIterator-for-PathSlice%3C\'l%3E"],[2049,"impl-IntoIterator-for-%26PathSlice%3C\'l%3E"],[2396,"impl-NoAttributes%3CB%3E"],[2397,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2411,"impl-Build-for-Flattened%3CBuilder%3E"],[2412,"impl-Flattened%3CBuilder%3E"],[2414,"impl-WithSvg%3CBuilder%3E"],[2415,"impl-Build-for-WithSvg%3CBuilder%3E"],[2416,"impl-Build-for-NoAttributes%3CB%3E"],[2417,"impl-NoAttributes%3CB%3E"],[2424,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2425,"impl-WithSvg%3CBuilder%3E"],[2436,"impl-WithSvg%3CBuilder%3E"],[2437,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2438,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2439,"impl-NoAttributes%3CB%3E"],[2466,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2467,"impl-NoAttributes%3CB%3E"],[2475,"impl-Display-for-BorderRadii"],[2476,"impl-Debug-for-BorderRadii"],[2548,"impl-WithSvg%3CBuilder%3E"],[2549,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2550,"impl-NoAttributes%3CB%3E"],[2551,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2553,"impl-WithSvg%3CBuilder%3E"],[2554,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2571,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2572,"impl-WithSvg%3CBuilder%3E"],[2573,"impl-NoAttributes%3CB%3E"],[2574,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2593,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2594,"impl-WithSvg%3CBuilder%3E"],[2595,"impl-NoAttributes%3CB%3E"],[2596,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2765,"impl-Index%3CControlPointId%3E-for-CommandsPathSlice%3C\'l,+Endpoint,+ControlPoint%3E"],[2766,"impl-Index%3CEndpointId%3E-for-CommandsPathSlice%3C\'l,+Endpoint,+ControlPoint%3E"],[2916,"impl-Add-for-Angle%3CT%3E"],[2917,"impl-Add%3C%26Angle%3CT%3E%3E-for-Angle%3CT%3E"],[2920,"impl-Arc%3CS%3E"],[2921,"impl-Segment-for-Arc%3CS%3E"],[2922,"impl-CubicBezierSegment%3CS%3E"],[2923,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[2924,"impl-Segment-for-LineSegment%3CS%3E"],[2925,"impl-LineSegment%3CS%3E"],[2926,"impl-QuadraticBezierSegment%3CS%3E"],[2927,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[2933,"impl-Segment-for-Arc%3CS%3E"],[2934,"impl-Arc%3CS%3E"],[2935,"impl-CubicBezierSegment%3CS%3E"],[2936,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[2983,"impl-Arc%3CS%3E"],[2984,"impl-Segment-for-Arc%3CS%3E"],[2985,"impl-CubicBezierSegment%3CS%3E"],[2986,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[2987,"impl-Segment-for-LineSegment%3CS%3E"],[2988,"impl-LineSegment%3CS%3E"],[2989,"impl-QuadraticBezierSegment%3CS%3E"],[2990,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3092,"impl-CubicBezierSegment%3CS%3E"],[3093,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3095,"impl-QuadraticBezierSegment%3CS%3E"],[3096,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3101,"impl-Div-for-Angle%3CT%3E"],[3102,"impl-Div%3CT%3E-for-Angle%3CT%3E"],[3126,"impl-CubicBezierSegment%3CS%3E"],[3127,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3129,"impl-QuadraticBezierSegment%3CS%3E"],[3130,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3132,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3133,"impl-CubicBezierSegment%3CS%3E"],[3135,"impl-QuadraticBezierSegment%3CS%3E"],[3136,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3172,"impl-Arc%3CS%3E"],[3173,"impl-Segment-for-Arc%3CS%3E"],[3174,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3175,"impl-CubicBezierSegment%3CS%3E"],[3176,"impl-Segment-for-LineSegment%3CS%3E"],[3177,"impl-LineSegment%3CS%3E"],[3178,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3179,"impl-QuadraticBezierSegment%3CS%3E"],[3196,"impl-Arc%3CS%3E"],[3197,"impl-Segment-for-Arc%3CS%3E"],[3199,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3200,"impl-CubicBezierSegment%3CS%3E"],[3202,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3203,"impl-QuadraticBezierSegment%3CS%3E"],[3232,"impl-From%3CSvgArc%3CS%3E%3E-for-Arc%3CS%3E"],[3233,"impl-Segment-for-Arc%3CS%3E"],[3234,"impl-Arc%3CS%3E"],[3237,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3238,"impl-CubicBezierSegment%3CS%3E"],[3239,"impl-LineSegment%3CS%3E"],[3241,"impl-Segment-for-LineSegment%3CS%3E"],[3244,"impl-QuadraticBezierSegment%3CS%3E"],[3245,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3431,"impl-Segment-for-Arc%3CS%3E"],[3432,"impl-Arc%3CS%3E"],[3433,"impl-CubicBezierSegment%3CS%3E"],[3434,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3435,"impl-Segment-for-LineSegment%3CS%3E"],[3436,"impl-LineSegment%3CS%3E"],[3437,"impl-QuadraticBezierSegment%3CS%3E"],[3438,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3455,"impl-Arc%3CS%3E"],[3456,"impl-Segment-for-Arc%3CS%3E"],[3457,"impl-CubicBezierSegment%3CS%3E"],[3458,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3459,"impl-LineSegment%3CS%3E"],[3460,"impl-Segment-for-LineSegment%3CS%3E"],[3461,"impl-QuadraticBezierSegment%3CS%3E"],[3462,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3465,"impl-Arc%3CS%3E"],[3466,"impl-Segment-for-Arc%3CS%3E"],[3467,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3468,"impl-CubicBezierSegment%3CS%3E"],[3469,"impl-Segment-for-LineSegment%3CS%3E"],[3470,"impl-LineSegment%3CS%3E"],[3471,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3472,"impl-QuadraticBezierSegment%3CS%3E"],[3480,"impl-Sum-for-Angle%3CT%3E"],[3481,"impl-Sum%3C%26Angle%3CT%3E%3E-for-Angle%3CT%3E"],[3486,"impl-Arc%3CS%3E"],[3487,"impl-Segment-for-Arc%3CS%3E"],[3488,"impl-CubicBezierSegment%3CS%3E"],[3489,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3490,"impl-Segment-for-LineSegment%3CS%3E"],[3491,"impl-LineSegment%3CS%3E"],[3492,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3493,"impl-QuadraticBezierSegment%3CS%3E"],[3613,"impl-Arc%3CS%3E"],[3614,"impl-Segment-for-Arc%3CS%3E"],[3615,"impl-CubicBezierSegment%3CS%3E"],[3616,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3617,"impl-Segment-for-LineSegment%3CS%3E"],[3618,"impl-LineSegment%3CS%3E"],[3619,"impl-QuadraticBezierSegment%3CS%3E"],[3620,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3631,"impl-Segment-for-Arc%3CS%3E"],[3632,"impl-Arc%3CS%3E"],[3633,"impl-CubicBezierSegment%3CS%3E"],[3634,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3635,"impl-Segment-for-LineSegment%3CS%3E"],[3636,"impl-LineSegment%3CS%3E"],[3637,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3638,"impl-QuadraticBezierSegment%3CS%3E"],[3806,"impl-PartialEq%3C%5BT%5D%3E-for-ArrayVec%3CT,+CAP%3E"],[3807,"impl-PartialEq-for-ArrayVec%3CT,+CAP%3E"],[3808,"impl-PartialEq-for-ArrayString%3CCAP%3E"],[3809,"impl-PartialEq%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3824,"impl-Display-for-ArrayString%3CCAP%3E"],[3825,"impl-Debug-for-ArrayString%3CCAP%3E"],[3826,"impl-Display-for-CapacityError%3CT%3E"],[3827,"impl-Debug-for-CapacityError%3CT%3E"],[3849,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[3850,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3852,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3853,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[3899,"impl-IntoIterator-for-%26ArrayVec%3CT,+CAP%3E"],[3900,"impl-IntoIterator-for-%26mut+ArrayVec%3CT,+CAP%3E"],[3901,"impl-IntoIterator-for-ArrayVec%3CT,+CAP%3E"],[3914,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[3915,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3919,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3920,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[3931,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[3932,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3974,"impl-TryFrom%3CArguments%3C\'a%3E%3E-for-ArrayString%3CCAP%3E"],[3975,"impl-TryFrom%3C%26str%3E-for-ArrayString%3CCAP%3E"],[4158,"impl-Add%3C%26Length%3CT,+U%3E%3E-for-Length%3CT,+U%3E"],[4159,"impl-Add-for-Length%3CT,+U%3E"],[4160,"impl-Add%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[4161,"impl-Add%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[4162,"impl-Add%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[4163,"impl-Add%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[4166,"impl-Add-for-Size2D%3CT,+U%3E"],[4167,"impl-Add%3C%26Size2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[4168,"impl-Add-for-Size3D%3CT,+U%3E"],[4169,"impl-Add%3C%26Size3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[4172,"impl-Add%3C%26Vector2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[4173,"impl-Add-for-Vector2D%3CT,+U%3E"],[4174,"impl-Add-for-Vector3D%3CT,+U%3E"],[4175,"impl-Add%3C%26Vector3D%3CT,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[4177,"impl-AddAssign%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[4178,"impl-AddAssign%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[4179,"impl-AddAssign%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[4180,"impl-AddAssign%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[4214,"impl-ApproxEq%3CT%3E-for-Transform2D%3CT,+Src,+Dst%3E"],[4215,"impl-Transform2D%3CT,+Src,+Dst%3E"],[4216,"impl-Transform3D%3CT,+Src,+Dst%3E"],[4217,"impl-ApproxEq%3CT%3E-for-Transform3D%3CT,+Src,+Dst%3E"],[4397,"impl-Ceil-for-Point2D%3CT,+U%3E"],[4398,"impl-Point2D%3CT,+U%3E"],[4399,"impl-Ceil-for-Point3D%3CT,+U%3E"],[4400,"impl-Point3D%3CT,+U%3E"],[4401,"impl-Size2D%3CT,+U%3E"],[4402,"impl-Ceil-for-Size2D%3CT,+U%3E"],[4403,"impl-Ceil-for-Size3D%3CT,+U%3E"],[4404,"impl-Size3D%3CT,+U%3E"],[4405,"impl-Ceil-for-Vector2D%3CT,+U%3E"],[4406,"impl-Vector2D%3CT,+U%3E"],[4407,"impl-Ceil-for-Vector3D%3CT,+U%3E"],[4408,"impl-Vector3D%3CT,+U%3E"],[4583,"impl-Div%3CT%3E-for-Box2D%3CT,+U%3E"],[4584,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Box2D%3CT,+U2%3E"],[4585,"impl-Div%3CT%3E-for-Box3D%3CT,+U%3E"],[4586,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Box3D%3CT,+U2%3E"],[4587,"impl-Div%3CLength%3CT,+Src%3E%3E-for-Length%3CT,+Dst%3E"],[4588,"impl-Div%3CT%3E-for-Length%3CT,+U%3E"],[4589,"impl-Div%3CScale%3CT,+Src,+Dst%3E%3E-for-Length%3CT,+Dst%3E"],[4590,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Point2D%3CT,+U2%3E"],[4591,"impl-Div%3CT%3E-for-Point2D%3CT,+U%3E"],[4592,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Point3D%3CT,+U2%3E"],[4593,"impl-Div%3CT%3E-for-Point3D%3CT,+U%3E"],[4594,"impl-Div%3CT%3E-for-Rect%3CT,+U%3E"],[4595,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Rect%3CT,+U2%3E"],[4596,"impl-Div%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[4597,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-SideOffsets2D%3CT,+U2%3E"],[4598,"impl-Div%3CT%3E-for-Size2D%3CT,+U%3E"],[4599,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Size2D%3CT,+U2%3E"],[4600,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Size3D%3CT,+U2%3E"],[4601,"impl-Div%3CT%3E-for-Size3D%3CT,+U%3E"],[4602,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Vector2D%3CT,+U2%3E"],[4603,"impl-Div%3CT%3E-for-Vector2D%3CT,+U%3E"],[4604,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Vector3D%3CT,+U2%3E"],[4605,"impl-Div%3CT%3E-for-Vector3D%3CT,+U%3E"],[4606,"impl-DivAssign%3CT%3E-for-Box2D%3CT,+U%3E"],[4607,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Box2D%3CT,+U%3E"],[4608,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Box3D%3CT,+U%3E"],[4609,"impl-DivAssign%3CT%3E-for-Box3D%3CT,+U%3E"],[4611,"impl-DivAssign%3CT%3E-for-Point2D%3CT,+U%3E"],[4612,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Point2D%3CT,+U%3E"],[4613,"impl-DivAssign%3CT%3E-for-Point3D%3CT,+U%3E"],[4614,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Point3D%3CT,+U%3E"],[4615,"impl-DivAssign%3CT%3E-for-Rect%3CT,+U%3E"],[4616,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Rect%3CT,+U%3E"],[4617,"impl-DivAssign%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[4618,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-SideOffsets2D%3CT,+U%3E"],[4619,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Size2D%3CT,+U%3E"],[4620,"impl-DivAssign%3CT%3E-for-Size2D%3CT,+U%3E"],[4621,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Size3D%3CT,+U%3E"],[4622,"impl-DivAssign%3CT%3E-for-Size3D%3CT,+U%3E"],[4623,"impl-DivAssign%3CT%3E-for-Vector2D%3CT,+U%3E"],[4624,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[4625,"impl-DivAssign%3CT%3E-for-Vector3D%3CT,+U%3E"],[4626,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[4777,"impl-Point2D%3CT,+U%3E"],[4778,"impl-Floor-for-Point2D%3CT,+U%3E"],[4779,"impl-Floor-for-Point3D%3CT,+U%3E"],[4780,"impl-Point3D%3CT,+U%3E"],[4781,"impl-Floor-for-Size2D%3CT,+U%3E"],[4782,"impl-Size2D%3CT,+U%3E"],[4783,"impl-Floor-for-Size3D%3CT,+U%3E"],[4784,"impl-Size3D%3CT,+U%3E"],[4785,"impl-Floor-for-Vector2D%3CT,+U%3E"],[4786,"impl-Vector2D%3CT,+U%3E"],[4787,"impl-Floor-for-Vector3D%3CT,+U%3E"],[4788,"impl-Vector3D%3CT,+U%3E"],[4815,"impl-From%3CVector3D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[4816,"impl-From%3CPoint2D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[4817,"impl-From%3CVector2D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[4818,"impl-From%3CPoint3D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[4821,"impl-From%3C(T,+T)%3E-for-Point2D%3CT,+U%3E"],[4823,"impl-From%3C%5BT;+2%5D%3E-for-Point2D%3CT,+U%3E"],[4825,"impl-From%3C(T,+T,+T)%3E-for-Point3D%3CT,+U%3E"],[4826,"impl-From%3C%5BT;+3%5D%3E-for-Point3D%3CT,+U%3E"],[4833,"impl-From%3CVector2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[4835,"impl-From%3C(T,+T)%3E-for-Size2D%3CT,+U%3E"],[4836,"impl-From%3C%5BT;+2%5D%3E-for-Size2D%3CT,+U%3E"],[4837,"impl-From%3C%5BT;+3%5D%3E-for-Size3D%3CT,+U%3E"],[4838,"impl-From%3CVector3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[4839,"impl-From%3C(T,+T,+T)%3E-for-Size3D%3CT,+U%3E"],[4848,"impl-From%3C%5BT;+2%5D%3E-for-Vector2D%3CT,+U%3E"],[4849,"impl-From%3CSize2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[4850,"impl-From%3C(T,+T)%3E-for-Vector2D%3CT,+U%3E"],[4851,"impl-From%3C(T,+T,+T)%3E-for-Vector3D%3CT,+U%3E"],[4853,"impl-From%3C%5BT;+3%5D%3E-for-Vector3D%3CT,+U%3E"],[4855,"impl-From%3CVector3D%3CT,+Dst%3E%3E-for-RigidTransform3D%3CT,+Src,+Dst%3E"],[4856,"impl-From%3CRotation3D%3CT,+Src,+Dst%3E%3E-for-RigidTransform3D%3CT,+Src,+Dst%3E"],[5033,"impl-Into%3C%5BT;+2%5D%3E-for-Point2D%3CT,+U%3E"],[5034,"impl-Into%3C(T,+T)%3E-for-Point2D%3CT,+U%3E"],[5035,"impl-Into%3C(T,+T,+T)%3E-for-Point3D%3CT,+U%3E"],[5036,"impl-Into%3C%5BT;+3%5D%3E-for-Point3D%3CT,+U%3E"],[5043,"impl-Into%3C%5BT;+2%5D%3E-for-Size2D%3CT,+U%3E"],[5045,"impl-Into%3C(T,+T)%3E-for-Size2D%3CT,+U%3E"],[5046,"impl-Into%3C(T,+T,+T)%3E-for-Size3D%3CT,+U%3E"],[5047,"impl-Into%3C%5BT;+3%5D%3E-for-Size3D%3CT,+U%3E"],[5052,"impl-Into%3CTransform2D%3CT,+Src,+Dst%3E%3E-for-Translation2D%3CT,+Src,+Dst%3E"],[5053,"impl-Into%3CVector2D%3CT,+Src%3E%3E-for-Translation2D%3CT,+Src,+Dst%3E"],[5055,"impl-Into%3CTransform3D%3CT,+Src,+Dst%3E%3E-for-Translation3D%3CT,+Src,+Dst%3E"],[5056,"impl-Into%3CVector3D%3CT,+Src%3E%3E-for-Translation3D%3CT,+Src,+Dst%3E"],[5058,"impl-Into%3C(T,+T)%3E-for-Vector2D%3CT,+U%3E"],[5059,"impl-Into%3C%5BT;+2%5D%3E-for-Vector2D%3CT,+U%3E"],[5060,"impl-Into%3C%5BT;+3%5D%3E-for-Vector3D%3CT,+U%3E"],[5062,"impl-Into%3C(T,+T,+T)%3E-for-Vector3D%3CT,+U%3E"],[5331,"impl-Mul%3CT%3E-for-Box2D%3CT,+U%3E"],[5332,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Box2D%3CT,+U1%3E"],[5333,"impl-Mul%3CT%3E-for-Box3D%3CT,+U%3E"],[5334,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Box3D%3CT,+U1%3E"],[5335,"impl-Mul%3CScale%3CT,+Src,+Dst%3E%3E-for-Length%3CT,+Src%3E"],[5336,"impl-Mul%3CT%3E-for-Length%3CT,+U%3E"],[5337,"impl-Mul%3CT%3E-for-Point2D%3CT,+U%3E"],[5338,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Point2D%3CT,+U1%3E"],[5339,"impl-Mul%3CT%3E-for-Point3D%3CT,+U%3E"],[5340,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Point3D%3CT,+U1%3E"],[5341,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Rect%3CT,+U1%3E"],[5342,"impl-Mul%3CT%3E-for-Rect%3CT,+U%3E"],[5344,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-SideOffsets2D%3CT,+U1%3E"],[5345,"impl-Mul%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[5346,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Size2D%3CT,+U1%3E"],[5347,"impl-Mul%3CT%3E-for-Size2D%3CT,+U%3E"],[5348,"impl-Mul%3CT%3E-for-Size3D%3CT,+U%3E"],[5349,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Size3D%3CT,+U1%3E"],[5350,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Vector2D%3CT,+U1%3E"],[5351,"impl-Mul%3CT%3E-for-Vector2D%3CT,+U%3E"],[5352,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Vector3D%3CT,+U1%3E"],[5353,"impl-Mul%3CT%3E-for-Vector3D%3CT,+U%3E"],[5354,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Box2D%3CT,+U%3E"],[5355,"impl-MulAssign%3CT%3E-for-Box2D%3CT,+U%3E"],[5356,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Box3D%3CT,+U%3E"],[5357,"impl-MulAssign%3CT%3E-for-Box3D%3CT,+U%3E"],[5359,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Point2D%3CT,+U%3E"],[5360,"impl-MulAssign%3CT%3E-for-Point2D%3CT,+U%3E"],[5361,"impl-MulAssign%3CT%3E-for-Point3D%3CT,+U%3E"],[5362,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Point3D%3CT,+U%3E"],[5363,"impl-MulAssign%3CT%3E-for-Rect%3CT,+U%3E"],[5364,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Rect%3CT,+U%3E"],[5365,"impl-MulAssign%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[5366,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-SideOffsets2D%3CT,+U%3E"],[5367,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Size2D%3CT,+U%3E"],[5368,"impl-MulAssign%3CT%3E-for-Size2D%3CT,+U%3E"],[5369,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Size3D%3CT,+U%3E"],[5370,"impl-MulAssign%3CT%3E-for-Size3D%3CT,+U%3E"],[5371,"impl-MulAssign%3CT%3E-for-Vector2D%3CT,+U%3E"],[5372,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[5373,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[5374,"impl-MulAssign%3CT%3E-for-Vector3D%3CT,+U%3E"],[5469,"impl-Round-for-Point2D%3CT,+U%3E"],[5470,"impl-Point2D%3CT,+U%3E"],[5471,"impl-Round-for-Point3D%3CT,+U%3E"],[5472,"impl-Point3D%3CT,+U%3E"],[5474,"impl-Round-for-Size2D%3CT,+U%3E"],[5475,"impl-Size2D%3CT,+U%3E"],[5476,"impl-Size3D%3CT,+U%3E"],[5477,"impl-Round-for-Size3D%3CT,+U%3E"],[5478,"impl-Vector2D%3CT,+U%3E"],[5479,"impl-Round-for-Vector2D%3CT,+U%3E"],[5480,"impl-Vector3D%3CT,+U%3E"],[5481,"impl-Round-for-Vector3D%3CT,+U%3E"],[5522,"impl-Sub-for-Point2D%3CT,+U%3E"],[5523,"impl-Sub%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[5524,"impl-Sub%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[5525,"impl-Sub%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[5526,"impl-Sub-for-Point3D%3CT,+U%3E"],[5527,"impl-Sub%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[5537,"impl-SubAssign%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[5538,"impl-SubAssign%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[5539,"impl-SubAssign%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[5540,"impl-SubAssign%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[5548,"impl-Sum-for-Length%3CT,+U%3E"],[5549,"impl-Sum%3C%26Length%3CT,+U%3E%3E-for-Length%3CT,+U%3E"],[5550,"impl-Sum-for-Size2D%3CT,+U%3E"],[5551,"impl-Sum%3C%26Size2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[5552,"impl-Sum-for-Size3D%3CT,+U%3E"],[5553,"impl-Sum%3C%26Size3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[5554,"impl-Sum-for-Vector2D%3CT,+U%3E"],[5555,"impl-Sum%3C%26Vector2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[5556,"impl-Sum%3C%26Vector3D%3CT,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[5557,"impl-Sum-for-Vector3D%3CT,+U%3E"],[5728,"impl-Rotation2D%3CT,+Src,+Dst%3E"],[5729,"impl-Transformation%3CS%3E-for-Rotation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[5730,"impl-Transformation%3CS%3E-for-Scale%3CS,+UnknownUnit,+UnknownUnit%3E"],[5731,"impl-Scale%3CT,+Src,+Dst%3E"],[5732,"impl-Transform2D%3CT,+Src,+Dst%3E"],[5733,"impl-Transformation%3CS%3E-for-Transform2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[5734,"impl-Translation2D%3CT,+Src,+Dst%3E"],[5735,"impl-Transformation%3CS%3E-for-Translation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[5751,"impl-Transformation%3CS%3E-for-Rotation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[5752,"impl-Rotation2D%3CT,+Src,+Dst%3E"],[5753,"impl-Scale%3CT,+Src,+Dst%3E"],[5754,"impl-Transformation%3CS%3E-for-Scale%3CS,+UnknownUnit,+UnknownUnit%3E"],[5755,"impl-Transformation%3CS%3E-for-Transform2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[5756,"impl-Transform2D%3CT,+Src,+Dst%3E"],[6039,"impl-Zero-for-Point2D%3CT,+U%3E"],[6040,"impl-Point2D%3CT,+U%3E"],[6041,"impl-Zero-for-Point3D%3CT,+U%3E"],[6042,"impl-Point3D%3CT,+U%3E"],[6045,"impl-Zero-for-Size2D%3CT,+U%3E"],[6046,"impl-Size2D%3CT,+U%3E"],[6047,"impl-Zero-for-Size3D%3CT,+U%3E"],[6048,"impl-Size3D%3CT,+U%3E"],[6049,"impl-Zero-for-Vector2D%3CT,+U%3E"],[6050,"impl-Vector2D%3CT,+U%3E"],[6051,"impl-Zero-for-Vector3D%3CT,+U%3E"],[6052,"impl-Vector3D%3CT,+U%3E"],[6508,"impl-PathBuilder-for-BuilderWithAttributes"],[6509,"impl-BuilderWithAttributes"],[6523,"impl-BuilderWithAttributes"],[6524,"impl-Build-for-BuilderWithAttributes"],[6542,"impl-PathBuilder-for-BuilderWithAttributes"],[6543,"impl-BuilderWithAttributes"],[6570,"impl-BuilderWithAttributes"],[6571,"impl-PathBuilder-for-BuilderWithAttributes"],[6652,"impl-BuilderWithAttributes"],[6653,"impl-PathBuilder-for-BuilderWithAttributes"],[6661,"impl-BuilderWithAttributes"],[6662,"impl-PathBuilder-for-BuilderWithAttributes"],[6665,"impl-PathBuilder-for-BuilderWithAttributes"],[6666,"impl-BuilderWithAttributes"],[6668,"impl-PathBuilder-for-BuilderWithAttributes"],[6669,"impl-BuilderWithAttributes"],[6745,"impl-Builder%3C\'l%3E"],[6746,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6747,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[6748,"impl-BuilderWithAttributes%3C\'l%3E"],[6755,"impl-Builder%3C\'l%3E"],[6756,"impl-Build-for-Builder%3C\'l%3E"],[6757,"impl-Build-for-BuilderWithAttributes%3C\'l%3E"],[6758,"impl-BuilderWithAttributes%3C\'l%3E"],[6764,"impl-Builder%3C\'l%3E"],[6765,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6766,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[6767,"impl-BuilderWithAttributes%3C\'l%3E"],[6780,"impl-Builder%3C\'l%3E"],[6781,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6782,"impl-BuilderWithAttributes%3C\'l%3E"],[6783,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[6821,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6822,"impl-Builder%3C\'l%3E"],[6823,"impl-BuilderWithAttributes%3C\'l%3E"],[6824,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[6830,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6831,"impl-Builder%3C\'l%3E"],[6832,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[6833,"impl-BuilderWithAttributes%3C\'l%3E"],[6834,"impl-Builder%3C\'l%3E"],[6835,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6836,"impl-BuilderWithAttributes%3C\'l%3E"],[6837,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[7193,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[7194,"impl-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[7299,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[7300,"impl-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[9170,"impl-Debug-for-Error"],[9171,"impl-Display-for-Error"],[9351,"impl-Radio%3CMessage,+Theme,+Renderer%3E"],[9352,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Radio%3CMessage,+Theme,+Renderer%3E"],[9875,"impl-State"],[9876,"impl-Scrollable-for-State"],[9884,"impl-Scrollable-for-State"],[9885,"impl-State"],[10539,"impl-From%3CPixels%3E-for-LineHeight"],[10540,"impl-From%3Cf32%3E-for-LineHeight"],[11019,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11020,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11033,"impl-Display-for-Value"],[11034,"impl-Debug-for-Value"],[11040,"impl-Focusable-for-State%3CP%3E"],[11041,"impl-State%3CP%3E"],[11137,"impl-State%3CP%3E"],[11138,"impl-Focusable-for-State%3CP%3E"],[11140,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11141,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11147,"impl-TextInput-for-State%3CP%3E"],[11148,"impl-State%3CP%3E"],[11150,"impl-State%3CP%3E"],[11151,"impl-TextInput-for-State%3CP%3E"],[11153,"impl-TextInput-for-State%3CP%3E"],[11154,"impl-State%3CP%3E"],[11174,"impl-State%3CP%3E"],[11175,"impl-TextInput-for-State%3CP%3E"],[11178,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11179,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11242,"impl-State%3CP%3E"],[11243,"impl-Focusable-for-State%3CP%3E"],[11669,"impl-Display-for-Custom"],[11670,"impl-Debug-for-Custom"],[11677,"impl-From%3CAppearance%3E-for-Container"],[11678,"impl-From%3CT%3E-for-Container"],[12426,"impl-Toggler%3C\'a,+Message,+Theme,+Renderer%3E"],[12427,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Toggler%3C\'a,+Message,+Theme,+Renderer%3E"],[12526,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Tooltip%3C\'a,+Message,+Theme,+Renderer%3E"],[12527,"impl-Tooltip%3C\'a,+Message,+Theme,+Renderer%3E"]]},\ +"iced_widget":{"doc":"Use the built-in widgets or create your own.","t":"TEEEEEKEPPREFPEEEEEEGFEEEEEEREEEEGEPEEEPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHCHCHNNNNHQQCHHNNNNCHENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNNNNNEHHNNNNNNNNNNNNNCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHQNNHNHNNNNNNNNNNCNNNCCHNNNNCHCCHEHHQQCECHNNCHNNNCHCNNECHNNCHCHCHCHNNNCHCHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNHCHHMNNFFFRKMNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNHNNNNNNNNNNOONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNHNPPFFEFGGRGPGFGPPFKKPPPPRFGFPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOONNNNNNNONNCONNNONNOONNONCNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNONNNNNNPGPPPGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFPPGPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNGFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOONNNNNNNNNNNNNNNNNNFFFNNCNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNONONNNNNNNNNNNNNNNNNFFNNNNNNNOONNNNNNNOONNNNNNNNNNNNNNOOOOONNNNNNNNNFIFKIPPPPPFPPPPPPFPGFGTTTIFPPPGGPPSPPPFFFFFIFFKKPPPPPPPGPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNMNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCONNNNCNNNNNNNMNNNNNNCCNNOOCMNNNNONNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOFKFFKRKFFNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNOOMNNNNNNNNNNNMNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNMNNNNNNNMNNNNNNMMNNNNNNMNMNMNMNMNMNMNNNNNNNNNNNNMNMNMNMNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFIFTTTTTTFFFTTTTIFITTKRIKIFTTTIIFITNONNNNNNNNNNNNNNMNNNNNNNNONNNMNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOCNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNMNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNOOOOOOONONNNNNNNNNNNNHONNCNNNOOOMNNNNNNNNNNNNNNHNNNNNNNNMNNNNNNNNNMNNNNNNNNNNNNONNNNOONMNNNNNNNNOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCMHONNONNNNNNNNNOOONNNNOONNNNNNNNNOOONNNNNFFFFNNNNNNNONNNNNONONNNNNNNNNNNNONOOOOOONNNNNNNNOOFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNOONNNNNONNNNNNNNNNNNNNONNNNNNNNFFFFFFFFFFFFFFFFFFFFFKFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNCNNNNNNNNNNNNNNNNNMNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOONNNNNNNNNOONNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNONNNNNNNNNNNNHHNNNNNNNNNNNONOMHNNNNONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNOHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNONNNOONNNNNNNNNOOOOOOOOONNNNNNNNNNNOOOOOOOOONNNNNNNNNOOOOONNNNNNNNNNNNNNNNNNKMNMHHIIIIIIIIIIIIIIIIIIIIOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOKKKKKMMMMMFFFFNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNRKKMMMMNNMMMMMMMMMNNHHHHHHFFFKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIIIOOOOOOOOOOHOHHOOOOOOOIFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKKRKNNNNNNNNMMMMNMMMNNNMMMMMNMMMMMMMMMNNMMMMNNMNPPPGFGPPPPPFGOOOOOOOFFFRKMNNNNNNNNNNNNNNNOONNNNNNNNNNONNNNNNNNNNNNNNNNNNNNONNNNNNNNNMNONNNNNNNNNNNNNNNNNNNNNNNNNNNONNNONNONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNFFFRKNNNNNMNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNONNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNGFFPPENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCHNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNECFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCFFFRKNNNMNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONONNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFGPPPGFGGPGKPGPPPPPFPGFPPPFPGFPPFPPERKGFPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNHNNNNNNNNNNNNNNMONNNONNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOOOOOOOOOOOOOOGPPPFPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOFPTPGFPFFPRKMNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNONNNNNNNNNNNNNNNNOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOHNNNHNNNOONONNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOOOFTFRKNNMNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPGGPPPPPPPPFPFPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFTTFRKMNNNNNNNNNNOOONNNNNNNNNNNNONNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNFPGPPPFRKNNNMNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNOFGPGTPPFFFTFFFPFRKPFNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNHNNNNNNNNNNNHNNNNONNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNOOOOOOGPPKRKPFRFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNENFPTFGFPFFRKMNNNNNNNNNNNNNNNOOONNNNNNNNNNOONNNNNNNNNNNNNNMHNNNNNNNNNNNNNNNNNNNONMNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOOOOFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFRKFNNNMNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPFPGPGFRKINNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGFPPFPPPPPGPPPPPPGPPPPPPPPPRKFPPPMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNOFESFFPPGFRKFFMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNCNNNNNNNNNNNNNNNNNMMNNNNNNNHNNNNNNNNNNNNNNNNNNNNHNNMNNONNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNHNHNNHNNHNNNNNNNNNNNNNNMNNNNNHNNMONNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHMNFPPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOGPGGPGFPPPPPPPPPPPPPPPPPTPPPPPPPPPPPPPPPPPTPGFGGPPPPGGGGPPGPPGGPGGGGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFJJFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNOOOOOOOOOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOFTRKFMNNNNNNNNNNOONNNNNNNNNNNNNNNNNNNOONNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPGPFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFPTFGPFRKFMNNNNNNNNNNNNNNNNNNNNNNNNNOONNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNMHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNOOO","n":["ALL","Button","Canvas","Checkbox","Column","ComboBox","Component","Container","Custom","Dark","Event","Image","Lazy","Light","MouseArea","PaneGrid","PickList","ProgressBar","QRCode","Radio","Renderer","Responsive","Row","Rule","Scrollable","Shader","Slider","Space","State","Svg","Text","TextEditor","TextInput","Theme","Themer","TinySkia","Toggler","Tooltip","VerticalSlider","Wgpu","active","active","active","active","active","active","active","active","active","active_horizontal","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","appearance","appearance","appearance","appearance","appearance","appearance","appearance","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","button","button","canvas","canvas","checkbox","checkbox","children","clear","clone","clone_into","column","column","column","combo_box","combo_box","component","components_from","components_from","components_from","components_from","container","container","core","custom","custom_with_fn","default","default_font","default_size","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","diff","dimensions","dimensions","disabled","disabled","disabled","disabled_color","disabled_color","downcast","downcast","downcast","downcast","dragging","dragging","dragging_horizontal","draw","draw","draw","draw","draw","draw_mesh","draw_pipeline_primitive","drop","drop","drop","drop","eq","extended_palette","fill_editor","fill_paragraph","fill_quad","fill_text","fmt","fmt","focus_next","focus_previous","focused","focused","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","graphics","horizontal_rule","horizontal_space","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered","hovered_horizontal","hovered_region","hovered_split","image","image","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","keyed","keyed_column","keyed_column","layout","layout","lazy","load_font","mouse_area","mouse_interaction","mouse_interaction","new","new","on_event","on_event","operate","operate","operate","operate","overlay","overlay","overlay","palette","pane_grid","pick_list","pick_list","picked_split","placeholder_color","placeholder_color","pressed","progress_bar","progress_bar","qr_code","radio","radio","renderer","responsive","row","row","row","rule","runtime","scrollable","scrollable","selection_color","selection_color","shader","shader","size","size","size_hint","slider","slider","space","state","state","style","svg","svg","tag","tag","text","text","text_editor","text_editor","text_input","text_input","theme","themer","to_owned","to_smolstr","to_string","toggler","toggler","tooltip","tooltip","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","update","value_color","value_color","vertical_rule","vertical_slider","vertical_slider","vertical_space","view","with_layer","with_translation","Appearance","Button","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","children","clone","clone","clone_into","clone_into","components_from","components_from","components_from","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","disabled","downcast","downcast","downcast","draw","draw","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","height","hovered","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","mouse_interaction","mouse_interaction","new","new","on_event","on_press","on_press_maybe","operate","overlay","padding","pressed","shadow","shadow_offset","size","state","style","tag","text_color","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","update","width","Bevel","Butt","Cache","Canvas","Event","Fill","Frame","Geometry","Geometry","Gradient","Gradient","LineCap","LineDash","LineJoin","Linear","Miter","Path","Program","Renderer","Round","Round","Solid","Square","State","Stroke","Style","Text","TinySkia","TinySkia","Wgpu","Wgpu","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","center","circle","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","content","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","draw","draw_with","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","event","fill","fill","fill_rectangle","fill_text","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","font","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","gradient","height","height","horizontal_alignment","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_geometry","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","line","line_cap","line_dash","line_height","line_join","mouse_interaction","mouse_interaction","mouse_interaction","new","new","new","new","offset","on_event","pack","path","position","raw","rectangle","rotate","rule","scale","scale_nonuniform","segments","shaping","size","size","size","state","stroke","stroke","style","style","tag","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","transform","translate","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","update","vertical_alignment","width","width","width","with_clip","with_color","with_line_cap","with_line_join","with_save","with_width","Captured","Event","Ignored","Keyboard","Mouse","Status","Touch","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","merge","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","EvenOdd","Fill","Gradient","NonZero","Rule","Solid","Style","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","deref","deref_mut","downcast","drop","eq","equivalent","equivalent","equivalent","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","rule","style","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Gradient","Linear","Linear","Packed","adapt_into_using","adapt_into_using","add_stop","add_stops","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","end","eq","eq","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_valid_bit_pattern","new","pack","pack","start","stops","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Arc","Builder","Path","adapt_into_using","adapt_into_using","arc","arc","arc_to","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","bezier_curve_to","borrow","borrow","borrow_mut","borrow_mut","build","center","circle","clone","clone_into","close","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","ellipse","end_angle","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","line_to","move_to","new","quadratic_curve_to","radius","rectangle","start_angle","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Arc","Elliptical","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","center","center","clone","clone_into","components_from","deref","deref_mut","downcast","drop","end_angle","end_angle","fmt","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","radii","radius","rotation","start_angle","start_angle","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","ArcFlags","AttributeIndex","AttributeSlice","AttributeStore","Attributes","Begin","Begin","Begin","Bevel","Butt","ControlPointId","Cubic","Cubic","Cubic","End","End","End","EndpointId","EvenOdd","Event","EventId","FillRule","INVALID","INVALID","INVALID","IdEvent","IdPolygon","Line","Line","Line","LineCap","LineJoin","Miter","MiterClip","NO_ATTRIBUTES","Negative","Negative","NonZero","Path","PathBuffer","PathBufferSlice","PathCommands","PathCommandsSlice","PathEvent","PathSlice","Polygon","Position","PositionStore","Positive","Positive","Quadratic","Quadratic","Quadratic","Round","Round","Side","Square","Winding","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_slice","as_slice","as_slice","attributes","attributes","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","builder","builder","builder","builder","builder_with_attributes","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closed","closed","commands","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","event","event","event","event","events","first_endpoint","first_endpoint","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_iter","from_iter","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_usize","from_usize","get","get","get","get","get","get","get_control_point","get_control_point","get_control_point","get_control_point","get_endpoint","get_endpoint","get_endpoint","get_endpoint","hash","hash","hash","hash","hash","id_iter","id_iter","id_iter","index","index","index","index","index","indices","indices","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_edge","is_empty","is_empty","is_empty","is_in","is_negative","is_out","is_positive","iter","iter","iter","iter","iter","iter","iter","iter","iter_with_attributes","iter_with_attributes","iterator","large_arc","last_endpoint","last_endpoint","len","len","math","new","new","new","next_event_id_in_path","next_event_id_in_path","next_event_id_in_sub_path","next_event_id_in_sub_path","num_attributes","num_attributes","num_attributes","num_attributes","offset","offset","opposite","path","path_buffer","path_events","path_slice","points","points","polygon","position","reserve","reversed","reversed","svg_builder","sweep","to","to_f32","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_usize","to_usize","to_usize","traits","transformed","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","with_attributes","with_capacity","with_points","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","at","close","ctrl","ctrl1","ctrl2","first","from","from","from","last","to","to","to","BorderRadii","Build","Flattened","NoAttributes","PathBuilder","PathType","SvgPathBuilder","Transformed","WithSvg","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add_circle","add_circle","add_ellipse","add_ellipse","add_line_segment","add_line_segment","add_point","add_point","add_polygon","add_polygon","add_polygon","add_rectangle","add_rectangle","add_rounded_rectangle","add_rounded_rectangle","arc","arc_to","arc_to","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","begin","begin","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom_left","bottom_right","build","build","build","build","build","build","build","build","clone","clone","clone_into","clone_into","close","close","close","close","close","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","current_position","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","end","end","end","end","end","eq","eq","event","extend_from_paths","flattened","flattened","flattened","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","horizontal_line_to","horizontal_line_to","init","init","init","init","init","inner","inner_mut","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_inner","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","line_to","line_to","line_to","line_to","line_to","move_to","move_to","move_to","new","new","new","new","new","num_attributes","num_attributes","num_attributes","num_attributes","partial_cmp","path_event","path_event","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","relative_arc_to","relative_arc_to","relative_cubic_bezier_to","relative_cubic_bezier_to","relative_horizontal_line_to","relative_horizontal_line_to","relative_line_to","relative_line_to","relative_move_to","relative_move_to","relative_quadratic_bezier_to","relative_quadratic_bezier_to","relative_vertical_line_to","relative_vertical_line_to","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","set_tolerance","set_transform","set_transform","smooth_cubic_bezier_to","smooth_cubic_bezier_to","smooth_quadratic_bezier_to","smooth_quadratic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_quadratic_bezier_to","smooth_relative_quadratic_bezier_to","to_owned","to_owned","to_smolstr","to_string","top_left","top_right","transformed","transformed","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","vertical_line_to","vertical_line_to","with_capacity","with_svg","with_svg","wrap","CommandsPathSlice","Events","Iter","PathCommands","PathCommandsBuilder","PathCommandsSlice","PointEvents","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","end","events","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","get_control_point","get_endpoint","index","index","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","iter","line_to","new","next","next","next","points","quadratic_bezier_to","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","with_capacity","Angle","Arc","ArcFlags","Box2D","CubicBezierSegment","DIV_EPSILON","EIGHT","EPSILON","FIVE","FOUR","HALF","Line","LineEquation","LineSegment","MAX","MIN","NINE","ONE","Point","QuadraticBezierSegment","Rotation","SEVEN","SIX","Scalar","Scalar","Scale","Segment","Size","SvgArc","TEN","THREE","TWO","Transform","Translation","Triangle","Vector","ZERO","a","a","ab","ac","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add","add","add_assign","after_split","after_split","after_split","after_split","after_split","after_split","after_split","after_split","after_split","angle","angle_to","approx_epsilon","approx_eq_eps","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","approximate_length","arc","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","b","b","ba","baseline","baseline","bc","before_split","before_split","before_split","before_split","before_split","before_split","before_split","before_split","before_split","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounding_box","bounding_box","bounding_box","bounding_box","bounding_box","bounding_range_x","bounding_range_x","bounding_range_x","bounding_range_x","bounding_range_y","bounding_range_y","bounding_range_y","bounding_range_y","bounding_triangle","c","c","ca","cast","cb","center","circle","clipped","clipped_x","clipped_y","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closest_point","closest_point","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains_point","contains_segment","ctrl","ctrl1","ctrl2","cubic_bezier","cubic_intersections","cubic_intersections_t","default","degrees","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","derivative","derivative","derivative","derivative","derivative","derivative","derivative","distance_to_point","distance_to_point","distance_to_point","distance_to_point","div","div","div_assign","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drag","drag","drag_with_weight","drop","drop","drop","drop","drop","drop","drop","drop","drop","dx","dx","dx","dx","dx","dx","dy","dy","dy","dy","dy","dy","end_angle","epsilon_for","eq","eq","eq","eq","eq","eq","eq","eq","equation","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fast_bounding_box","fast_bounding_box","fast_bounding_box","fast_bounding_range_x","fast_bounding_range_x","fast_bounding_range_x","fast_bounding_range_y","fast_bounding_range_y","fast_bounding_range_y","fat_line","fat_line","flags","flattened","flattened","flattened","flattened_t","flattening_step","flip","flip","flip","flip","flip","flip","flip","flip","flip","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_each_cubic_bezier","for_each_cubic_bezier","for_each_flattened","for_each_flattened","for_each_flattened","for_each_flattened","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_flattened_with_t","for_each_inflection_t","for_each_local_x_extremum_t","for_each_local_x_extremum_t","for_each_local_y_extremum_t","for_each_local_y_extremum_t","for_each_monotonic","for_each_monotonic","for_each_monotonic_range","for_each_monotonic_range","for_each_quadratic_bezier","for_each_quadratic_bezier","for_each_quadratic_bezier","for_each_quadratic_bezier_with_t","for_each_quadratic_bezier_with_t","for_each_quadratic_bezier_with_t","for_each_x_monotonic","for_each_x_monotonic","for_each_x_monotonic_range","for_each_x_monotonic_range","for_each_y_monotonic","for_each_y_monotonic","for_each_y_monotonic_range","for_each_y_monotonic_range","frac_pi_2","frac_pi_3","frac_pi_4","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_svg_arc","get","get_angle","hash","height","horizontal_line_intersection","horizontal_line_intersection_t","init","init","init","init","init","init","init","init","init","intersection","intersection","intersection_t","intersects","intersects","intersects_box","intersects_line","intersects_line_segment","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","invert","is_a_point","is_finite","is_horizontal","is_linear","is_linear","is_monotonic","is_monotonic","is_quadratic","is_straight_line","is_vertical","is_x_monotonic","is_x_monotonic","is_y_monotonic","is_y_monotonic","large_arc","length","length","lerp","line_intersection","line_intersection_t","line_intersections","line_intersections","line_intersections_t","line_intersections_t","line_segment_intersections","line_segment_intersections","line_segment_intersections_t","line_segment_intersections_t","local_x_extremum_t","local_y_extremum_t","m11","m12","m21","m22","m31","m32","max","mid_point","min","mul","mul_assign","neg","new","normal","num_quadratics","offset","overlaps_line","overlaps_segment","parallel_line","partial_cmp","pi","point","point","positive","project_point","quadratic_bezier","quadratic_intersections","quadratic_intersections_t","radians","radians","radii","radii","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample_tangent","set_length","signed","signed_distance_to_point","signed_distance_to_point","sin_cos","size","solve_t_for_x","solve_t_for_x","solve_t_for_y","solve_t_for_y","solve_x_for_y","solve_x_for_y","solve_y_for_x","solve_y_for_x","split","split","split","split","split","split","split","split","split","split_at_x","split_range","split_range","split_range","split_range","split_range","split_range","split_range","split_range","split_range","square_distance_to_point","square_distance_to_point","square_distance_to_point","square_length","start_angle","sub","sub_assign","sum","sum","sweep","sweep_angle","tangent","to","to","to","to","to","to","to","to","to","to","to","to","to","to_arc","to_cubic","to_degrees","to_f32","to_f32","to_f32","to_f32","to_f32","to_f64","to_f64","to_f64","to_f64","to_f64","to_line","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_quadratic","to_quadratic_error","to_svg_arc","to_vector","traits","transform","transformed","transformed","transformed","translate","try_cast","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","two_pi","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","utils","value","vector","vector","vertical_line_intersection","vertical_line_intersection_t","width","x","x","x","x","x","x","x","x","x","x","x","x","x_maximum_t","x_maximum_t","x_minimum_t","x_minimum_t","x_rotation","x_rotation","y","y","y","y","y","y","y","y","y","y","y","y","y_maximum_t","y_maximum_t","y_minimum_t","y_minimum_t","zero","Arc","ArcFlags","Flattened","SvgArc","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","center","components_from","deref","deref_mut","downcast","drop","flags","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_iter","into_stimulus","large_arc","next","radii","radii","start_angle","sweep","sweep_angle","to","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","x_rotation","x_rotation","ArrayString","ArrayVec","CapacityError","Drain","IntoIter","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_mut","as_mut_ptr","as_mut_slice","as_mut_str","as_ptr","as_ref","as_ref","as_slice","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","capacity","clear","clear","clone","clone","clone","clone","clone_from","clone_from","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","compare","compare","compare","components_from","components_from","components_from","components_from","components_from","default","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","drain","drop","drop","drop","drop","drop","drop","drop","drop","element","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","flush","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_byte_string","from_iter","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_str","ge","ge","ge","gt","gt","gt","hash","hash","init","init","init","init","init","insert","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_inner","into_inner_unchecked","into_iter","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_empty","is_full","is_full","le","le","le","len","len","lt","lt","lt","new","new","new","new_const","new_const","next","next","next_back","next_back","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pop","pop","pop_at","push","push","push_str","push_unchecked","remaining_capacity","remaining_capacity","remove","remove","retain","set_len","set_len","simplify","size_hint","size_hint","swap_pop","swap_remove","take","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_smolstr","to_string","to_string","truncate","truncate","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_extend_from_slice","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_insert","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_push","try_push","try_push_str","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","write","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_big_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_as_little_endian","write_char","write_str","zero_filled","CubicBezierSegment","Flattened","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","components_into","ctrl1","ctrl2","deref","deref_mut","downcast","drop","from","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_iter","into_stimulus","next","size_hint","to","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","Angle","BoolVector2D","BoolVector3D","Box2D","Box3D","HomogeneousVector","Length","Point2D","Point3D","Rect","RigidTransform3D","Rotation2D","Rotation3D","Scale","SideOffsets2D","Size2D","Size3D","Transform2D","Transform3D","Translation2D","Translation3D","Trig","UnknownUnit","Vector2D","Vector3D","abs","abs","abs","abs","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_size","add_size","all","all","and","and","angle","angle_from_x_axis","angle_to","angle_to","any","any","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_epsilon","approx_eq","approx_eq","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approx_eq_eps","approxeq","approxord","area","area","area","around_axis","around_x","around_y","around_z","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom","box3d","bvec2","bvec3","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","cast_unit","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","ceil","center","center","center","clamp","clamp","clamp","clamp","clamp","clamp","clamp","clamp_length","clamp_length","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","compare","compare","compare","component_div","component_div","component_mul","component_mul","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","contains","contains","contains","contains","contains","contains_box","contains_box","contains_rect","cos","cross","cross","decompose_reversed","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","degrees_to_radians","depth","depth","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","determinant","determinant","distance_to","distance_to","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_assign","div_euclid","div_euclid","dot","dot","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equal","equal","equal","equal","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","euler","extend","extend","fast_atan2","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","floor","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle_and_length","from_array","from_array","from_arrays","from_arrays","from_length_all_same","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_lengths","from_origin_and_size","from_points","from_points","from_points","from_rotation","from_scale","from_size","from_size","from_size","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_translation","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_untyped","from_vectors_inner","from_vectors_outer","get","get","get_angle","greater_than","greater_than","greater_than","greater_than","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","height","height","height","height","height","horizontal","i","identity","identity","identity","identity","identity","identity","identity","identity","inflate","inflate","inflate","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_box","inner_rect","intersection","intersection","intersection","intersection_unchecked","intersection_unchecked","intersects","intersects","intersects","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","inverse","inverse","inverse","inverse","inverse","inverse","inverse","inverse","is_2d","is_backface_visible","is_empty","is_empty","is_empty","is_empty","is_empty","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_finite","is_identity","is_identity","is_identity","is_invertible","is_invertible","is_negative","is_negative","is_normalized","is_positive","is_positive","is_zero","j","k","left","length","length","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lerp","lower_than","lower_than","lower_than","lower_than","m11","m11","m12","m12","m13","m14","m21","m21","m22","m22","m23","m24","m31","m31","m32","m32","m33","m34","m41","m42","m43","m44","max","max","max","max","max","max","max","max","max","max","max","max_x","max_y","min","min","min","min","min","min","min","min","min","min","min","min_x","min_y","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_assign","mul_s","neg","neg","neg","neg","neg","neg","neg","neg","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_2d","new_all_same","new_from_reversed","none","none","norm","normalize","normalize","normalize","not","not","not_equal","not_equal","not_equal","not_equal","num","one","one","one","or","or","origin","origin","origin","ortho","outer_box","outer_rect","outer_transformed_box","outer_transformed_box2d","outer_transformed_box3d","outer_transformed_rect","outer_transformed_rect","partial_cmp","partial_cmp","partial_cmp","perspective","point2","point3","position","pre_rotate","pre_rotate","pre_scale","pre_scale","pre_translate","pre_translate","project_onto_vector","project_onto_vector","project_to_2d","quaternion","r","radians","radians","radians_to_degrees","rect","reflect","reflect","rem_euclid","rem_euclid","right","robust_normalize","robust_normalize","rotation","rotation","rotation","round","round","round","round","round","round","round","round","round","round","round","round","round","round","round","round_in","round_in","round_in","round_out","round_out","round_out","saturating_add","saturating_sub","scale","scale","scale","scale","scale","select_point","select_point","select_size","select_size","select_vector","select_vector","set_size","sin","size","size","size","size2","size3","skew","slerp","splat","splat","splat","splat","splat","splat","splat","splat","square_length","square_length","square_norm","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","sum","sum","sum","sum","sum","sum","sum","sum","sum","sum","tan","then","then","then","then","then","then_rotate","then_rotate","then_scale","then_scale","then_translate","then_translate","to_2d","to_2d","to_2d","to_3d","to_3d","to_3d","to_3d","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array","to_array_4d","to_array_4d","to_array_transposed","to_array_transposed","to_arrays","to_arrays","to_arrays_transposed","to_box2d","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f32","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_f64","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i32","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_i64","to_non_empty","to_non_empty","to_non_empty","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_point","to_point","to_point2d","to_point3d","to_rect","to_size","to_transform","to_transform","to_transform","to_transform","to_transform","to_transform","to_transform","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple","to_tuple_4d","to_tuple_4d","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u32","to_u64","to_u64","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_untyped","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_usize","to_vector","to_vector","to_vector","to_vector","to_vector","to_vector","top","transform_box","transform_box2d","transform_box2d","transform_box3d","transform_box3d","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point","transform_point2d","transform_point2d","transform_point2d","transform_point2d_homogeneous","transform_point3d","transform_point3d","transform_point3d","transform_point3d","transform_point3d_homogeneous","transform_rect","transform_rect","transform_rect","transform_size","transform_size","transform_size","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector","transform_vector2d","transform_vector2d","transform_vector3d","transform_vector3d","translate","translate","translate","translation","translation","translation","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_cast","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_normalize","try_normalize","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","union","union","union","unit_quaternion","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","vec2","vec3","vector_part","vertical","volume","volume","w","width","width","width","width","width","with_destination","with_destination","with_length","with_max_length","with_max_length","with_min_length","with_min_length","with_source","with_source","x","x","x","x","x","x","x","x","x","x_range","x_range","x_range","xy","xy","xy","xy_area","xz","xz","xz","xz_area","y","y","y","y","y","y","y","y","y","y_range","y_range","y_range","yx","yx","yz","yz","yz","yz_area","z","z","z","z","z","z_range","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","zero","ApproxEq","approx_epsilon","approx_eq","approx_eq_eps","max","min","Box2D","Box3D","HomogeneousVector","Length","Point2D","Point3D","Rect","RigidTransform3D","Rotation2D","Rotation3D","Scale","SideOffsets2D","Size2D","Size3D","Transform2D","Transform3D","Translation2D","Translation3D","Vector2D","Vector3D","angle","bottom","depth","height","height","i","j","k","left","m11","m11","m12","m12","m13","m14","m21","m21","m22","m22","m23","m24","m31","m31","m32","m32","m33","m34","m41","m42","m43","m44","max","max","min","min","origin","r","right","rotation","size","top","translation","w","width","width","x","x","x","x","x","x","x","y","y","y","y","y","y","y","z","z","z","z","Ceil","Floor","One","Round","Zero","ceil","floor","one","round","zero","Flattened","FlattenedT","FlatteningParameters","QuadraticBezierSegment","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","components_from","components_from","components_from","ctrl","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","from","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","new","next","next","size_hint","size_hint","to","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","Scalar","Segment","Transformation","after_split","approximate_length","before_split","derivative","dx","dy","flip","for_each_flattened_with_t","from","sample","split","split_range","to","transform_point","transform_vector","x","y","cubic_polynomial_roots","directed_angle","directed_angle2","min_max","normalized_tangent","tangent","Flattened","FromPolyline","NoAttributes","PathIterator","Transformed","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","closed","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","drop","drop","drop","drop","flattened","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","new","new","next","next","next","next","open","size_hint","transformed","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","with_attributes","Angle","Box2D","Point","Rotation","Scale","Size","Transform","Translation","Vector","angle","height","m11","m12","m21","m22","m31","m32","max","min","point","radians","size","vector","width","x","x","x","y","y","y","Builder","BuilderImpl","BuilderWithAttributes","IdIter","Iter","IterWithAttributes","Path","PathSlice","Reversed","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","build","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","end","end","end","extend_from_paths","extend_from_paths","fmt","for_each_flattened","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_path","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","new","new","next","next","next","next","num_attributes","num_attributes","num_attributes","points","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","reserve","reserve","reserve","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","with_capacity","with_svg","Builder","BuilderWithAttributes","Iter","PathBuffer","PathBufferSlice","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","begin","begin","begin","begin","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","build","build","build","build","clone","clone_into","components_from","components_from","components_from","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","cubic_bezier_to","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","end","end","end","end","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_stimulus","into_stimulus","into_stimulus","line_to","line_to","line_to","line_to","new","next","next_back","num_attributes","num_attributes","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","quadratic_bezier_to","reserve","reserve","reserve","reserve","size_hint","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","with_attributes","IdPolygon","IdPolygonIter","PathEvents","Polygon","PolygonIdIter","PolygonIter","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","closed","closed","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","drop","drop","drop","drop","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_iter","into_iter","into_iter","into_iter","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","next","next","next","next","par_bridge","points","points","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","Build","PathBuilder","PathIterator","PathType","SvgPathBuilder","add_circle","add_ellipse","add_line_segment","add_point","add_polygon","add_polygon","add_rectangle","add_rounded_rectangle","arc_to","begin","build","close","close","cubic_bezier_to","cubic_bezier_to","end","event","flattened","flattened","horizontal_line_to","line_to","line_to","move_to","num_attributes","path_event","quadratic_bezier_to","quadratic_bezier_to","relative_arc_to","relative_cubic_bezier_to","relative_horizontal_line_to","relative_line_to","relative_move_to","relative_quadratic_bezier_to","relative_vertical_line_to","reserve","reserve","smooth_cubic_bezier_to","smooth_quadratic_bezier_to","smooth_relative_cubic_bezier_to","smooth_relative_quadratic_bezier_to","transformed","transformed","vertical_line_to","with_svg","Bevel","Butt","Gradient","LineCap","LineDash","LineJoin","Miter","Round","Round","Solid","Square","Stroke","Style","line_cap","line_dash","line_join","offset","segments","style","width","Appearance","Checkbox","Icon","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","code_point","components_from","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","drop","drop","drop","eq","fmt","fmt","font","font","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hovered","icon","icon_color","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","line_height","mouse_interaction","new","on_event","shaping","size","size","size","spacing","state","style","tag","text_color","text_line_height","text_shaping","text_size","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","width","ComboBox","State","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","build_matchers","children","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","drop","drop","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","icon","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","line_height","mouse_interaction","new","new","on_close","on_event","on_input","on_option_hovered","overlay","padding","search","size","size","state","style","tag","text_input_style","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","with_selection","Appearance","Container","Id","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","align_x","align_y","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","center_x","center_y","children","clone","clone","clone_into","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","downcast","downcast","downcast","draw","draw_background","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","hash","height","id","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","max_height","max_width","mouse_interaction","new","new","on_event","operate","overlay","padding","shadow","size","state","style","tag","text_color","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","unique","upcast","upcast","upcast","visible_bounds","width","with_background","with_border","FilterMethod","Handle","Image","Linear","Nearest","Viewer","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","components_from","content_fit","data","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","draw","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","filter_method","fmt","fmt","fmt","from","from","from","from","from_angle","from_angle","from_angle","from_memory","from_path","from_pixels","from_stimulus","from_stimulus","from_stimulus","hash","hash","height","id","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","layout","new","size","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","viewer","viewer","width","State","Viewer","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","drop","drop","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","height","image_size","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","is_cursor_grabbed","layout","max_scale","min_scale","mouse_interaction","new","new","on_event","padding","scale_step","size","state","tag","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","Column","column","Column","adapt_into_using","align_items","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","children","components_from","default","deref","deref_mut","diff","downcast","draw","drop","from","from_angle","from_stimulus","height","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","max_width","mouse_interaction","new","on_event","operate","overlay","padding","push","size","spacing","state","tag","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","width","with_children","menu","Appearance","Menu","State","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","fmt","fmt","font","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","new","new","overlay","padding","selected_background","selected_text_color","style","text_color","text_line_height","text_shaping","text_size","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","width","All","Appearance","Axis","Bottom","Canceled","Center","Configuration","Content","Contents","Direction","Down","DragEvent","Draggable","Dropped","Edge","Edge","Edge","Horizontal","Left","Left","Line","Maximized","Node","Pane","Pane","Pane","Pane","PaneGrid","Picked","Region","ResizeEvent","Right","Right","Split","Split","Split","State","Style","StyleSheet","Target","TitleBar","Top","Up","Vertical","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","always_show_controls","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","can_be_dragged_at","can_be_dragged_at","children","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","color","compare","compare","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","controls","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","hash","hash","height","hovered_region","hovered_split","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_over_pick_area","iter","layout","layout","layout","mouse_interaction","mouse_interaction","new","new","new","on_click","on_drag","on_event","on_resize","operate","overlay","padding","pane_regions","partial_cmp","partial_cmp","picked_split","ratio","size","spacing","split","split","split_line_bounds","split_regions","splits","state","state","style","style","style","tag","title_bar","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","width","width","a","axis","b","ratio","pane","pane","pane","target","a","axis","b","id","ratio","Action","Clicking","Dragging","Idle","Internal","Resizing","State","adapt_into_using","adapt_into_using","adapt_into_using","adjacent","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clicked_pane","clone","clone","clone","clone_into","clone_into","clone_into","close","components_from","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","drop","drop","drop","drop","eq","fmt","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_configuration","from_stimulus","from_stimulus","from_stimulus","get","get_mut","init","init","init","internal","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","is_empty","iter","iter_mut","layout","layout","len","maximize","maximized","move_to_edge","new","panes","picked_pane","picked_split","resize","restore","split","split_with","swap","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","with_configuration","axis","origin","origin","pane","pane","split","Appearance","Arrow","DEFAULT_PADDING","Dynamic","Handle","Icon","None","PickList","State","Static","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","code_point","components_from","components_from","components_from","components_from","components_from","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","draw","draw","drop","drop","drop","drop","drop","eq","eq","fmt","fmt","fmt","fmt","font","font","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","handle","handle_color","hovered","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","layout","line_height","mouse_interaction","mouse_interaction","new","on_event","overlay","overlay","padding","placeholder","placeholder_color","shaping","size","size","state","style","tag","text_color","text_line_height","text_shaping","text_size","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","update","width","closed","open","size","Appearance","DEFAULT_HEIGHT","ProgressBar","Style","StyleSheet","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","bar","border_radius","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","drop","drop","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","height","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","new","size","style","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","DataTooLong","Error","ErrorCorrection","High","InvalidCharacter","InvalidEciDesignator","InvalidVersion","Low","Medium","Micro","Normal","QRCode","Quartile","State","UnsupportedCharacterSet","Version","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cell_size","clone","clone","clone","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","new","new","size","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","with_error_correction","with_version","Appearance","DEFAULT_SIZE","DEFAULT_SPACING","Radio","Style","StyleSheet","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","border_color","border_width","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","dot_color","downcast","downcast","draw","drop","drop","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","mouse_interaction","new","on_event","size","size","spacing","state","style","tag","text_color","text_line_height","text_shaping","text_size","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","Appearance","AsymmetricPadding","FillMode","Full","Padded","Percent","Rule","Style","StyleSheet","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","components_from","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","drop","drop","drop","fill","fill_mode","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","horizontal","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","radius","size","style","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","vertical","width","AbsoluteOffset","Alignment","Both","Direction","END","End","Horizontal","Id","Properties","RelativeOffset","START","Scrollable","Scrollbar","Scroller","Start","State","Style","StyleSheet","Vertical","Viewport","absolute_offset","absolute_offset_reversed","active","active_horizontal","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","alignment","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bounds","children","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","content_bounds","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","direction","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","dragging","dragging_horizontal","draw","draw","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","height","horizontal","hovered","hovered_horizontal","id","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","layout","margin","mouse_interaction","mouse_interaction","new","new","new","new","on_event","on_scroll","operate","overlay","relative_offset","scroll","scroll_to","scroll_to","scroll_to","scroll_x_to","scroll_y_to","scroller","scroller_width","scrollers_grabbed","size","snap_to","snap_to","snap_to","state","style","tag","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unique","unsnap","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","vertical","width","width","x","x","y","y","horizontal","vertical","Event","Keyboard","Mouse","Primitive","Primitive","Program","RedrawRequested","Shader","State","Storage","Touch","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","components_from","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","draw","drop","drop","drop","eq","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","get","get_mut","has","height","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","mouse_interaction","mouse_interaction","mouse_interaction","new","on_event","prepare","render","size","state","store","tag","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","update","update","wgpu","width","Appearance","Circle","DEFAULT_HEIGHT","Handle","HandleShape","Rail","Rectangle","Slider","State","Style","StyleSheet","active","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","border_color","border_radius","border_width","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","colors","components_from","components_from","components_from","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","dragging","draw","draw","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","handle","height","hovered","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","mouse_interaction","mouse_interaction","new","new","on_event","on_release","rail","shape","shift_step","size","state","step","style","tag","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","update","width","width","border_radius","radius","width","Space","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","deref","deref_mut","downcast","draw","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","layout","new","size","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","upcast","with_height","with_width","Appearance","Handle","Style","StyleSheet","Svg","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","color","components_from","components_from","components_from","content_fit","data","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","draw","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from_angle","from_angle","from_angle","from_memory","from_path","from_path","from_stimulus","from_stimulus","from_stimulus","hash","height","hovered","id","init","init","init","into","into","into","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","layout","new","size","style","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","upcast","upcast","upcast","width","Absolute","Advanced","Appearance","Basic","LineHeight","Relative","Shaping","State","Style","StyleSheet","Text","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","appearance","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","default","default","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hash","init","init","init","init","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","to_absolute","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","Action","Appearance","Backspace","Click","Content","Delete","DocumentEnd","DocumentStart","Down","Drag","Edit","Edit","End","Enter","Home","Insert","Left","Motion","Move","PageDown","PageUp","Paste","Right","Scroll","Select","SelectLine","SelectWord","Style","StyleSheet","TextEditor","Up","WordLeft","WordRight","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","cursor_position","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","direction","disabled","disabled_color","downcast","downcast","downcast","downcast","downcast","downcast","draw","drop","drop","drop","drop","drop","drop","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","focused","font","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","highlight","hovered","init","init","init","init","init","init","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_edit","layout","line","line_count","lines","mouse_interaction","new","new","on_action","on_event","padding","perform","placeholder_color","selection","selection_color","size","state","style","tag","text","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","value_color","widen","with_text","lines","Appearance","Cursor","DEFAULT_PADDING","Icon","Id","Left","Right","Side","State","Style","StyleSheet","TextInput","Value","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","border","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","code_point","components_from","components_from","components_from","components_from","components_from","components_from","components_from","cursor","cursor","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","diff","disabled","disabled_color","downcast","downcast","downcast","downcast","downcast","downcast","downcast","draw","draw","draw","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","focus","focus","focus","focused","focused","font","font","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","hash","hovered","icon","icon_color","id","init","init","init","init","init","init","init","insert","insert_many","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_empty","is_focused","is_focused","layout","layout","layout","len","line_height","mouse_interaction","mouse_interaction","move_cursor_to","move_cursor_to","move_cursor_to","move_cursor_to_end","move_cursor_to_end","move_cursor_to_end","move_cursor_to_front","move_cursor_to_front","move_cursor_to_front","new","new","new","new","next_end_of_word","on_event","on_input","on_paste","on_submit","operate","padding","password","placeholder_color","previous_start_of_word","remove","remove_many","secure","select","select_all","select_all","select_all","selection_color","side","size","size","size","spacing","state","style","tag","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","unfocus","unfocus","unique","until","upcast","upcast","upcast","upcast","upcast","upcast","upcast","update","value_color","width","Cursor","Index","Selection","State","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","components_from","components_from","default","deref","deref","deref_mut","deref_mut","downcast","downcast","drop","drop","fmt","fmt","from","from","from_angle","from_angle","from_stimulus","from_stimulus","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","selection","state","to_owned","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","end","start","Application","Box","Button","Checkbox","Color","Container","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","Custom","DARK","Danger","Danger","Dark","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Default","Destructive","LIGHT","Light","Menu","Palette","PaneGrid","PickList","Positive","Primary","Primary","Primary","ProgressBar","Radio","Rule","Scrollable","Secondary","Secondary","Slider","Success","Success","Svg","Text","Text","TextEditor","TextInput","Theme","Toggler","Transparent","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","components_from","custom","custom","custom_fn","danger","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","new","palette","primary","success","text","to_owned","to_owned","to_owned","to_owned","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","upcast","with_fn","Background","Danger","EXTENDED_DARK","EXTENDED_LIGHT","Extended","Pair","Palette","Primary","Secondary","Success","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","background","background","base","base","base","base","base","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","components_from","components_from","danger","danger","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","downcast","downcast","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","generate","generate","generate","generate","generate","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","is_dark","new","new","primary","primary","secondary","strong","strong","strong","strong","strong","success","success","text","text","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","upcast","upcast","weak","weak","weak","weak","weak","Appearance","DEFAULT_SIZE","Style","StyleSheet","Toggler","active","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","background","background_border","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","downcast","downcast","draw","drop","drop","fmt","font","foreground","foreground_border","from","from","from_angle","from_angle","from_stimulus","from_stimulus","hovered","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","mouse_interaction","new","on_event","size","size","spacing","state","style","tag","text_alignment","text_line_height","text_shaping","text_size","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","width","Bottom","FollowCursor","Left","Position","Right","Tooltip","Top","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","children","clone","clone_into","components_from","components_from","deref","deref","deref_mut","deref_mut","diff","downcast","downcast","draw","drop","drop","eq","equivalent","equivalent","equivalent","fmt","font","from","from","from_angle","from_angle","from_stimulus","from_stimulus","gap","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","layout","mouse_interaction","new","on_event","overlay","padding","size","size","snap_within_viewport","state","style","tag","text_shaping","to_owned","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","upcast","upcast","Appearance","Circle","DEFAULT_WIDTH","Handle","HandleShape","Rectangle","State","Style","StyleSheet","VerticalSlider","active","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","adapt_into_using","arrays_from","arrays_from","arrays_from","arrays_from","arrays_from","arrays_into","arrays_into","arrays_into","arrays_into","arrays_into","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","border_color","border_width","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","color","components_from","components_from","components_from","components_from","components_from","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","downcast","downcast","downcast","downcast","downcast","dragging","draw","draw","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from_angle","from_angle","from_angle","from_angle","from_angle","from_stimulus","from_stimulus","from_stimulus","from_stimulus","from_stimulus","handle","height","hovered","init","init","init","init","init","into","into","into","into","into","into_angle","into_angle","into_angle","into_angle","into_angle","into_any","into_any","into_any","into_any","into_any","into_any_arc","into_any_arc","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_any_rc","into_color","into_color","into_color","into_color","into_color","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","into_stimulus","into_stimulus","into_stimulus","layout","mouse_interaction","mouse_interaction","new","new","on_event","on_release","rail","shape","shift_step","size","state","step","style","tag","to_owned","to_owned","to_owned","to_owned","try_components_into","try_components_into","try_components_into","try_components_into","try_components_into","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into_color","try_into_color","try_into_color","try_into_color","try_into_color","type_id","type_id","type_id","type_id","type_id","uints_from","uints_from","uints_from","uints_from","uints_from","uints_into","uints_into","uints_into","uints_into","uints_into","upcast","upcast","upcast","upcast","upcast","update","width","border_radius","radius","width"],"q":[[0,"iced_widget"],[339,"iced_widget::button"],[485,"iced_widget::canvas"],[1056,"iced_widget::canvas::event"],[1141,"iced_widget::canvas::fill"],[1190,"iced_widget::canvas::gradient"],[1277,"iced_widget::canvas::path"],[1366,"iced_widget::canvas::path::arc"],[1414,"iced_widget::canvas::path::lyon_path"],[2302,"iced_widget::canvas::path::lyon_path::Event"],[2315,"iced_widget::canvas::path::lyon_path::IdEvent"],[2328,"iced_widget::canvas::path::lyon_path::PathEvent"],[2341,"iced_widget::canvas::path::lyon_path::builder"],[2663,"iced_widget::canvas::path::lyon_path::commands"],[2866,"iced_widget::canvas::path::lyon_path::geom"],[3647,"iced_widget::canvas::path::lyon_path::geom::arc"],[3697,"iced_widget::canvas::path::lyon_path::geom::arrayvec"],[4064,"iced_widget::canvas::path::lyon_path::geom::cubic_bezier"],[4106,"iced_widget::canvas::path::lyon_path::geom::euclid"],[6053,"iced_widget::canvas::path::lyon_path::geom::euclid::approxeq"],[6057,"iced_widget::canvas::path::lyon_path::geom::euclid::approxord"],[6059,"iced_widget::canvas::path::lyon_path::geom::euclid::default"],[6142,"iced_widget::canvas::path::lyon_path::geom::euclid::num"],[6152,"iced_widget::canvas::path::lyon_path::geom::quadratic_bezier"],[6262,"iced_widget::canvas::path::lyon_path::geom::traits"],[6282,"iced_widget::canvas::path::lyon_path::geom::utils"],[6288,"iced_widget::canvas::path::lyon_path::iterator"],[6438,"iced_widget::canvas::path::lyon_path::math"],[6468,"iced_widget::canvas::path::lyon_path::path"],[6725,"iced_widget::canvas::path::lyon_path::path_buffer"],[6865,"iced_widget::canvas::path::lyon_path::polygon"],[7025,"iced_widget::canvas::path::lyon_path::traits"],[7074,"iced_widget::canvas::stroke"],[7094,"iced_widget::checkbox"],[7231,"iced_widget::combo_box"],[7324,"iced_widget::container"],[7473,"iced_widget::image"],[7613,"iced_widget::image::viewer"],[7701,"iced_widget::keyed"],[7703,"iced_widget::keyed::column"],[7756,"iced_widget::overlay"],[7757,"iced_widget::overlay::menu"],[7878,"iced_widget::pane_grid"],[8598,"iced_widget::pane_grid::Configuration"],[8602,"iced_widget::pane_grid::DragEvent"],[8606,"iced_widget::pane_grid::Node"],[8611,"iced_widget::pane_grid::state"],[8754,"iced_widget::pane_grid::state::Action"],[8760,"iced_widget::pick_list"],[8982,"iced_widget::pick_list::Handle"],[8985,"iced_widget::progress_bar"],[9069,"iced_widget::qr_code"],[9282,"iced_widget::radio"],[9379,"iced_widget::rule"],[9504,"iced_widget::scrollable"],[9997,"iced_widget::scrollable::Direction"],[9999,"iced_widget::shader"],[10134,"iced_widget::slider"],[10284,"iced_widget::slider::HandleShape"],[10287,"iced_widget::space"],[10327,"iced_widget::svg"],[10458,"iced_widget::text"],[10628,"iced_widget::text_editor"],[10907,"iced_widget::text_editor::Action"],[10908,"iced_widget::text_input"],[11258,"iced_widget::text_input::cursor"],[11337,"iced_widget::text_input::cursor::State"],[11339,"iced_widget::theme"],[12057,"iced_widget::theme::palette"],[12361,"iced_widget::toggler"],[12456,"iced_widget::tooltip"],[12552,"iced_widget::vertical_slider"],[12770,"iced_widget::vertical_slider::HandleShape"],[12773,"palette::chromatic_adaptation"],[12774,"iced_style::application"],[12775,"core::any"],[12776,"iced_core::renderer"],[12777,"iced_core::element"],[12778,"core::convert"],[12779,"alloc::string"],[12780,"core::ops::function"],[12781,"iced_core::text"],[12782,"iced_core::widget::tree"],[12783,"alloc::vec"],[12784,"core::hash"],[12785,"core::iter::traits::collect"],[12786,"core::option"],[12787,"core::fmt"],[12788,"core::clone"],[12789,"core::ops::function"],[12790,"iced_core::size"],[12791,"iced_core::color"],[12792,"iced_core::rectangle"],[12793,"iced_core::renderer"],[12794,"iced_core::mouse::cursor"],[12795,"iced_graphics::mesh"],[12796,"iced_core::point"],[12797,"iced_core::renderer"],[12798,"iced_core::text"],[12799,"iced_runtime::command"],[12800,"iced_core::length"],[12801,"alloc::boxed"],[12802,"alloc::sync"],[12803,"alloc::rc"],[12804,"core::marker"],[12805,"core::cmp"],[12806,"iced_core::layout::limits"],[12807,"iced_core::layout::node"],[12808,"alloc::borrow"],[12809,"iced_core::mouse::interaction"],[12810,"iced_core::event"],[12811,"iced_core::clipboard"],[12812,"iced_core::shell"],[12813,"iced_core::widget::operation"],[12814,"core::default"],[12815,"iced_core::overlay::element"],[12816,"alloc::string"],[12817,"core::cmp"],[12818,"smol_str"],[12819,"palette::convert::try_from_into_color"],[12820,"core::any"],[12821,"core::fmt"],[12822,"core::ops::function"],[12823,"iced_core::gradient"],[12824,"core::ops::arith"],[12825,"num_traits::float"],[12826,"num_traits::cast"],[12827,"core::ops::arith"],[12828,"core::ops::arith"],[12829,"core::cmp"],[12830,"core::str::error"],[12831,"core::fmt"],[12832,"num_traits::ops::euclid"],[12833,"num_traits::ops::saturating"],[12834,"rayon::iter::par_bridge"],[12835,"core::convert"],[12836,"iced_core::alignment"],[12837,"iced_core::image"],[12838,"iced_core::image"],[12839,"core::marker"],[12840,"std::collections::hash::map"],[12841,"iced_core::text::paragraph"],[12842,"qrcode::types"],[12843,"iced_wgpu::primitive::pipeline"],[12844,"wgpu_types"],[12845,"wgpu"],[12846,"wgpu"],[12847,"iced_core::svg"],[12848,"iced_core::text::highlighter"]],"d":["A list with all the defined themes.","","","","","","A reusable, custom widget that uses The Elm Architecture.","","A Theme that uses a Custom palette.","The built-in dark variant.","The type of event this Component handles internally.","","A widget that only rebuilds its contents when necessary.","The built-in light variant.","","","","","","","The default graphics renderer for iced.","A widget that is aware of its dimensions.","","","","","","","The internal state of this Component.","","","","","A built-in theme.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Allow your users to perform actions by pressing a button.","Creates a new Button with the provided content.","Draw 2D graphics for your users.","Creates a new Canvas.","Show toggle controls using checkboxes.","Creates a new Checkbox.","","","","","Creates a new Column with the given children.","Creates a Column with the given children.","Creates a Column with the given children.","Display a dropdown list of searchable and selectable …","Creates a new ComboBox.","Turns an implementor of Component into an Element that can …","","","","","Decorate content and apply alignment.","Creates a new Container with the provided content.","","Creates a new custom Theme from the given Palette.","Creates a new custom Theme from the given Palette, with a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the palette::Extended of the Theme.","","","","","","","Focuses the next focusable widget.","Focuses the previous focusable widget.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Creates a horizontal Rule with the given height.","Creates a new horizontal Space with the given Length.","","","","","","","","","","","","","","Display images in your user interface.","Creates a new Image.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","Use widgets that can provide hints to ensure continuity.","Creates a new keyed::Column with the given children.","Creates a Column with the given children.","","","Creates a new Lazy widget with the given data Dependency …","","A container intercepting mouse events.","","","Creates a new Responsive widget with a closure that …","Creates a new Lazy widget with the given data Dependency …","","","Update the Component state based on the provided Operation","Update the Component state based on the provided Operation","","","Display interactive elements on top of other widgets.","","","Returns the Palette of the Theme.","Let your users split regions of your application and …","Display a dropdown list of selectable values.","Creates a new PickList.","","","","","Provide progress feedback to your users.","Creates a new ProgressBar.","Encode and display information in a QR code.","Create choices using radio buttons.","Creates a new Radio.","","Creates a new Responsive widget with a closure that …","Creates a new Row with the given children.","Creates a Row with the given children.","Creates a Row with the given children.","Display a horizontal or vertical rule for dividing content.","","Navigate an endless amount of content with a scrollbar.","Creates a new Scrollable with the provided content.","","","A custom shader widget for wgpu applications.","Creates a new Shader.","","","","Display an interactive selector of a single value from a …","Creates a new Slider.","Distribute content vertically.","","","","Display vector graphics in your application.","Creates a new Svg widget from the given Handle.","","","Draw and interact with text.","Creates a new Text widget with the provided content.","Display a multi-line text input for text editing.","Creates a new TextEditor.","Display fields that can be filled with text.","Creates a new TextInput.","Use the built-in theme and styles.","A widget that applies any Theme to its contents.","","","","Show toggle controls using togglers.","Creates a new Toggler.","Display a widget over another.","Creates a new Tooltip with the provided content, tooltip …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the Component state …","","","Creates a vertical Rule with the given width.","Display an interactive selector of a single value from a …","Creates a new VerticalSlider.","Creates a new vertical Space with the given Length.","Produces the widgets of the Component, which may trigger …","","","The appearance of a button.","A generic widget that produces a message when pressed.","The local state of a Button.","The supported style of the StyleSheet.","A set of rules that dictate the style of a button.","Produces the active Appearance of a button.","","","","","","","","","","","","","","","","The Background of the button.","The Border of the buton.","","","","","","","","","","","","","","","","","","","","","","","","Produces the disabled Appearance of a button.","","","","Draws a Button.","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Sets the height of the Button.","Produces the hovered Appearance of a button.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Computes the layout of a Button.","","Returns the mouse::Interaction of a Button.","","Creates a new Button with the given content.","Creates a new State.","","Sets the message that will be produced when the Button is …","Sets the message that will be produced when the Button is …","","","Sets the Padding of the Button.","Produces the pressed Appearance of a button.","The Shadow of the butoon.","The amount of offset to apply to the shadow of the button.","","","Sets the style variant of this Button.","","The text Color of the button.","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes the given Event and updates the State of a Button","Sets the width of the Button.","A bevelled corner.","The stroke for each sub-path does not extend beyond its …","A simple cache that stores generated Geometry to avoid …","A widget capable of drawing 2D graphics.","","The style used to fill geometry.","","","The kind of geometry this renderer can draw.","A fill which linearly interpolates colors along a …","A Gradient color.","The shape used at the end of open subpaths when they are …","The dash pattern used when stroking the line.","The shape used at the corners of paths or basic shapes …","A linear gradient interpolates colors along a direction …","A sharp corner.","An immutable set of points that may or may not be …","The state and logic of a Canvas.","A renderer capable of drawing some Self::Geometry.","At the end of each sub-path, the shape representing the …","A round corner.","A solid Color.","At the end of each sub-path, the shape representing the …","The internal state mutated by the Program.","The style of a stroke.","The coloring style of some drawing.","A bunch of text that can be drawn to a canvas","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the coordinate of the center of the Frame.","Creates a new Path representing a circle given its center …","Clears the Cache, forcing a redraw the next time it is …","","","","","","","","","","","","","","","","","","","The color of the text","","","","","","","","","","","","","","The contents of the text","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the given layers of Self::Geometry.","Draws the state of the Program, producing a bunch of …","Draws Geometry using the provided closure and stores it in …","","Computes the Paths of the Text and draws them using the …","","","","","","","","","","","","","","","","Handle events of a canvas.","Fill Geometry with a certain style.","Draws the given Path on the Frame by filling it with the …","Draws an axis-aligned rectangle given its top-left corner …","Draws the characters of the given Text on the Frame, …","","","","","","","","","","","","The font of the text","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","A gradient that can be used as a fill for some geometry.","Returns the height of the Frame.","Sets the height of the Canvas.","The horizontal alignment of the text","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new Path representing a line segment given its …","The shape to be used at the end of open subpaths when they …","The dash pattern used when stroking the line.","The line height of the text.","The shape to be used at the corners of paths or basic …","Returns the current mouse interaction of the Program.","Returns the current mouse interaction of the Program.","","","Creates a new empty Cache.","Creates a new Path with the provided closure.","Creates a new Canvas.","The offset of LineDash::segments to start the pattern.","","Packs the Gradient for use in shader code.","Build different kinds of 2D shapes.","The position of the text relative to the alignment …","Returns the internal lyon_path::Path.","Creates a new Path representing a rectangle given its …","Applies a rotation in radians to the current transform of …","The fill rule defines how to determine what is inside and …","Applies a uniform scaling to the current transform of the …","Applies a non-uniform scaling to the current transform of …","The alternating lengths of lines and gaps which describe …","The shaping strategy of the text.","Returns the dimensions of the Frame.","","The size of the text","","Create lines from a Path and assigns them various …","Draws the stroke of the given Path on the Frame with the …","The color or gradient of the fill.","The color or gradient of the stroke.","","","","","","","","","","","Returns the current Path with the given transform applied …","Applies a translation to the current transform of the Frame…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Updates the State of the Program.","Updates the State of the Program.","The vertical alignment of the text","Returns the width of the Frame.","Sets the width of the Canvas.","The distance between the two edges of the stroke.","Executes the given drawing operations within a Rectangle …","Sets the color of the Stroke.","Sets the LineCap of the Stroke.","Sets the LineJoin of the Stroke.","Stores the current transform of the Frame and executes the …","Sets the width of the Stroke.","The Event was handled and processed by a widget.","A Canvas event.","The Event was NOT handled by any widget.","A keyboard event.","A mouse event.","The status of an Event after being processed.","A touch event.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Merges two Status into one.","","","","","","","","","","","","","","","","","","","","The style used to fill geometry.","A Gradient color.","","The fill rule defines how to determine what is inside and …","A solid Color.","The coloring style of some drawing.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","The fill rule defines how to determine what is inside and …","The color or gradient of the fill.","","","","","","","","","","A fill which linearly interpolates colors along a …","A linear gradient.","A linear gradient interpolates colors along a direction …","Packed Gradient data for use in shader code.","","","Adds a new ColorStop, defined by an offset and a color, to …","Adds multiple ColorStops to the gradient.","","","","","","","","","","","","","","","","","","","","","","","","","","","The absolute ending position of the gradient.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Creates a new Linear builder.","Creates a new Packed gradient for use in shader code.","Packs the Gradient for use in shader code.","The absolute starting position of the gradient.","ColorStops along the linear gradient direction.","","","","","","","","","","","","","","","","","","","A segment of a differentiable curve.","A Path builder.","An immutable set of points that may or may not be …","","","Build and draw curves.","Adds an Arc to the Path from start_angle to end_angle in a …","Adds a circular arc to the Path with the given control …","","","","","","","","","Adds a cubic Bézier curve to the Path given its two …","","","","","Builds the Path of this Builder.","The center of the arc.","Adds a circle to the Path given its center coordinate and …","","","Closes the current sub-path in the Path with a straight …","","","","","","","","","","","","Adds an ellipse to the Path using a clockwise direction.","The end of the segment’s angle, clockwise rotation from …","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Connects the last point in the Path to the given Point …","Moves the starting point of a new sub-path to the given …","Creates a new Builder.","Adds a quadratic Bézier curve to the Path given its …","The radius of the arc.","Adds a rectangle to the Path given its top-left corner …","The start of the segment’s angle, clockwise rotation …","","","","","","","","","","","","","","","","","","A segment of a differentiable curve.","An elliptical Arc.","","","","","","","","The center of the arc.","The center of the arc.","","","","","","","","The end of the segment’s angle, clockwise rotation from …","The end of the segment’s angle, clockwise rotation from …","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","The radii of the arc’s ellipse. The horizontal and …","The radius of the arc.","The clockwise rotation of the arc’s ellipse.","The start of the segment’s angle, clockwise rotation …","The start of the segment’s angle, clockwise rotation …","","","","","","","","","","Flag parameters for arcs as described by the SVG …","An alias for usize.","A view over a contiguous storage of custom attributes.","Interface for objects storing custom attributes associated …","An alias for a slice of f32 values.","","","","A beveled corner is to be used to join path segments. The …","The stroke for each sub-path does not extend beyond its …","ID of a control point in a path.","","","","","","","ID of an endpoint point in a path.","","Represents an event or edge of path.","Refers to an event in a path.","The fill rule defines how to determine what is inside and …","","","","A path event representing endpoints and control points as …","A view over a sequence of endpoint IDs forming a polygon.","","","","Line cap as defined by the SVG specification.","Line join as defined by the SVG specification.","A sharp corner is to be used to join path segments.","Same as a miter join, but if the miter limit is exceeded, …","An empty attribute slice.","","","","A simple path data structure.","An object that stores multiple paths contiguously.","A view on a PathBuffer.","The commands of a path encoded in a single array using IDs …","A view over PathCommands.","A path event representing endpoints and control points as …","A view on a Path.","A view over a sequence of endpoints forming a polygon.","Interface for types types (typically endpoints and control …","Interface for objects storing endpoints and control points …","","","","","","At each end of each sub-path, the shape representing the …","A round corner is to be used to join path segments.","The positive or negative side of a vector or segment.","At the end of each sub-path, the shape representing the …","The two possible orientations for the edges of a shape to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a view on the path commands.","Returns a view on this Path.","","Returns a slice over an endpoint’s custom attributes.","Returns a slice over an endpoint’s custom attributes.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Path building utilities.","Creates a PathCommandsBuilder to create path commands.","Creates a Builder to build a path.","","Creates a BuilderWithAttributes to build a path with …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A generic representation for paths that allow more control …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns the event for a given event ID.","Returns an iterator over the path, with endpoints and …","Returns the first endpoint and its custom attributes if …","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the endpoint’s custom attributes as a slice of …","","","","","","","","","","","","","","","","","","","Iterates over the endpoint and control point ids of the …","Iterates over the endpoint and control point ids of the …","Returns an iterator of IdEvent.","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the path buffer is empty.","Returns whether the path buffer is empty.","","","","","Returns an iterator over the path commands.","Returns an iterator over the path commands.","Iterates over the entire Path, ignoring custom attributes.","Iterates over the path.","","","Returns an iterator of Event<&T>.","","Iterates over the entire Path with custom attributes.","Iterates over the entire Path with custom attributes.","Tools to iterate over paths.","Of the four candidate arc sweeps, two will represent an …","Returns the last endpoint and its custom attributes if any.","","Returns the number of paths in the path buffer.","Returns the number of paths in the path buffer.","f32 version of the lyon_geom types used everywhere. Most …","","Creates an Empty Path.","","Returns the next event id within the path.","Returns the next event id within the path.","Returns the next event id within the sub-path.","Returns the next event id within the path.","Returns the number of float attributes per endpoint.","","","","","","","The default path data structure.","A container to store multiple paths contiguously.","Returns an iterator of PathEvent.","Returns a view on a path made of these commands with …","","","Specific path types for polygons.","","","Returns a reversed version of this path in the form of an …","Returns a reversed version of this path in the form of an …","Creates an WithSvg to build a path with a rich set of …","If sweep is true, then the arc will be drawn in a “…","","","","","","","","","","","","","","","","","","","","","","","","lyon_path traits reexported here for convenience.","","Applies a transform to all endpoints and control points of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The radius of each corner of a rounded rectangle.","Builds a path.","A Builder that approximates curves with successions of …","A convenience wrapper for PathBuilder without custom …","The base path building interface.","The type of object that is created by this builder.","A path building interface that tries to stay close to SVG…","Builds a path with a transformation applied.","Implements an SVG-like building interface on top of a …","","","","","","Adds a sub-path containing a circle.","Adds a sub-path containing a circle.","Adds a sub-path containing an ellipse.","Adds a sub-path containing an ellipse.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single point.","Adds a sub-path containing a single point.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","","Adds an elliptical arc.","","","","","","","","","","","","","","","","","","","","","","Starts a new sub-path at a given position.","","","Starts a new sub-path at a given position.","","","","","","","","","","","","","","Builds a path object, consuming the builder.","","","","","","Builds a path object, consuming the builder.","","","","","","Ends the current sub-path by connecting it back to its …","Closes the current sub path.","","","Closes the current sub path.","","","","","","Adds a cubic bézier curve to the current sub-path.","Adds a cubic bézier segment to the current sub-path.","","","","","Adds a cubic bézier curve to the current sub-path.","","","","","","","","","","","","","","","","","","","","","","","","","Ends the current sub path.","","","Ends the current sub path.","","","","","","Returns a builder that approximates all curves with …","","Returns a builder that approximates all curves with …","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","Adds an horizontal line segment.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Adds a line segment to the current sub-path.","Adds a line segment to the current sub-path.","","","","","Adds a line segment to the current sub-path.","","Start a new sub-path at the given position.","","","","","","","","","","","","","Applies the provided path event.","Applies the provided path event.","Adds a quadratic bézier curve to the current sub-path.","Adds a quadratic bézier segment to the current sub-path.","","","","","","Adds a quadratic bézier curve to the current sub-path.","Equivalent to arc_to in relative coordinates.","","Equivalent to cubic_bezier_to in relative coordinates.","","Adds an horizontal line segment in relative coordinates.","","Equivalent to line_to in relative coordinates.","","Equivalent to move_to in relative coordinates.","","Equivalent to quadratic_bezier_to in relative coordinates.","","Adds a vertical line segment in relative coordinates.","","Hints at the builder that a certain number of endpoints …","Hints at the builder that a certain number of endpoints …","","","","","","Hints at the builder that a certain number of endpoints …","","","","Equivalent to cubic_bezier_to with implicit first control …","","Equivalent to quadratic_bezier_to with implicit control …","","Equivalent to smooth_cubic_bezier_to in relative …","","Equivalent to smooth_quadratic_bezier_to in relative …","","","","","","","","Returns a builder that applies the given transformation to …","","Returns a builder that applies the given transformation to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Adds a vertical line segment.","","","Returns a builder that support SVG commands.","Returns a builder that support SVG commands.","","A view on a PathCommands buffer and two slices for …","An iterator of Event<&Endpoint, &ControlPoint>.","An iterator of Event<&Endpoint, &ControlPoint>.","The commands of a path encoded in a single array using IDs …","Builds path commands.","A view over PathCommands.","An iterator of PathEvent.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Consumes the builder and returns path commands.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over the events of the path using …","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over the events of the path using IDs.","","Creates a builder without allocating memory.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a pre-allocated builder.","An angle in radians","An elliptic arc curve segment.","Flag parameters for arcs as described by the SVG …","","A 2d curve segment defined by four points: the beginning …","","","","","","","An infinite line defined by a point and a vector.","A line defined by the equation …","A linear segment.","","","","","","A 2d curve segment defined by three points: the beginning …","Alias for euclid::default::Rotation2D","","","","","","Common APIs to segment types.","","An elliptic arc curve segment using the SVG’s end-point …","","","","Alias for euclid::default::Transform2D","Alias for euclid::default::Translation2D","A 2D triangle defined by three points a, b and c.","","","","","","","","","","","","","","","","","","","Return the curve after the split point.","Return the curve after the split point.","","","Return the curve after the split point.","","Return the segment after the split point.","","Return the curve after the split point.","Angle in radians","Returns the shortest signed angle between two angles.","","","Compute the length of the segment using a flattened …","","","","Compute the length of the segment using a flattened …","","","Elliptic arc related maths and tools.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the curve before the split point.","Return the curve before the split point.","","","Return the curve before the split point.","","Return the segment before the split point.","Return the curve before the split point.","","","","","","","","","","","","","","","","","","","","Returns a conservative rectangle that contains the curve.","Returns a conservative rectangle that contains the curve.","Return the smallest rectangle containing this segment.","Returns the smallest rectangle the curve is contained in","Returns the smallest rectangle that contains this triangle.","","Returns the smallest range of x that contains this curve.","Returns the smallest range of x that contains this curve.","Returns a conservative range of x that contains this …","","Returns the smallest range of y that contains this curve.","Returns the smallest range of y that contains this curve.","Returns a conservative range of y that contains this …","Returns a triangle containing this curve segment.","","","","Cast from one numeric representation to another.","","","Create simple circle.","Clip this segment against a rectangle.","Horizontally clip this segment against a range of the x …","Vertically clip this segment against a range of the y axis.","","","","","","","","","","","","","","","","","","","Computes the closest point on this segment to p.","Analytic solution to finding the closest point on the …","","","","","","","","","","","","","","","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","","","","","","","","","","","","","","","","","","","","","Sample the derivative at t (expecting t between 0 and 1).","","Sample the curve’s derivative at t (expecting t between …","","","","Sample the curve’s derivative at t (expecting t between …","Computes the distance between this segment and a point.","","","Returns the shortest distance between this segment and a …","","","","","","","","","","","","","","","","","","","","","","","","","Sample x derivative at t (expecting t between 0 and 1).","Sample the x coordinate of the curve’s derivative at t …","","","Sample the x coordinate of the curve’s derivative at t …","","Sample y derivative at t (expecting t between 0 and 1).","","Sample the y coordinate of the curve’s derivative at t …","","","Sample the y coordinate of the curve’s derivative at t …","","Epsilon constants are usually not a good way to deal with …","","","","","","","","","","","","","","","","Returns a conservative rectangle that contains the curve.","Returns a conservative rectangle the curve is contained in.","Returns a conservative rectangle that contains the curve.","","Returns a conservative range of x that contains this curve.","Returns a conservative range of x that contains this curve.","","Returns a conservative range of y that contains this curve.","Returns a conservative range of y that contains this curve.","Computes a “fat line” of this segment.","Computes a “fat line” of this segment.","","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Returns the flattened representation of the curve as an …","Find the interval of the beginning of the curve that can …","Swap the direction of the segment.","","Swap the direction of the segment.","Swap the beginning and the end of the segment.","","Returns an inverted version of this segment where the …","","Swap the beginning and the end of the segment.","","","","","","","","","","","Approximate the arc with a sequence of cubic bézier …","Approximates the arc with a sequence of cubic bézier …","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","","Approximates the curve with sequence of line segments.","Approximates the curve with sequence of line segments.","","Approximates the curve with sequence of line segments.","","","Compute a flattened approximation of the curve, invoking a …","Invokes a callback at each inflection point if any.","","Return local x extrema or None if this curve is monotonic.","","Return local y extrema or None if this curve is monotonic.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Invokes a callback for each monotonic part of the segment.","Approximate the arc with a sequence of quadratic bézier …","Approximates the arc with a sequence of quadratic bézier …","Approximates the cubic bézier curve with sequence of …","Approximate the arc with a sequence of quadratic bézier …","Approximates the arc with a sequence of quadratic bézier …","Approximates the cubic bézier curve with sequence of …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each x-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","Invokes a callback for each y-monotonic part of the …","","","","Start of the curve.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","Convert from the SVG arc notation.","","Sample the curve’s angle at t (expecting t between 0 and …","","The extent of the element in the U units along the y axis …","","","","","","","","","","","","","","Computes the intersection (if any) between this segment …","","Test for triangle-triangle intersection.","","","Test for triangle-segment intersection.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the curve can be approximated with a …","Returns true if the angle is a finite number.","","Returns true if the curve can be approximated with a …","Returns true if the curve can be approximated with a …","Returns whether this segment is fully monotonic.","Returns whether this segment is fully monotonic.","Returns true if the curve can be safely approximated with …","Per SVG spec, this arc should be rendered as a line_to …","","Returns whether this segment is monotonic on the x axis.","Returns whether this segment is monotonic on the x axis.","Returns whether this segment is monotonic on the y axis.","Returns whether this segment is monotonic on the y axis.","Of the four candidate arc sweeps, two will represent an …","Computes the length of this segment.","Computes the length of this segment.","Linear interpolation between two angles, using the …","","","Computes the intersection points (if any) between this …","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","Computes the intersections (if any) between this segment a …","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment …","Computes the intersections (if any) between this segment …","Return the x inflection point or None if this curve is …","Return the y inflection point or None if this curve is …","","","","","","","","Computes third mid-point of this segment.","","","","","","","Computes the number of quadratic bézier segments required …","","","","","","","Shorthand for Point::new(x, y).","","Returns this angle in the [0..2*PI[ range.","","","Computes the intersection points (if any) between this …","Computes the intersections (if any) between this segment a …","","","","","Sample the curve at t (expecting t between 0 and 1).","","Sample the curve at t (expecting t between 0 and 1).","","Sample the curve at t (expecting t between 0 and 1).","Sample the segment at t (expecting t between 0 and 1).","","Sample the curve at t (expecting t between 0 and 1).","","Sample the curve’s tangent at t (expecting t between 0 …","Changes the segment’s length, moving destination point.","Returns this angle in the ]-PI..PI] range.","","","Returns (sin(self), cos(self)).","Shorthand for Size::new(x, y).","Return the parameter values corresponding to a given x …","","Return the parameter values corresponding to a given y …","","","","","","Split this curve into two sub-curves.","Split this curve into two sub-curves.","","","Split this curve into two sub-curves.","Split this curve into two sub-segments.","","Split this curve into two sub-curves.","","","Return the curve inside a given range of t.","","Return the sub-curve inside a given range of t.","","Return the sub-curve inside a given range of t.","Return the sub-segment inside a given range of t.","","","Return the sub-curve inside a given range of t.","Computes the squared distance between this segment and a …","Returned the squared distance to a point.","Returns the shortest squared distance between this segment …","Computes the squared length of this segment.","","","","","","If sweep is true, then the arc will be drawn in a “…","","","End of the curve.","","","","","","","","","","","","","Converts this arc from endpoints to center notation.","Elevate this curve to a third order bézier.","","","","","","Cast angle to f32.","","","","","Cast angle f64.","Returns the line containing this segment.","","","","","","","","","","Approximate the curve with a single quadratic bézier …","Evaluates an upper bound on the maximum distance between …","Convert to the SVG arc notation.","Returns the vector between this segment’s from and to …","","[Not implemented] Applies the transform to this triangle …","Applies the transform to this curve and returns the …","Applies the transform to this segment and returns the …","Applies the transform to this curve and returns the …","","Fallible cast from one numeric representation to another.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Shorthand for Vector::new(x, y).","","","","The extent of the element in the U units along the x axis …","Sample x at t (expecting t between 0 and 1).","","","Sample the x coordinate of the curve at t (expecting t …","","","Sample the x coordinate of the segment at t (expecting t …","","Sample the x coordinate of the curve at t (expecting t …","","","The x (traditionally, horizontal) coordinate.","Find the advancement of the x-most position in the curve.","Find the advancement of the x-most position in the curve.","Find the x-least position in the curve.","Find the advancement of the x-least position in the curve.","","","Sample y at t (expecting t between 0 and 1).","","","","Sample the y coordinate of the curve at t (expecting t …","","Sample the y coordinate of the segment at t (expecting t …","Sample the y coordinate of the curve at t (expecting t …","","","","The y (traditionally, vertical) coordinate.","Find the advancement of the y-most position in the curve.","Find the advancement of the y-most position in the curve.","Find the advancement of the y-least position in the curve.","Find the advancement of the y-least position in the curve.","","An elliptic arc curve segment.","Flag parameters for arcs as described by the SVG …","Flattening iterator for arcs.","An elliptic arc curve segment using the SVG’s end-point …","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","Of the four candidate arc sweeps, two will represent an …","","","","","If sweep is true, then the arc will be drawn in a “…","","","","","","","","","","","","","A string with a fixed capacity.","A vector with a fixed capacity.","Error value indicating insufficient capacity","A draining iterator for ArrayVec.","By-value iterator for ArrayVec.","","","","","","","","","","","","","","","","","","","","","","","","","","","Return a raw mutable pointer to the vector’s buffer.","Return a mutable slice containing all elements of the …","Return a mutable string slice of the whole ArrayString.","Return a raw pointer to the vector’s buffer.","","","Return a slice containing all elements of the vector.","Return a string slice of the whole ArrayString.","","","","","","","","","","","","","","","Return the capacity of the ArrayVec.","Return the capacity of the ArrayString.","Remove all elements in the vector.","Make the string empty.","","","","","","","","","","","","","","","","","","","","","","Return an empty array","Return an empty ArrayString","","","","","","","","","","","","","","","","","","","","Create a draining iterator that removes the specified …","","","","","","","","","Extract the overflowing element","","","","","","","","","","","","","","","Extend the ArrayVec with an iterator.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a new ArrayString from a str.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Create a new ArrayString from a byte string literal.","Create an ArrayVec from an iterator.","","","","","","","","","","","","","","","","","","","","Insert element at position index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return the inner fixed size array, if it is full to its …","Return the inner fixed size array.","","","","","","","","","","","Returns whether the ArrayVec is empty.","Returns whether the string is empty.","Return true if the ArrayVec is completely filled to its …","Return if the ArrayString is completely filled.","","","","Return the number of elements in the ArrayVec.","Return the length of the string.","","","","Create a new empty ArrayVec.","Create a new empty ArrayString.","Create a new CapacityError from element.","Create a new empty ArrayVec (const fn).","Create a new empty ArrayString (const fn).","","","","","","","","","Remove the last element in the vector and return it.","Removes the last character from the string and returns it.","Remove the element at index and shift down the following …","Push element to the end of the vector.","Adds the given char to the end of the string.","Adds the given string slice to the end of the string.","Push element to the end of the vector without checking the …","Returns the capacity left in the ArrayVec.","Returns the capacity left in the ArrayString.","Remove the element at index and shift down the following …","Removes a char from this ArrayString at a byte position …","Retains only the elements specified by the predicate.","Set the vector’s length without dropping or moving out …","Set the strings’s length.","Convert into a CapacityError that does not carry an …","","","Remove the element at index and swap the last element into …","Remove the element at index and swap the last element into …","Returns the ArrayVec, replacing the original with a new …","","","","","","","","","Shortens the vector, keeping the first len elements and …","Shortens this ArrayString to the specified length.","","","","","","Copy all elements from the slice and append to the ArrayVec…","","","","","","","","","Insert element at position index.","","","","","","","","","","","Push element to the end of the vector.","Adds the given char to the end of the string.","Adds the given string slice to the end of the string.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new ArrayString value fully filled with ASCII …","A 2d curve segment defined by four points: the beginning …","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","An angle in radians","A 2d vector of booleans, useful for component-wise logic …","A 3d vector of booleans, useful for component-wise logic …","A 2d axis aligned rectangle represented by its minimum and …","An axis aligned 3D box represented by its minimum and …","Homogeneous vector in 3D space.","A one-dimensional distance, with value represented by T …","A 2d Point tagged with a unit.","A 3d Point tagged with a unit.","A 2d Rectangle optionally tagged with a unit.","A rigid transformation. All lengths are preserved under …","A transform that can represent rotations in 2d, …","A transform that can represent rotations in 3d, …","A scaling factor between two different units of …","A group of 2D side offsets, which correspond to …","A 2d size tagged with a unit.","A 3d size tagged with a unit.","A 2d transform represented by a column-major 3 by 3 …","A 3d transform stored as a column-major 4 by 4 matrix.","A 2d transformation from a space to another that can only …","A 3d transformation from a space to another that can only …","Trait for basic trigonometry functions, so they can be …","The default unit.","A 2d Vector tagged with a unit.","A 3d Vector tagged with a unit.","Computes the absolute value of each component.","Computes the absolute value of each component.","Computes the vector with absolute values of each component.","Computes the vector with absolute values of each component.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if all components are true and false …","Returns true if all components are true and false …","Returns new vector with by-component AND operation applied.","Returns new vector with by-component AND operation applied.","Angle in radians","Returns the signed angle between this vector and the x …","Returns the signed angle between this vector and another …","Returns the positive angle between this vector and another …","Returns true if any component are true and false otherwise.","Returns true if any component are true and false otherwise.","","","","","","","","","Returns true is this transform is approximately equal to …","Returns true is this transform is approximately equal to …","","","","","Returns true is this transform is approximately equal to …","Returns true is this transform is approximately equal to …","","Returns true is this transform is approximately equal to …","","","","Utilities for testing approximate ordering - especially …","","","Returns result of multiplication of both components","Creates a rotation around a given axis.","Creates a rotation around the x axis.","Creates a rotation around the y axis.","Creates a rotation around the z axis.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Shorthand for …","Shorthand for BoolVector2D { x, y }.","Shorthand for BoolVector3D { x, y, z }.","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast from one numeric representation to another, …","Cast the unit","Cast the unit","Cast the unit","Cast the unit, preserving the numeric value.","Cast the unit, preserving the numeric value.","Cast the unit","Cast the unit, preserving the numeric value.","Cast the unit, preserving the numeric value.","Cast the unit","Cast the unit","Cast the unit.","Cast the unit.","","Rounds each component to the smallest integer equal or …","See Point2D::ceil()","See Point3D::ceil()","Rounds each component to the smallest integer equal or …","Rounds each component to the smallest integer equal or …","See Size2D::ceil().","See Size3D::ceil().","Rounds each component to the smallest integer equal or …","Rounds each component to the smallest integer equal or …","See Vector2D::ceil()","See Vector3D::ceil()","Rounds each component to the smallest integer equal or …","","","","Returns the point each component of which clamped by …","Returns the point each component of which clamped by …","Returns the point each component of which clamped by …","Returns the size each component of which clamped by …","Returns the size each component of which clamped by …","Returns the vector each component of which is clamped by …","Returns the vector each component of which is clamped by …","Return this vector with minimum and maximum lengths …","Return this vector with minimum and maximum lengths …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the component-wise division of the two vectors.","Returns the component-wise division of the two vectors.","Returns the component-wise multiplication of the two …","Returns the component-wise multiplication of the two …","","","","","","","","","","","","","","","","","","","","","","","","Returns true if this box contains the point. Points are …","Returns true if this box3d contains the point. Points are …","Returns true if this rectangle contains the point. Points …","","","Returns true if this box contains the interior of the …","Returns true if this box3d contains the interior of the …","Returns true if this rectangle contains the interior of …","","Returns the norm of the cross product [self.x, self.y, 0] …","Cross product.","Decompose this into a translation and an rotation to be …","A set of aliases for all types, tagged with the default …","","","","","","","","","","","Returns the identity transform.","Returns the identity transform.","","","","","","","","The extent of the element in the U units along the z axis.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes and returns the determinant of this transform.","Compute the determinant of the transform.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calculates Euclidean division, the matching method for …","Calculates Euclidean division, the matching method for …","Dot product.","Dot product.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","Returns vector with results of “equal” operation on …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a rotation from Euler angles.","Create a 3d point from this one, using the specified z …","Create a 3d vector from this one, using the specified z …","","Rounds each component to the biggest integer equal or …","See Point2D::floor()","Rounds each component to the biggest integer equal or …","See Point3D::floor()","See Size2D::floor().","Rounds each component to the biggest integer equal or …","See Size3D::floor().","Rounds each component to the biggest integer equal or …","See Vector2D::floor()","Rounds each component to the biggest integer equal or …","See Vector3D::floor()","Rounds each component to the biggest integer equal or …","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","Constructor taking angle and length","Create a transform providing its components via an array …","Create a transform providing its components via an array …","Equivalent to from_array with elements packed two at a time","Equivalent to from_array with elements packed four at a …","Constructor setting the same value to all sides, taking a …","Constructor taking properly Lengths instead of scalar …","Constructor taking properly Lengths instead of scalar …","Constructor taking a typed Length for each side.","Constructor taking scalar strongly typed lengths.","Constructor taking scalar strongly typed lengths.","Constructor taking properly Lengths instead of scalar …","Constructor taking properly Lengths instead of scalar …","Constructor.","Returns the smallest box containing all of the provided …","Returns the smallest box containing all of the provided …","Returns the smallest rectangle defined by the …","","Convenience function to create a scale transform from a …","Creates a Box2D of the given size, at offset zero.","Creates a Box3D of the given size, at offset zero.","Creates a rect of the given size, at offset zero.","","","","","","","","","","","","","","","","","","","","","","","","","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Tag a unit-less value with units.","Tag a unitless value with units.","Tag a unitless value with units.","Construct side offsets from min and a max vector offsets.","Construct side offsets from min and a max vector offsets.","Unpack the underlying value from the wrapper.","Returns the underlying scalar scale factor.","Returns self.angle as a strongly typed Angle<T>.","Returns vector with results of “greater then” …","Returns vector with results of “greater than” …","Returns vector with results of “greater than” …","Returns vector with results of “greater than” …","","","","","","","","","","","","","","","","","","","","","","","","","","","The extent of the element in the U units along the y axis …","The extent of the element in the U units along the y axis.","","Component multiplied by the imaginary number i.","Creates the identity rotation.","Creates the identity rotation.","Creates an identity scale (1.0).","Create an identity matrix:","Creates an identity matrix:","Creates no-op translation (both x and y is zero()).","Creates no-op translation (x, y and z is zero()).","Construct an identity transform","Inflates the box by the specified sizes on each side …","Inflates the box by the specified sizes on each side …","","","","","","","","","","","","","","","","","","","","","","","","","Calculate the size and position of an inner box.","Calculate the size and position of an inner rectangle.","Computes the intersection of two boxes, returning None if …","","","Computes the intersection of two boxes without check …","","Returns true if the two boxes intersect.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Calls U::from(self).","","Calls U::from(self).","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Calls U::from(self).","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Calls U::from(self).","Calls U::from(self).","","","","Calls U::from(self).","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the inverse of this rotation.","Returns the inverse of this rotation.","The inverse Scale (1.0 / self).","Returns the inverse transform if possible.","Returns the inverse transform if possible.","Return the inverse transformation.","Return the inverse transformation.","Inverts the transformation","Returns true if this transform can be represented with a …","Check whether shapes on the XY plane with Z pointing …","Returns true if the size is zero, negative or NaN.","Returns true if the size is zero, negative or NaN.","","Returns true if any component of size is zero, negative, …","Returns true if any component of size is zero, negative or …","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if all members are finite.","Returns true if this scale has no effect.","Check if translation does nothing (both x and y is zero()).","Check if translation does nothing (x, y and z is zero()).","Returns whether it is possible to compute the inverse …","Returns whether it is possible to compute the inverse …","Returns true if the box has a negative area.","Returns true if the box has a negative volume.","Returns true if norm of this quaternion is (approximately) …","Returns true if both components is positive and false any …","Returns true if all components is positive and false any …","Returns true if all side offsets are zero.","Component multiplied by the imaginary number j.","Component multiplied by the imaginary number k.","","Returns the vector length.","Returns the vector length.","Linearly interpolate between this box and another box.","Linearly interpolate between this box3d and another box3d.","Linearly interpolate between this length and another …","Linearly interpolate between this point and another point.","Linearly interpolate between this point and another point.","Linearly interpolate between this rectangle and another …","Basic Linear interpolation between this rotation and …","Linearly interpolate each component between this size and …","Linearly interpolate between this size and another size.","Linearly interpolate each component between this vector …","Linearly interpolate each component between this vector …","Returns vector with results of “lower then” operation …","Returns vector with results of “lower than” operation …","Returns vector with results of “lower than” operation …","Returns vector with results of “lower than” operation …","","","","","","","","","","","","","","","","","","","","","","","Returns maximum between this length and another length.","","","","","Returns the size each component of which are maximum of …","Returns the size each component of which are maximum of …","Returns the vector each component of which are maximum of …","Returns the vector each component of which are maximum of …","","","","","Returns minimum between this length and another length.","","","","","Returns the size each component of which are minimum of …","Returns the size each component of which are minimum of …","Returns the vector each component of which are minimum of …","Returns the vector each component of which are minimum of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multiplies all of the transform’s component by a scalar …","","","","","","","","","Constructor.","Constructor.","Constructor taking scalar values directly.","Associate a value with a unit of measure.","Constructor taking scalar values directly.","Constructor taking scalar values directly.","Constructor.","Creates a rotation from an angle in radians.","","Constructor taking a scalar for each side.","Constructor taking scalar values.","Constructor taking scalar values.","Create a transform specifying its components in using the …","Create a transform specifying all of it’s component as a …","","","Constructor taking scalar values directly.","Constructor taking scalar values directly.","Construct a new rigid transformation, where the rotation …","Create a transform representing a 2d transformation from …","Constructor setting the same value to all sides, taking a …","Construct a new rigid transformation, where the translation…","Returns true if all components are false and false …","Returns true if all components are false and false …","Computes the norm of this quaternion.","Returns a unit quaternion from this one.","Returns the vector with length of one unit.","Returns the vector with length of one unit","Returns new vector with results of negation operation on …","Returns new vector with results of negation operation on …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","Returns vector with results of “not equal” operation …","A one-dimensional length, tagged with its units.","","Constructor, setting all components to one.","Constructor, setting all components to one.","Returns new vector with by-component OR operation applied.","Returns new vector with by-component OR operation applied.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","","Create an orthogonal projection transform.","Calculate the b and position of an outer box.","Calculate the size and position of an outer rectangle.","Returns a box that encompasses the result of transforming …","Returns a 2d box that encompasses the result of …","Returns a 3d box that encompasses the result of …","Returns a rectangle that encompasses the result of …","Returns a rectangle that encompasses the result of …","","","","Create a simple perspective transform, projecting to the …","Shorthand for Point2D::new(x, y).","Shorthand for Point3D::new(x, y).","","Applies a rotation before self’s transformation and …","Returns a transform with a rotation applied before self’…","Applies a scale before self’s transformation and returns …","Returns a transform with a scale applied before self’s …","Applies a translation before self’s transformation and …","Returns a transform with a translation applied before self…","Returns this vector projected onto another one.","Returns this vector projected onto another one.","Returns a projection of this transform in 2d space.","Creates a rotation around from a quaternion representation.","The real part.","Creates a rotation from an angle in radians.","","","Shorthand for …","Returns a reflection vector using an incident ray and a …","Returns a reflection vector using an incident ray and a …","Calculates the least nonnegative remainder of …","Calculates the least nonnegative remainder of …","","Return the normalized vector even if the length is larger …","Return the normalized vector even if the length is larger …","Returns a rotation transform.","Create a 3d rotation transform from an angle / axis. The …","","Return a box with edges rounded to integer coordinates, …","Return a box3d with edges rounded to integer coordinates, …","See Point2D::round()","Rounds each component to the nearest integer value.","See Point3D::round()","Rounds each component to the nearest integer value.","Return a rectangle with edges rounded to integer …","Rounds each component to the nearest integer value.","See Size2D::round().","Rounds each component to the nearest integer value.","See Size3D::round().","Rounds each component to the nearest integer value.","See Vector2D::round()","Rounds each component to the nearest integer value.","See Vector3D::round()","Return a box with faces/edges rounded to integer …","Return a box3d with faces/edges rounded to integer …","Return a rectangle with edges rounded to integer …","Return a box with faces/edges rounded to integer …","Return a box3d with faces/edges rounded to integer …","Return a rectangle with edges rounded to integer …","","","","","","Create a 2d scale transform:","Create a 3d scale transform:","Returns point, each component of which or from a, or from b…","Returns point, each component of which or from a, or from b…","Returns size, each component of which or from a, or from b …","Returns size, each component of which or from a, or from b …","Returns vector, each component of which or from a, or from …","Returns vector, each component of which or from a, or from …","Change the size of the box by adjusting the max endpoint …","","","","","Shorthand for Size2D::new(w, h).","Shorthand for Size3D::new(w, h, d).","Create a 2d skew transform.","Spherical linear interpolation between this rotation and …","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Constructor setting all components to the same value.","","","Constructor setting all components to the same value.","Constructor setting all components to the same value.","Returns the vector’s length squared.","Returns the vector’s length squared.","Computes the squared norm of this quaternion.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a rotation representing the other rotation …","Returns a rotation representing this rotation followed by …","Returns the multiplication of the two matrices such that …","Returns the multiplication of the two matrices such that …","Returns the multiplication of the two transforms such that …","Applies a rotation after self’s transformation and …","Returns a transform with a rotation applied after self’s …","Applies a scale after self’s transformation and returns …","Returns a transform with a scale applied after self’s …","Applies a translation after self’s transformation and …","Returns a transform with a translation applied after self…","Convert into a 2d point.","Create a 2D transform picking the relevant terms from this …","Convert into a 2d vector.","Convert into a 3d point with z-coordinate equals to zero.","Creates a 3d rotation (around the z axis) from this 2d …","Create a 3D transform from the current transform","Convert into a 3d vector with z coordinate equals to …","Cast into an array with x and y.","Cast into an array with x, y and z.","Return this size as an array of two elements (width, then …","Return this size as an array of three elements (width, …","Returns an array containing this transform’s terms.","Returns an array containing this transform’s terms.","Cast into an array with x and y.","Cast into an array with x, y and z.","Cast into an array with x and y.","Cast into an array with x, y and z.","","Cast into an array with x, y, z and 0.","Returns an array containing this transform’s terms …","Returns an array containing this transform’s terms …","Equivalent to to_array with elements packed two at a time …","Equivalent to to_array with elements packed four at a time …","Equivalent to to_array_transposed with elements packed …","","Cast into an f32 box.","Cast into an f32 box3d.","Cast into an f32 point.","Cast into an f32 point.","Cast into an f32 rectangle.","Cast into an f32 size.","Cast into an f32 size.","Cast into an f32 vector.","Cast into an f32 vector.","Cast into an f64 box.","Cast into an f64 box3d.","Cast into an f64 point.","Cast into an f64 point.","Cast into an f64 rectangle.","Cast into an f64 size.","Cast into an f64 size.","Cast into an f64 vector.","Cast into an f64 vector.","Cast into an i32 box, truncating decimals if any.","Cast into an i32 box3d, truncating decimals if any.","Cast into an i32 point, truncating decimals if any.","Cast into an i32 point, truncating decimals if any.","Cast into an i32 rectangle, truncating decimals if any.","Cast into an i32 size, truncating decimals if any.","Cast into an i32 size, truncating decimals if any.","Cast into an i32 vector, truncating decimals if any.","Cast into an i32 vector, truncating decimals if any.","Cast into an i64 box, truncating decimals if any.","Cast into an i64 box3d, truncating decimals if any.","Cast into an i64 point, truncating decimals if any.","Cast into an i64 point, truncating decimals if any.","Cast into an i64 rectangle, truncating decimals if any.","Cast into an i64 size, truncating decimals if any.","Cast into an i64 size, truncating decimals if any.","Cast into an i64 vector, truncating decimals if any.","Cast into an i64 vector, truncating decimals if any.","","","","","","","","","","","","","","","","","","","","","","","","","","","Cast this vector into a point.","Cast this vector into a point.","Convert into Cartesian 2D point.","Convert into Cartesian 3D point.","","Cast this vector into a size.","Returns the matrix representation of this rotation.","Returns the matrix representation of this rotation.","Returns the matrix representation of this translation.","Returns the matrix representation of this translation.","Creates translation by this vector in vector units.","Creates translation by this vector in vector units","","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","Return this size as a tuple of two elements (width, then …","Return this size as an array of three elements (width, …","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","Cast into a tuple with x and y.","Cast into a tuple with x, y and z.","","Cast into a tuple with x, y, z and 0.","Cast into an u32 box, truncating decimals if any.","Cast into an u32 box3d, truncating decimals if any.","Cast into an u32 point, truncating decimals if any.","Cast into an u32 point, truncating decimals if any.","Cast into an u32 rectangle, truncating decimals if any.","Cast into an u32 size, truncating decimals if any.","Cast into an u32 size, truncating decimals if any.","Cast into an u32 vector, truncating decimals if any.","Cast into an u32 vector, truncating decimals if any.","Cast into an u64 rectangle, truncating decimals if any.","Cast into an u64 size, truncating decimals if any.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Drop the units, preserving only the numeric value.","Cast into an usize box, truncating decimals if any.","Cast into an usize box3d, truncating decimals if any.","Cast into an usize point, truncating decimals if any.","Cast into an usize point, truncating decimals if any.","Cast into an usize rectangle, truncating decimals if any.","Cast into an uint size, truncating decimals if any.","Cast into an uint size, truncating decimals if any.","Cast into an usize vector, truncating decimals if any.","Cast into an usize vector, truncating decimals if any.","Cast this point into a vector.","Cast this point into a vector.","Return this size as a vector with width and height.","Return this size as a vector with width, height and depth.","Cast into a 2D vector.","Cast into a 3D vector.","","Translate a 2D box and cast its unit.","Returns the given box transformed by this scale.","Translate a 2D box and cast its unit.","Returns the given box transformed by this scale.","Translate a 3D box and cast its unit.","","Returns the given 2d point transformed by this rotation.","","Returns the given point transformed by this scale.","","Returns the given point transformed by this transform.","Translate a point and cast its unit.","","Returns the given 2d point transformed by this rotation …","Returns the given 2d point transformed by this transform, …","Translate a point and cast its unit.","Returns the homogeneous vector corresponding to the …","Returns the given 3d point transformed by this rotation.","Returns the given point transformed by this scale.","Returns the given 3d point transformed by this transform, …","Translate a point and cast its unit.","Returns the homogeneous vector corresponding to the …","Returns the given rect transformed by this scale.","Translate a rectangle and cast its unit.","Translate a rectangle and cast its unit.","Returns the given size transformed by this scale.","No-op, just cast the unit.","No-op, just cast the unit.","Returns the given 2d vector transformed by this rotation.","","","Returns the given vector transformed by this scale.","Returns the given vector transformed by this matrix.","","","Returns the given 2d vector transformed by this rotation …","Returns the given 2d vector transformed by this matrix.","Returns the given 3d vector transformed by this rotation.","Returns the given 3d vector transformed by this matrix.","Returns the same box, translated by a vector.","Returns the same box3d, translated by a vector.","Returns the same rectangle, translated by a vector.","Create a 2d translation transform:","Create a 3d translation transform:","","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","Fallible cast from one numeric representation to another, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the vector with length of one unit.","Returns the vector with length of one unit.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the union of two boxes.","Computes the union of two boxes.","","Creates a rotation around from a quaternion representation …","","","","","","","","","","","","","","","","","","","","","","","","Convenience constructor.","Convenience constructor.","Returns the vector part (i, j, k) of this quaternion.","","","Returns result of multiplication of all components","","","","","The extent of the element in the U units along the x axis …","The extent of the element in the U units along the x axis.","Returns the same transform with a different destination …","Returns the same transform with a different destination …","Return this vector scaled to fit the provided length.","Return this vector capped to a maximum length.","Return this vector capped to a maximum length.","Return this vector with a minimum length applied.","Return this vector with a minimum length applied.","Returns the same transform with a different source unit.","Returns the same transform with a different source unit.","","","","","","The x (traditionally, horizontal) coordinate.","The x (traditionally, horizontal) coordinate.","","","","","","Returns a 2d point using this point’s x and y coordinates","Returns a 2d vector using this vector’s x and y …","Returns a 2d vector using this vector’s x and y …","","Returns a 2d point using this point’s x and z coordinates","Returns a 2d vector using this vector’s x and z …","Returns a 2d vector using this vector’s x and z …","","","","","","","The y (traditionally, vertical) coordinate.","The y (traditionally, vertical) coordinate.","","","","","","Swap x and y.","Swap x and y.","Returns a 2d point using this point’s x and z coordinates","Returns a 2d vector using this vector’s x and z …","Returns a 2d vector using this vector’s y and z …","","","","","The z (traditionally, depth) coordinate.","","","Constructor, setting all sides to zero.","Constructor, setting all sides to zero.","","","The same as origin().","The same as origin().","","Constructor, setting all sides to zero.","Constructor, setting all sides to zero.","","The same as Zero::zero() but available without importing …","","The same as Zero::zero() but available without importing …","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Constructor, setting all components to zero.","Trait for testing approximate equality","Default epsilon value","Returns true is this object is approximately equal to the …","Returns true is this object is approximately equal to the …","","","","","","","","","","","","","","","","","","","","","","","Angle in radians","","The extent of the element in the U units along the z axis.","The extent of the element in the U units along the y axis …","The extent of the element in the U units along the y axis.","Component multiplied by the imaginary number i.","Component multiplied by the imaginary number j.","Component multiplied by the imaginary number k.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The real part.","","","","","","","The extent of the element in the U units along the x axis …","The extent of the element in the U units along the x axis.","","","The x (traditionally, horizontal) coordinate.","The x (traditionally, horizontal) coordinate.","","","","","","The y (traditionally, vertical) coordinate.","The y (traditionally, vertical) coordinate.","","","","","The z (traditionally, depth) coordinate.","","","Defines the smallest integer equal or greater than the …","Defines the biggest integer equal or lower than the …","","Defines the nearest integer value to the original value.","","Rounds to the smallest integer equal or greater than the …","Rounds to the biggest integer equal or lower than the …","","Rounds to the nearest integer value.","","A flattening iterator for quadratic bézier segments.","A flattening iterator for quadratic bézier segments.","","A 2d curve segment defined by three points: the beginning …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Common APIs to segment types.","","Return the curve after the split point.","Compute the length of the segment using a flattened …","Return the curve before the split point.","Sample the derivative at t (expecting t between 0 and 1).","Sample x derivative at t (expecting t between 0 and 1).","Sample y derivative at t (expecting t between 0 and 1).","Swap the direction of the segment.","Approximates the curve with sequence of line segments.","Start of the curve.","Sample the curve at t (expecting t between 0 and 1).","Split this curve into two sub-curves.","Return the curve inside a given range of t.","End of the curve.","","","Sample x at t (expecting t between 0 and 1).","Sample y at t (expecting t between 0 and 1).","","Angle between vectors v1 and v2 (oriented clockwise …","","","","","An iterator that consumes Event iterator and yields …","An iterator that consumes an iterator of Points and …","","An extension trait for PathEvent iterators.","Applies a 2D transform to a path iterator and yields the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator that turns curves into line segments.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create the iterator.","Creates a new transformed path iterator from a path …","","","","","","","","Returns an iterator applying a 2D transform to all of its …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An angle in radians (f32).","Alias for euclid::default::Box2D<f32>","Alias for euclid::default::Point2D<f32>.","Alias for euclid::default::Rotation2D<f32>","Alias for euclid::default::Scale<f32>","Alias for euclid::default::Size2D<f32>.","Alias for euclid::default::Transform2D<f32>","Alias for euclid::default::Translation2D<f32>","Alias for euclid::default::Point2D<f32>.","Angle in radians","The extent of the element in the U units along the y axis …","","","","","","","","","Shorthand for Point::new(x, y).","","Shorthand for Size::new(x, y).","Shorthand for Vector::new(x, y).","The extent of the element in the U units along the x axis …","","The x (traditionally, horizontal) coordinate.","","","The y (traditionally, vertical) coordinate.","","","The default builder for Path.","A builder for Path with custom attributes.","An iterator of endpoint and control point ids for Path and …","An iterator for Path and PathSlice.","An iterator for Path and PathSlice.","A simple path data structure.","A view on a Path.","An iterator of over a Path traversing the path in reverse.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Iterate on a flattened approximation of the path with …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Builds a Path from This iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A Builder that appends a path to an existing PathBuffer.","A Builder that appends a path to an existing PathBuffer, …","Iterator over the paths in a PathBufferSlice.","An object that stores multiple paths contiguously.","A view on a PathBuffer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A view over a sequence of endpoint IDs forming a polygon.","An iterator of Event<EndpointId, ()>.","An iterator of PathEvent.","A view over a sequence of endpoints forming a polygon.","An iterator of IdEvent for Polygon.","An iterator of Event<&Endpoint, ()>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Builds a path.","The base path building interface.","An extension trait for PathEvent iterators.","The type of object that is created by this builder.","A path building interface that tries to stay close to SVG…","Adds a sub-path containing a circle.","Adds a sub-path containing an ellipse.","Adds a sub-path containing a single line segment.","Adds a sub-path containing a single point.","Adds a sub-path from a polygon.","Adds a sub-path from a polygon.","Adds a sub-path containing a rectangle.","Adds a sub-path containing a rectangle.","Adds an elliptical arc.","Starts a new sub-path at a given position.","Builds a path object, consuming the builder.","Ends the current sub-path by connecting it back to its …","Closes the current sub path.","Adds a cubic bézier curve to the current sub-path.","Adds a cubic bézier segment to the current sub-path.","Ends the current sub path.","","Returns a builder that approximates all curves with …","Returns an iterator that turns curves into line segments.","Adds an horizontal line segment.","Adds a line segment to the current sub-path.","Adds a line segment to the current sub-path.","Start a new sub-path at the given position.","","Applies the provided path event.","Adds a quadratic bézier curve to the current sub-path.","Adds a quadratic bézier segment to the current sub-path.","Equivalent to arc_to in relative coordinates.","Equivalent to cubic_bezier_to in relative coordinates.","Adds an horizontal line segment in relative coordinates.","Equivalent to line_to in relative coordinates.","Equivalent to move_to in relative coordinates.","Equivalent to quadratic_bezier_to in relative coordinates.","Adds a vertical line segment in relative coordinates.","Hints at the builder that a certain number of endpoints …","Hints at the builder that a certain number of endpoints …","Equivalent to cubic_bezier_to with implicit first control …","Equivalent to quadratic_bezier_to with implicit control …","Equivalent to smooth_cubic_bezier_to in relative …","Equivalent to smooth_quadratic_bezier_to in relative …","Returns a builder that applies the given transformation to …","Returns an iterator applying a 2D transform to all of its …","Adds a vertical line segment.","Returns a builder that support SVG commands.","A bevelled corner.","The stroke for each sub-path does not extend beyond its …","A Gradient color.","The shape used at the end of open subpaths when they are …","The dash pattern used when stroking the line.","The shape used at the corners of paths or basic shapes …","A sharp corner.","At the end of each sub-path, the shape representing the …","A round corner.","A solid Color.","At the end of each sub-path, the shape representing the …","The style of a stroke.","The coloring style of some drawing.","The shape to be used at the end of open subpaths when they …","The dash pattern used when stroking the line.","The shape to be used at the corners of paths or basic …","The offset of LineDash::segments to start the pattern.","The alternating lengths of lines and gaps which describe …","The color or gradient of the stroke.","The distance between the two edges of the stroke.","The appearance of a checkbox.","A box that can be checked.","The icon in a Checkbox.","The supported style of the StyleSheet.","A set of rules that dictate the style of a checkbox.","Produces the active Appearance of a checkbox.","","","","","","","","","","","","","","","","The Background of the checkbox.","The Border of hte checkbox.","","","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","","","","","","","","","","","","","Sets the Renderer::Font of the text of the Checkbox.","Font that will be used to display the code_point,","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Produces the hovered Appearance of a checkbox.","Sets the Icon of the Checkbox.","The icon Color of the checkbox.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","The line height of the icon.","","Creates a new Checkbox.","","The shaping strategy of the icon.","","Sets the size of the Checkbox.","Font size of the content.","Sets the spacing between the Checkbox and the text.","","Sets the style of the Checkbox.","","The text Color of the checkbox.","Sets the text text::LineHeight of the Checkbox.","Sets the text::Shaping strategy of the Checkbox.","Sets the text size of the Checkbox.","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Checkbox.","A widget for searching and selecting a single value from a …","The local state of a ComboBox.","","","","","","","","","","","","","","","Build matchers from given list of options.","","","","","","","","","","","","","","","","Sets the Renderer::Font of the ComboBox.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Sets the text_input::Icon of the ComboBox.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Sets the LineHeight of the ComboBox.","","Creates a new ComboBox with the given list of options, a …","Creates a new State for a ComboBox with the given list of …","Sets the message that will be produced when the outside …","","Sets the message that should be produced when some text is …","Sets the message that will be produced when an option of …","","Sets the Padding of the ComboBox.","Search list of options for a given query.","Sets the text sixe of the ComboBox.","","","Sets the style of the ComboBox.","","Sets the style of the TextInput of the ComboBox.","","","","","","","","","","","","","","","","","","Sets the width of the ComboBox.","Creates a new State for a ComboBox with the given list of …","The appearance of a container.","An element decorating some content.","The identifier of a Container.","The supported style of the StyleSheet.","A set of rules that dictate the Appearance of a container.","","","","Sets the content alignment for the horizontal axis of the …","Sets the content alignment for the vertical axis of the …","Produces the Appearance of a container.","","","","","","","","","","","","","The Background of the container.","The Border of the container.","","","","","","","Centers the contents in the horizontal axis of the …","Centers the contents in the vertical axis of the Container.","","","","","","","","","","","","","","","","","","","","","Draws the background of a Container given its Appearance …","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Sets the height of the Container.","Sets the Id of the Container.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Computes the layout of a Container.","","Sets the maximum height of the Container.","Sets the maximum width of the Container.","","Creates an empty Container.","Creates a custom Id.","","","","Sets the Padding of the Container.","The Shadow of the container.","","","Sets the style of the Container.","","The text Color of the container.","","","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","","","","Produces a Command that queries the visible screen bounds …","Sets the width of the Container.","Derives a new Appearance with the given Background.","Derives a new Appearance with a border of the given Color …","Image filtering strategy.","A handle of some image data.","A frame that displays an image while keeping aspect ratio.","Bilinear interpolation.","Nearest neighbor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the ContentFit of the Image.","Returns a reference to the image Data.","","","","","","","","","","","Draws an Image","","","","","","","","","","","","","Sets the FilterMethod of the Image.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Creates an image Handle containing the image data directly.","Creates an image Handle pointing to the image of the given …","Creates an image Handle containing the image pixels …","","","","","","Sets the height of the Image boundaries.","Returns the unique identifier of the Handle.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Computes the layout of an Image.","","Creates a new Image with the given path.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Zoom and pan on an image.","Creates a new Viewer with the given image Handle.","Sets the width of the Image boundaries.","The local state of a Viewer.","A frame that displays an image with the ability to zoom …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Sets the height of the Viewer.","Returns the bounds of the underlying image, given the …","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns if the cursor is currently grabbed by the Viewer.","","Sets the max scale applied to the image of the Viewer.","Sets the min scale applied to the image of the Viewer.","","Creates a new Viewer with the given State.","Creates a new State.","","Sets the padding of the Viewer.","Sets the percentage the image of the Viewer will be scaled …","","","","","","","","","","","","","","","","","","","","","Sets the width of the Viewer.","","Distribute content vertically.","A container that distributes its contents vertically.","","Sets the horizontal alignment of the contents of the Column…","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Sets the height of the Column.","","Calls U::from(self).","","","","","","","","Sets the maximum width of the Column.","","Creates an empty Column.","","","","Sets the Padding of the Column.","Adds an element to the Column.","","Sets the vertical spacing between elements.","","","","","","","","","","","Sets the width of the Column.","Creates a Column with the given elements.","Build and show dropdown menus.","The appearance of a menu.","A list of selectable options.","The local state of a Menu.","The supported style of the StyleSheet.","The style sheet of a menu.","","","","Produces the Appearance of a menu.","","","","","","","","","","","","","The Background of the menu.","The Border of the menu.","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the font of the Menu.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Creates a new Menu with the given State, a list of …","Creates a new State for a Menu.","Turns the Menu into an overlay Element at the given target …","Sets the Padding of the Menu.","The background Color of a selected option in the menu.","The text Color of a selected option in the menu.","Sets the style of the Menu.","The text Color of the menu.","Sets the text text::LineHeight of the Menu.","Sets the text::Shaping strategy of the Menu.","Sets the text size of the Menu.","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Menu.","All panes are visible","The appearance of the hovered region of a pane grid.","A fixed reference line for the measurement of coordinates.","Bottom edge.","A Pane was picked and then dropped outside of other Pane …","Center region.","The arrangement of a PaneGrid.","The content of a Pane.","The visible contents of the PaneGrid","A four cardinal direction.","↓","An event produced during a drag and drop interaction of a …","A pane that can be dragged.","A Pane was dropped on top of another Pane.","The edges of an area.","An Edge of the full PaneGrid.","Edge region.","The horizontal axis: —","←","Left edge.","A line.","A maximized pane is visible","A layout node of a PaneGrid.","A rectangular region in a PaneGrid used to display widgets.","A Pane.","The region of this Node is taken by a Pane.","A single Pane of the PaneGrid.","A collection of panes distributed using either vertical or …","A Pane was picked for dragging.","The region of a Pane.","An event produced during a resize interaction of a PaneGrid…","→","Right edge.","A divider that splits a region in a PaneGrid into two …","A split of the available space.","The region of this Node is split into two.","","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","The Target area a pane can be dropped on.","The title bar of a Pane.","Top edge.","↑","The vertical axis: |","","","","","","","","","","","","","","","","","","Sets whether or not the controls attached to this TitleBar …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the pane region.","The Border of the pane region.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Draggable with the given Layout can be …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Color of the Line.","","","","","","","","","","","","","","","","","","","","Sets the controls of the TitleBar.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws a PaneGrid.","Draws the Content with the provided Renderer and Layout.","Draws the TitleBar with the provided Renderer and Layout.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the height of the PaneGrid.","The Appearance to draw when a pane is hovered.","The Line to draw when a split is hovered.","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the mouse cursor is over the pick area of …","Returns an iterator over the values of the Contents","Calculates the Layout of a PaneGrid.","","Returns the layout Node of the Contents","Returns the current mouse::Interaction of a PaneGrid.","","Creates a new Content with the provided body.","Creates a new TitleBar with the given content.","Creates a PaneGrid with the given State and view function.","Sets the message that will be produced when a Pane of the …","Enables the drag and drop interactions of the PaneGrid, …","","Enables the resize interactions of the PaneGrid, which will","","","Sets the Padding of the TitleBar.","Returns the rectangular region for each Pane in the Node …","","","The Line to draw when a split is picked.","The new ratio of the Split.","","Sets the spacing between the panes of the PaneGrid.","Splits the provided Rectangle on the current Axis with the …","The Split that is being dragged for resizing.","Calculates the bounds of the split line in a Rectangle …","Returns the axis, rectangular region, and ratio for each …","Returns an iterator over each Split in this Node.","The state of a PaneGrid.","","Sets the style of the Content.","Sets the style of the TitleBar.","Sets the style of the PaneGrid.","","Sets the TitleBar of this Content.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the state of a PaneGrid …","Sets the width of the PaneGrid.","The width of the Line.","The left/top Configuration of the split.","The direction of the split.","The right/bottom Configuration of the split.","The ratio of the split in [0.0, 1.0].","The picked Pane.","The picked Pane.","The picked Pane.","The Target where the picked Pane was dropped on.","The left/top Node of the split.","The direction of the split.","The right/bottom Node of the split.","The Split of this Node.","The ratio of the split in [0.0, 1.0].","The current action of a PaneGrid.","A Pane in the PaneGrid is being clicked.","A Pane in the PaneGrid is being dragged.","The PaneGrid is idle.","The internal state of a PaneGrid.","A Split in the PaneGrid is being dragged.","The state of a PaneGrid.","","","","Returns the adjacent Pane of another Pane in the given …","","","","","","","","","","","","","","","","","","","Returns the current Pane that is being clicked, if any.","","","","","","","Closes the given Pane and returns its internal state and …","","","","","","","","","","","","","","Drops the given Pane into the provided Target.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Initializes the Internal state of a PaneGrid from a …","","","","Returns the internal state of the given Pane, if it exists.","Returns the internal state of the given Pane with …","","","","The internal state of the PaneGrid.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Returns true if the amount of panes in the State is 0.","Returns an iterator over all the panes of the State, …","Returns a mutable iterator over all the panes of the State,","Returns the layout of the State.","The layout Node of the Internal state","Returns the total amount of panes in the State.","Maximize the given Pane. Only this pane will be rendered …","Returns the maximized Pane of the PaneGrid.","Move Pane to an Edge of the PaneGrid.","Creates a new State, initializing the first pane with the …","The panes of the PaneGrid.","Returns the current Pane that is being dragged, if any.","Returns the current Split that is being dragged, if any.","Resizes two panes by setting the position of the provided …","Restore the currently maximized Pane to it’s normal …","Splits the given Pane into two in the given Axis and …","Split a target Pane with a given Pane on a given Region.","Swaps the position of the provided panes in the State.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new State with the given Configuration.","The Axis of the Split.","The starting Point of the click interaction.","The starting Point of the drag interaction.","The Pane being clicked.","The Pane being dragged.","The Split being dragged.","The appearance of a pick list.","Displays an arrow icon (▼).","The default padding of a PickList.","A custom dynamic handle.","The handle to the right side of the PickList.","The icon of a Handle.","No handle will be shown.","A widget for selecting a single value from a list of …","The state of a PickList.","A custom static handle.","The supported style of the StyleSheet.","A set of rules that dictate the style of a container.","Produces the active Appearance of a pick list.","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the pick list.","The Border of the pick list.","","","","","","","","","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","","","","","","","","","","","","","","","","Draws a PickList.","","","","","","","","","","","","","Sets the font of the PickList.","Font that will be used to display the code_point,","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Sets the Handle of the PickList.","The handle Color of the pick list.","Produces the hovered Appearance of a pick list.","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the layout of a PickList.","","Line height of the content.","Returns the current mouse::Interaction of a PickList.","","Creates a new PickList with the given list of options, the …","","Returns the current overlay of a PickList.","","Sets the Padding of the PickList.","Sets the placeholder of the PickList.","The placeholder Color of the pick list.","The shaping strategy of the icon.","","Font size of the content.","","Sets the style of the PickList.","","The text Color of the pick list.","Sets the text text::LineHeight of the PickList.","Sets the text::Shaping strategy of the PickList.","Sets the text size of the PickList.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a PickList …","Sets the width of the PickList.","The Icon used when PickList is closed.","The Icon used when PickList is open.","Font size of the content.","The appearance of a progress bar.","The default height of a ProgressBar.","A bar that displays progress.","The supported style of the StyleSheet.","A set of rules that dictate the style of a progress bar.","","","Produces the Appearance of the progress bar.","","","","","","","","","The Background of the progress bar.","The Background of the bar of the progress bar.","The border radius of the progress bar.","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Sets the height of the ProgressBar.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Creates a new ProgressBar.","","Sets the style of the ProgressBar.","","","","","","","","","","","","","","","","","","Sets the width of the ProgressBar.","The data is too long to encode in a QR code for the chosen …","An error that occurred when building a State for a QRCode.","The error correction level.","High error correction. 30% of the data can be restored.","A character that does not belong to the character set was …","The chosen ECI designator is invalid. A valid designator …","The chosen Version and ErrorCorrection combination is …","Low error correction. 7% of the data can be restored.","Medium error correction. 15% of the data can be restored.","A micro QR code version. It should be between 1 and 4.","A normal QR code version. It should be between 1 and 40.","A type of matrix barcode consisting of squares arranged in …","Quartile error correction. 25% of the data can be restored.","The state of a QRCode.","One or more characters in the provided data are not …","The size of a QRCode.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the size of the squares of the grid cell of the QRCode…","","","","","","","Sets both the dark and light Colors of the QRCode.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new QRCode with the provided State.","Creates a new State with the provided data.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new State with the provided ErrorCorrection.","Creates a new State with the provided Version and …","The appearance of a radio button.","The default size of a Radio button.","The default spacing of a Radio button.","A circular button representing a choice.","The supported style of the StyleSheet.","A set of rules that dictate the style of a radio button.","Produces the active Appearance of a radio button.","","","","","","","","","","","The Background of the radio button.","The border Color of the radio button.","The border width of the radio button.","","","","","","","","","","","","","The Color of the dot of the radio button.","","","","","","","Sets the text font of the Radio button.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Produces the hovered Appearance of a radio button.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","Creates a new Radio button.","","","Sets the size of the Radio button.","Sets the spacing between the Radio button and the text.","","Sets the style of the Radio button.","","The text Color of the radio button.","Sets the text text::LineHeight of the Radio button.","Sets the text::Shaping strategy of the Radio button.","Sets the text size of the Radio button.","","","","","","","","","","","","","","","","","","Sets the width of the Radio button.","The appearance of a rule.","Different offset on each end of the rule, length units. …","The fill mode of a rule.","Fill the whole length of the container.","Uniform offset from each end, length units.","Fill a percent of the length of the container. The rule …","Display a horizontal or vertical rule for dividing content.","The supported style of the StyleSheet.","A set of rules that dictate the style of a rule.","","","","Produces the style of a rule.","","","","","","","","","","","","","","","","","","","","","","","The color of the rule.","","","","","","","","","","","","","","","","","Return the starting offset and length of the rule.","The FillMode of the rule.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Creates a horizontal Rule with the given height.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","The radius of the line corners.","","Sets the style of the Rule.","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a vertical Rule with the given width.","The width (thickness) of the rule line.","The amount of absolute offset in each direction of a …","Alignment of the scrollable’s content relative to it’s …","Both vertical and horizontal scrolling","The direction of Scrollable.","A relative offset that points to the bottom-right of a …","Content is aligned to the end of the Viewport","Horizontal scrolling","The identifier of a Scrollable.","Properties of a scrollbar within a Scrollable.","The amount of relative offset in each direction of a …","A relative offset that points to the top-left of a …","A widget that can vertically display an infinite amount of …","The appearance of a scrollable.","The appearance of the scroller of a scrollable.","Content is aligned to the start of the Viewport.","The local state of a Scrollable.","The supported style of the StyleSheet.","A set of rules that dictate the style of a scrollable.","Vertical scrolling","The current Viewport of the Scrollable.","Returns the AbsoluteOffset of the current Viewport.","Returns the AbsoluteOffset of the current Viewport, but …","Produces the style of an active scrollbar.","Produces the style of an active horizontal scrollbar.","","","","","","","","","","","","Sets the alignment of the Scrollable .","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of a scrollable.","The Border of a scrollable.","The Border of the scroller.","","","","","","","","","","","","","","","","","","","","","","","Returns the bounds of the current Viewport.","","","","","","","","","","","","","","","","","","","","","","The Color of the scroller.","","","","","","","","","","","","Returns the content bounds of the current Viewport.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the Direction of the Scrollable .","","","","","","","","","","","","Produces the style of a scrollbar that is being dragged.","Produces the style of a horizontal scrollbar that is being …","Draws a Scrollable.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","Sets the height of the Scrollable.","Returns the Properties of the horizontal scrollbar, if any.","Produces the style of a scrollbar when the scrollable is …","Produces the style of a horizontal scrollbar when the …","Sets the Id of the Scrollable.","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the layout of a Scrollable.","","Sets the scrollbar margin of the Scrollable .","Computes the current mouse::Interaction of a Scrollable.","","Creates a new Scrollable.","Creates new Properties for use in a Scrollable.","Creates a custom Id.","Creates a new State with the scrollbar(s) at the beginning.","","Sets a function to call when the Scrollable is scrolled.","","","Returns the RelativeOffset of the current Viewport.","Apply a scrolling offset to the current State, given the …","Produces a Command that scrolls the Scrollable with the …","Scroll to the provided AbsoluteOffset.","","Scrolls the Scrollable to a relative amount along the x …","Scrolls the Scrollable to a relative amount along the y …","The appearance of the Scroller of a scrollable.","Sets the scroller width of the Scrollable .","Returns whether any scroller is currently grabbed or not.","","Produces a Command that snaps the Scrollable with the …","Snaps the scroll position to a RelativeOffset.","","","Sets the style of the Scrollable .","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a unique Id.","Unsnaps the current scroll position, if snapped, given the …","","","","","","","","","","","","Processes an Event and updates the State of a Scrollable …","Returns the Properties of the vertical scrollbar, if any.","Sets the width of the Scrollable.","Sets the scrollbar width of the Scrollable .","The amount of horizontal offset","The amount of horizontal offset","The amount of vertical offset","The amount of vertical offset","The properties of the horizontal scrollbar.","The properties of the vertical scrollbar.","A Shader event.","A keyboard event.","A mouse event.","A set of methods which allows a Primitive to be rendered.","The type of primitive this Program can draw.","The state and logic of a Shader widget.","A window requested a redraw.","A widget which can render custom shaders with Iced’s wgpu…","The internal state of the Program.","Stores custom, user-provided pipelines.","A touch event.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draws the Primitive.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Returns a reference to pipeline with type T if it exists …","Returns a mutable reference to pipeline T if it exists in …","Returns true if Storage contains a pipeline with type T.","Set the height of the custom Shader.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Returns the current mouse interaction of the Program.","Returns the current mouse interaction of the Program.","","Create a new custom Shader.","","Processes the Primitive, allowing for GPU buffer …","Renders the Primitive.","","","Inserts the pipeline T in to Storage.","","","","","","","","","","","","","","","","","","","","","","","","","","","Update the internal State of the Program. This can be used …","Update the internal State of the Program. This can be used …","","Set the width of the custom Shader.","The appearance of a slider.","A circular handle.","The default height of a Slider.","The appearance of the handle of a slider.","The shape of the handle of a slider.","The appearance of a slider rail","A rectangular shape.","An horizontal bar and a handle that selects a single value …","The local state of a Slider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","Produces the style of an active slider.","","","","","","","","","","","","","","","","The border Color of the handle.","The border radius of the corners of the rail.","The border width of the handle.","","","","","","","","","","","The Color of the handle.","The colors of the rail of the slider.","","","","Sets the optional default value for the Slider.","","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a Slider.","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","The appearance of the Handle of the slider.","Sets the height of the Slider.","Produces the style of an hovered slider.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a Slider.","","Creates a new Slider.","Creates a new State.","","Sets the release message of the Slider. This is called …","The colors of the rail of the slider.","The shape of the handle.","Sets the optional “shift” step for the Slider.","","","Sets the step size of the Slider.","Sets the style of the Slider.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a Slider …","Sets the width of the Slider.","The width of the stroke of a slider rail.","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle.","An amount of empty space.","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","Creates an amount of empty Space with the given width and …","","","","","","","","","","Creates an amount of vertical Space.","Creates an amount of horizontal Space.","The appearance of an SVG.","A handle of Svg data.","The supported style of the StyleSheet.","The stylesheet of a svg.","A vector graphics image.","","","","Produces the Appearance of the svg.","","","","","","","","","","","","","","","","","","","","","","","The Color filter of an SVG.","","","","Sets the ContentFit of the Svg.","Returns a reference to the SVG Data.","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Creates an SVG Handle from raw bytes containing either an …","Creates an SVG Handle pointing to the vector image of the …","Creates a new Svg that will display the contents of the …","","","","","Sets the height of the Svg.","Produces the hovered Appearance of a svg content.","Returns the unique identifier of the Handle.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","Creates a new Svg from the given Handle.","","Sets the style variant of this Svg.","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the width of the Svg.","An absolute height in logical pixels.","Advanced text shaping and font fallback.","The apperance of some text.","No shaping and no font fallback.","The height of a line of text in a paragraph.","A factor of the size of the text.","The shaping strategy of some text.","The internal state of a Text widget.","The supported style of the StyleSheet.","The style sheet of some text.","A paragraph.","","","","","Produces the Appearance of some text.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Color of the text.","","","","","","","","","","","","","","","","","","","","","Draws text using the same logic as the Text widget.","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Produces the layout::Node of a Text widget.","Returns the LineHeight in absolute logical pixels.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An interaction with an Editor.","The appearance of a text input.","Delete the previous character.","Click the Editor at the given Point.","The content of a TextEditor.","Delete the next character.","Move to the end of the text.","Move to the start of the text.","Move down.","Drag the mouse on the Editor to the given Point.","An action that edits text.","Perform an Edit.","Move to the end of the line.","Break the current line.","Move to the start of the line.","Insert the given character.","Move left.","A cursor movement.","Apply a Motion.","Move to the start of the next window.","Move to the start of the previous window.","Paste the given text.","Move right.","Scroll the Editor a certain amount of lines.","Select text with a given Motion.","Select the line at the current cursor.","Select the word at the current cursor.","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","A multi-line text input.","Move up.","Move to the left boundary of a word.","Move to the right boundary of a word.","Produces the style of an active text input.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the text editor.","The Border of the text editor.","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the current cursor position of the Content.","","","","","","","","","","","","","","Returns the Direction of the Motion.","Produces the style of a disabled text input.","Produces the Color of the value of a disabled text input.","","","","","","","","","","","","","","","","","","","","","","Produces the style of a focused text input.","Sets the Font of the TextEditor.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Highlights the TextEditor with the given Highlighter and a …","Produces the style of an hovered text input.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Action is an editing action.","","Returns the text of the line at the given index, if it …","Returns the amount of lines of the Content.","Returns an iterator of the text of the lines in the Content…","","Creates new TextEditor with the given Content.","Creates an empty Content.","Sets the message that should be produced when some action …","","Sets the Padding of the TextEditor.","Performs an Action on the Content.","Produces the Color of the placeholder of a text input.","Returns the selected text of the Content.","Produces the Color of the selection of a text input.","","","Sets the style of the TextEditor.","","Returns the text of the Content.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Produces the Color of the value of a text input.","Widens the Motion, if possible.","Creates a Content with the given text.","The amount of lines to scroll.","The appearance of a text input.","","The default Padding of a TextInput.","The content of the Icon.","The identifier of a TextInput.","The left side of a TextInput.","The right side of a TextInput.","The side of a TextInput.","The state of a TextInput.","The supported style of the StyleSheet.","A set of rules that dictate the style of a text input.","A field that can be filled with text.","The value of a TextInput.","Produces the style of an active text input.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The Background of the text input.","The Border of the text input.","","","","","","","","","","","","","","","","","","","","","","","","","","","The unicode code point that will be used as the icon.","","","","","","","","Track the cursor of a text input.","Returns the Cursor of the TextInput.","","","","","","","","","","","","","","","","","Produces the style of a disabled text input.","Produces the Color of the value of a disabled text input.","","","","","","","","Draws the TextInput with the given Renderer, overriding its","Draws the TextInput with the given Renderer, overriding its","","","","","","","","","","","","","","","","","","","","Produces a Command that focuses the TextInput with the …","","Focuses the TextInput.","Produces the style of a focused text input.","Creates a new State, representing a focused TextInput.","Sets the Font of the TextInput.","The font that will be used to display the code_point.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","Produces the style of an hovered text input.","Sets the Icon of the TextInput.","The icon Color of the text input.","Sets the Id of the TextInput.","","","","","","","","Inserts a new char at the given grapheme index.","Inserts a bunch of graphemes at the given grapheme index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns whether the Value is empty or not.","Returns whether the TextInput is currently focused or not.","","Computes the layout of a TextInput.","Lays out the TextInput, overriding its Value if provided.","","Returns the total amount of graphemes in the Value.","Sets the text::LineHeight of the TextInput.","Computes the current mouse::Interaction of the TextInput.","","Produces a Command that moves the cursor of the TextInput …","Moves the Cursor of the TextInput to an arbitrary location.","","Produces a Command that moves the cursor of the TextInput …","Moves the Cursor of the TextInput to the end of the input …","","Produces a Command that moves the cursor of the TextInput …","","Moves the Cursor of the TextInput to the front of the …","Creates a new TextInput.","Creates a new Value from a string slice.","Creates a custom Id.","Creates a new State, representing an unfocused TextInput.","Returns the position of the next end of a word from the …","","Sets the message that should be produced when some text is …","Sets the message that should be produced when some text is …","Sets the message that should be produced when the TextInput…","","Sets the Padding of the TextInput.","Converts the TextInput into a secure password input.","Produces the Color of the placeholder of a text input.","Returns the position of the previous start of a word from …","Removes the grapheme at the given index.","Removes the graphemes from start to end.","Returns a new Value with all its graphemes replaced with …","Returns a new Value containing the graphemes from start …","Produces a Command that selects all the content of the …","Selects all the content of the TextInput.","","Produces the Color of the selection of a text input.","The side of a TextInput where to display the Icon.","","Sets the text size of the TextInput.","The font size of the content.","The spacing between the Icon and the text in a TextInput.","","Sets the style of the TextInput.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Unfocuses the TextInput.","Creates a unique Id.","Returns a new Value containing the graphemes until the …","","","","","","","","Processes an Event and updates the State of a TextInput …","Produces the Color of the value of a text input.","Sets the width of the TextInput.","The cursor of a text input.","Cursor without a selection","Cursor selecting a range of text","The state of a Cursor.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns the current selection of the Cursor for the given …","Returns the State of the Cursor.","","","","","","","","","","","","","","","","","","","The end of the selection","The start of the selection","The style of an application.","A simple box.","The style of a button.","The style of a checkbox.","Colored text.","The style of a container.","A Theme with a customized Palette.","A Theme that uses a Custom palette.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","A custom style.","The built-in dark variant of a Palette.","The danger style.","The danger style.","The built-in dark variant.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","The default style.","No filtering to the rendered SVG.","The default style.","The default style.","The default style.","The default style.","The destructive style.","The built-in light variant of a Palette.","The built-in light variant.","The style of a menu.","A color palette.","The style of a pane grid.","The style of a pick list.","The positive style.","The primary style.","The primary style.","The primary style.","The style of a progress bar.","The style of a radio button.","The style of a rule.","The style of a scrollable.","The secondary style.","The secondary style.","The style of a slider.","The success style.","The success style.","Svg","The style of text.","The text style.","The style of a text input.","The style of a text input.","A built-in theme.","The style of a toggler.","No style.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a custom Button style variant.","Creates a custom Scrollable theme.","Creates a custom Svg style.","The danger Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Custom theme from the given Palette.","Define the colors of a theme.","The primary Color of the Palette.","The success Color of the Palette.","The text Color of the Palette.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Custom theme from the given Palette with a …","A set of background colors.","A set of danger colors.","The built-in dark variant of an Extended palette.","The built-in light variant of an Extended palette.","An extended set of colors generated from a Palette.","A pair of background and text colors.","A color palette.","A set of primary colors.","A set of secondary colors.","A set of success colors.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background Color of the Palette.","The set of background colors.","The base background color.","The base primary color.","The base secondary color.","The base success color.","The base danger color.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The background color.","","","","","","","","The danger Color of the Palette.","The set of danger colors.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Generates an Extended palette from a simple Palette.","Generates a set of Primary colors from the base, …","Generates a set of Secondary colors from the base and text …","Generates a set of Success colors from the base, …","Generates a set of Danger colors from the base, …","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether the palette is dark or not.","Creates a new Pair from a background Color and some text …","Generates a set of Background colors from the base and …","The primary Color of the Palette.","The set of primary colors.","The set of secondary colors.","A stronger version of the base background color.","A stronger version of the base primary color.","A stronger version of the base secondary color.","A stronger version of the base success color.","A stronger version of the base danger color.","The success Color of the Palette.","The set of success colors.","The text Color of the Palette.","The text color.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A weaker version of the base background color.","A weaker version of the base primary color.","A weaker version of the base secondary color.","A weaker version of the base success color.","A weaker version of the base danger color.","The appearance of a toggler.","The default size of a Toggler.","The supported style of the StyleSheet.","A set of rules that dictate the style of a toggler.","A toggler widget.","Returns the active Appearance of the toggler for the …","","","","","","","","","","","The background Color of the toggler.","The Color of the background border of the toggler.","","","","","","","","","","","","","","","","","","","Sets the Renderer::Font of the text of the Toggler","The foreground Color of the toggler.","The Color of the foreground border of the toggler.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the hovered Appearance of the toggler for the …","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Creates a new Toggler.","","","Sets the size of the Toggler.","Sets the spacing between the Toggler and the text.","","Sets the style of the Toggler.","","Sets the horizontal alignment of the text of the Toggler","Sets the text text::LineHeight of the Toggler.","Sets the text::Shaping strategy of the Toggler.","Sets the text size o the Toggler.","","","","","","","","","","","","","","","","","","Sets the width of the Toggler.","The tooltip will appear on the bottom of the widget.","The tooltip will follow the cursor.","The tooltip will appear on the left of the widget.","The position of the tooltip. Defaults to following the …","The tooltip will appear on the right of the widget.","An element to display a widget over another.","The tooltip will appear on the top of the widget.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the font of the Tooltip.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Sets the gap between the content and its Tooltip.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Creates a new Tooltip.","","","Sets the padding of the Tooltip.","Sets the size of the text of the Tooltip.","","Sets whether the Tooltip is snapped within the viewport.","","Sets the style of the Tooltip.","","Sets the text::Shaping strategy of the Tooltip.","","","","","","","","","","","","","","","","","","The appearance of a slider.","A circular handle.","The default width of a VerticalSlider.","The appearance of the handle of a slider.","The shape of the handle of a slider.","A rectangular shape.","The local state of a VerticalSlider.","The supported style of the StyleSheet.","A set of rules that dictate the style of a slider.","An vertical bar and a handle that selects a single value …","Produces the style of an active slider.","","","","","","","","","","","","","","","","","","","","","","","","","","The border Color of the handle.","The border width of the handle.","","","","","","","","","","","","","","","","","","","The Color of the handle.","","","","","","Sets the optional default value for the VerticalSlider.","","","","","","","","","","","","","","","","","Produces the style of a slider that is being dragged.","Draws a VerticalSlider.","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","The appearance of the Handle of the slider.","Sets the height of the VerticalSlider.","Produces the style of an hovered slider.","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Computes the current mouse::Interaction of a VerticalSlider…","","Creates a new VerticalSlider.","Creates a new State.","","Sets the release message of the VerticalSlider. This is …","The colors of the rail of the slider.","The shape of the handle.","Sets the optional “shift” step for the VerticalSlider.","","","Sets the step size of the VerticalSlider.","Sets the style of the VerticalSlider.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Processes an Event and updates the State of a …","Sets the width of the VerticalSlider.","The border radius of the corners of the rectangle.","The radius of the circle.","The width of the rectangle."],"i":[1,0,0,0,0,0,0,0,1,1,52,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,40,0,0,0,40,1,1,1,1,1,1,1,1,1,1,40,1,67,36,1,1,1,1,1,1,1,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,0,0,0,0,0,0,36,40,1,1,0,0,0,0,0,0,40,1,67,36,0,0,0,1,1,1,40,40,40,1,67,36,40,1,67,36,36,40,40,1,1,1,1,1,40,1,67,36,1,1,1,40,40,40,67,36,40,40,40,1,67,36,1,1,40,40,40,40,1,1,0,0,1,1,40,1,67,36,40,1,67,36,40,1,67,36,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,1,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,0,0,0,67,36,0,40,0,67,36,67,36,67,36,52,52,67,36,0,67,36,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,67,36,36,0,0,0,67,36,0,0,0,67,36,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,40,1,67,36,52,1,1,0,0,0,0,52,40,40,0,0,0,22,0,22,21,10,147,21,10,147,21,10,147,21,10,147,21,10,147,10,10,21,10,147,21,10,147,21,10,147,10,147,21,10,147,10,147,21,10,147,21,10,147,21,22,21,10,147,0,21,21,10,147,147,147,147,147,10,147,21,10,147,21,10,147,21,10,147,21,22,21,10,147,21,10,147,21,10,147,21,10,147,10,147,21,10,147,21,10,147,21,10,147,21,10,147,0,21,0,21,21,147,21,21,21,21,21,21,22,10,10,21,21,21,21,10,10,147,21,10,147,21,10,147,21,10,147,21,10,147,21,10,147,21,10,147,21,10,147,21,10,147,0,21,157,156,0,0,0,0,0,0,27,0,159,0,0,0,153,157,0,0,0,156,157,159,156,28,0,0,0,150,162,150,162,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,151,152,153,154,151,155,156,157,158,159,160,153,154,151,155,156,157,158,159,160,160,150,162,152,153,154,151,155,156,157,158,159,160,26,160,152,154,155,156,157,158,160,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,27,28,152,26,160,150,162,152,153,154,151,155,156,157,158,159,160,26,153,159,0,0,150,150,150,152,153,154,151,155,156,157,158,159,160,26,160,150,162,152,153,153,154,154,154,154,151,155,156,157,158,159,159,159,160,160,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,0,150,26,160,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,150,162,152,153,154,151,155,156,157,158,159,160,26,26,151,155,155,160,155,28,28,26,150,152,151,26,158,26,153,0,160,151,151,150,154,150,150,158,160,150,26,160,26,0,150,154,155,26,153,154,151,155,156,157,158,159,160,151,150,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,150,162,152,153,154,151,155,156,157,158,159,160,26,28,28,160,150,26,155,150,155,155,155,150,155,103,0,103,171,171,0,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,103,103,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,103,171,172,0,159,172,0,159,0,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,154,154,172,172,172,172,172,172,172,172,172,0,0,153,0,165,167,165,165,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,167,165,0,165,165,165,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,165,167,0,0,0,166,175,0,166,166,166,175,166,175,166,175,166,175,166,166,175,166,175,166,175,166,175,175,166,166,175,166,166,175,166,175,166,175,166,175,166,175,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,166,166,166,175,166,175,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,166,175,0,0,176,176,176,176,176,176,176,175,176,176,176,176,176,176,176,176,175,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,175,176,175,176,176,176,176,176,176,176,176,176,176,0,0,0,0,0,438,439,189,193,192,0,438,439,189,438,439,189,0,195,0,0,0,197,182,198,0,0,438,439,189,0,0,193,193,0,194,196,195,0,0,0,0,0,0,0,0,0,0,194,196,438,439,189,192,193,0,192,0,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,177,168,180,168,179,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,0,177,168,180,168,180,188,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,190,191,0,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,168,180,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,189,192,193,194,195,196,197,182,198,189,189,189,196,196,196,197,197,197,182,182,182,198,198,198,177,178,190,191,177,168,179,188,177,178,189,168,179,180,181,192,193,194,195,196,197,182,198,188,202,177,178,178,189,189,168,179,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,168,180,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,197,182,201,202,168,179,180,181,203,168,179,190,203,168,179,190,189,196,197,182,198,168,179,190,168,168,179,179,190,180,181,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,177,168,179,179,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,189,179,180,181,195,194,195,194,177,178,168,179,180,181,190,191,168,179,0,188,168,179,180,181,0,202,168,180,177,178,177,178,201,202,168,179,197,182,194,0,0,190,177,190,191,0,204,180,168,179,168,188,189,194,188,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,197,182,198,0,189,168,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,188,202,177,178,189,168,179,180,181,190,191,192,193,194,195,196,197,182,198,168,180,189,440,441,442,443,443,441,444,442,443,441,444,442,443,440,441,442,443,443,441,444,442,443,441,444,442,443,440,441,442,443,443,441,444,442,443,441,444,442,443,0,0,0,0,0,232,0,0,0,229,230,220,228,185,222,185,222,185,222,185,222,185,222,226,185,222,185,222,185,220,226,220,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,222,229,230,185,185,229,230,220,228,185,229,230,220,228,185,228,228,232,229,229,230,220,220,185,185,228,185,228,185,226,222,220,220,185,229,230,220,228,185,222,226,229,230,220,220,185,185,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,222,229,230,185,185,228,185,222,185,222,220,185,228,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,185,226,220,229,230,220,228,185,185,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,185,229,230,220,228,185,222,226,229,230,220,220,185,185,226,220,220,229,230,220,228,185,222,229,230,185,228,222,185,222,226,229,230,220,220,185,185,226,220,226,220,226,220,226,220,226,220,226,220,226,220,222,226,229,230,220,220,185,185,229,230,220,226,220,226,220,226,220,226,220,228,185,228,228,228,228,222,220,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,229,230,220,228,185,226,220,185,222,185,185,0,0,0,0,0,0,0,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,183,217,183,199,209,234,217,183,199,209,234,183,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,183,183,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,183,217,217,183,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,217,217,217,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,199,209,234,217,183,199,209,234,217,183,183,199,209,234,199,183,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,217,183,199,209,234,183,0,0,0,0,0,236,236,236,236,236,236,0,0,0,236,236,236,236,0,0,0,236,236,0,241,0,0,0,0,236,236,236,0,0,0,0,236,235,237,237,237,242,252,243,225,253,235,244,237,224,224,224,224,241,242,242,243,243,225,225,244,244,445,224,224,224,241,242,242,243,243,225,244,0,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,235,237,237,243,244,237,241,242,242,243,243,225,225,244,244,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,243,225,244,237,242,243,244,237,242,243,244,237,244,235,237,237,224,237,242,242,225,225,225,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,225,244,242,252,243,225,253,235,244,237,224,237,225,244,243,243,0,243,243,224,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,241,242,243,243,225,244,244,225,253,235,244,224,224,224,242,252,243,225,253,235,244,237,224,243,244,243,242,252,243,225,253,235,244,237,224,241,243,243,225,244,244,241,243,243,225,244,244,242,236,242,252,243,225,235,244,237,224,253,235,235,235,224,224,224,242,243,244,242,243,244,242,243,244,243,244,252,242,243,244,244,244,241,242,242,243,243,225,225,244,244,242,252,243,225,253,235,244,237,224,242,252,242,252,243,244,241,242,242,252,243,243,225,244,244,243,242,243,242,243,243,244,243,244,242,252,243,242,252,243,243,244,243,244,243,244,243,244,224,224,224,241,242,242,242,242,252,243,243,243,225,225,225,253,235,244,244,244,237,224,252,243,225,244,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,224,242,224,446,225,225,242,252,243,225,253,235,244,237,224,225,253,225,225,237,253,225,237,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,235,244,224,235,243,244,243,244,243,252,235,243,244,243,244,188,225,244,224,225,225,243,244,243,244,243,244,243,244,244,244,447,447,447,447,447,447,448,225,448,224,224,224,235,235,243,235,225,225,235,224,224,0,253,224,235,0,243,243,224,224,242,252,241,242,242,243,243,225,225,244,244,242,225,224,253,235,224,0,243,225,243,225,225,235,225,235,241,242,242,243,243,225,225,244,244,225,241,242,242,243,243,225,225,244,244,225,253,244,225,242,224,224,224,224,188,242,235,241,242,242,243,243,225,225,244,244,252,243,225,244,252,244,224,243,225,253,244,224,243,225,253,244,224,225,242,252,243,225,253,235,244,237,224,243,243,242,225,0,237,243,225,244,225,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,242,252,243,225,253,235,244,237,224,0,236,0,253,225,225,446,241,242,242,243,243,225,225,244,244,449,450,451,243,244,243,244,242,252,241,242,242,243,243,225,225,244,244,449,450,451,243,244,243,244,224,0,0,0,0,258,258,258,258,258,258,258,242,258,258,258,258,258,252,258,252,258,258,258,258,258,258,258,258,258,258,258,258,188,258,242,252,242,188,242,252,258,258,258,258,258,258,258,258,242,252,0,0,0,0,0,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,254,254,271,254,254,271,254,271,254,254,272,275,271,271,273,254,254,272,275,271,271,273,254,271,254,271,254,272,271,273,254,271,254,272,271,273,254,271,273,254,271,273,254,272,275,271,273,254,271,254,254,272,275,271,271,273,254,254,272,275,271,271,273,254,272,275,271,273,254,254,254,272,272,275,275,271,273,273,254,254,271,271,273,254,254,254,271,271,271,273,273,273,254,254,254,272,271,271,273,273,254,254,272,275,271,271,273,254,272,275,271,273,271,254,254,272,275,271,273,271,254,271,271,254,271,271,254,271,254,272,275,271,273,254,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,254,254,254,254,272,275,254,272,275,271,273,254,271,254,271,254,271,271,254,271,254,271,271,254,271,273,254,271,272,275,272,275,254,271,271,273,254,271,254,254,271,271,254,254,271,254,271,254,254,271,273,272,275,254,254,254,254,272,271,273,271,273,271,273,254,271,254,272,275,271,273,254,254,254,272,275,271,271,271,273,254,254,272,275,271,273,254,272,275,271,273,254,271,271,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,272,275,271,273,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,271,271,271,0,0,259,259,259,259,259,259,259,259,259,243,243,259,259,259,259,259,243,259,259,259,259,259,259,259,259,259,259,259,259,259,259,243,259,259,259,259,259,259,259,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,290,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,292,292,200,200,293,293,294,295,267,267,290,290,296,297,223,223,291,291,292,200,200,293,293,295,267,290,296,297,223,291,200,293,298,299,298,299,304,223,223,291,298,299,292,200,293,301,170,300,223,291,170,300,292,200,293,301,170,170,300,300,223,291,0,0,227,302,267,301,301,301,301,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,295,0,0,0,227,303,292,200,293,302,294,267,290,170,300,223,291,227,303,292,200,293,302,304,301,267,290,223,291,305,200,200,293,293,267,267,290,290,223,223,291,291,227,303,302,200,293,294,267,290,223,291,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,292,294,169,292,294,169,223,291,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,302,267,290,227,303,302,255,223,291,305,0,227,303,292,200,293,302,294,295,267,290,170,300,296,297,223,291,169,255,303,290,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,170,300,200,293,227,227,303,303,292,292,292,200,200,293,293,302,302,295,295,267,267,290,290,223,223,291,291,227,227,303,303,292,200,200,293,293,302,302,295,295,267,267,290,290,223,223,291,291,200,293,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,267,290,223,291,227,227,227,303,303,303,308,308,308,292,292,292,200,200,200,293,293,293,302,302,302,304,304,304,301,301,301,294,294,294,295,295,295,267,267,267,290,290,290,170,170,170,300,300,300,296,296,296,297,297,297,223,223,223,291,291,291,305,305,305,298,298,298,299,299,299,169,169,169,301,200,223,255,200,200,293,293,267,267,290,290,223,223,291,291,227,303,308,292,200,293,302,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,227,303,303,308,308,308,308,308,292,200,200,200,293,293,293,302,302,304,301,294,295,267,267,267,267,290,290,290,290,170,300,296,296,297,297,223,223,223,223,291,291,291,305,305,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,223,170,300,170,300,295,200,293,295,267,290,223,291,227,227,303,302,305,300,227,303,302,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,305,227,303,200,293,302,304,301,267,290,170,300,296,297,223,291,305,295,295,292,294,304,267,290,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,302,267,290,295,301,304,301,294,170,300,296,297,305,227,303,302,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,302,227,303,302,227,303,227,303,302,227,303,308,292,200,200,200,293,293,293,302,304,301,294,295,267,267,267,290,290,290,170,300,296,296,296,297,297,297,223,223,223,291,291,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,304,301,294,170,300,296,297,305,300,300,227,303,302,267,290,227,303,200,293,302,267,290,223,291,294,296,297,170,300,227,303,301,267,290,295,301,301,295,223,291,227,303,292,200,293,302,301,267,290,223,291,267,290,223,291,170,300,170,300,300,300,170,300,170,300,300,300,170,300,170,300,300,300,300,300,300,300,292,200,293,302,294,267,290,223,291,227,303,302,302,292,200,293,302,294,267,290,223,291,227,303,302,302,227,227,303,303,292,292,200,200,293,293,302,302,294,295,295,267,267,290,290,223,223,291,291,227,227,303,303,292,200,200,293,293,302,302,295,295,267,267,290,290,223,223,291,291,300,292,200,293,295,267,290,223,291,227,303,308,292,200,293,302,304,294,295,267,290,170,300,296,297,223,291,305,300,295,305,298,299,301,301,223,291,298,299,267,290,223,291,0,294,223,291,298,299,200,293,302,300,227,302,170,300,300,170,300,292,294,169,300,0,0,200,170,300,170,300,170,300,223,291,300,301,301,304,224,255,0,223,291,200,293,295,223,291,170,300,305,227,303,200,200,293,293,302,267,267,290,290,223,223,291,291,227,303,302,227,303,302,292,292,227,303,302,170,300,298,299,298,299,298,299,227,255,227,303,302,0,0,300,301,200,293,267,290,296,297,223,291,223,291,301,292,200,200,200,293,293,293,294,295,267,290,296,297,223,291,292,200,200,293,293,295,267,290,296,297,223,291,292,292,267,267,290,290,223,223,291,291,255,304,301,170,300,305,170,300,170,300,170,300,293,300,291,200,304,170,223,200,293,267,290,170,300,296,297,223,291,293,291,170,300,170,300,300,302,227,303,200,293,302,267,290,223,291,227,303,200,293,302,267,290,223,291,227,303,200,293,302,267,290,223,291,227,303,200,293,302,267,290,223,291,227,303,302,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,223,291,308,308,227,223,304,301,296,297,223,291,305,200,293,267,290,296,297,223,291,293,291,227,303,200,293,302,267,290,223,291,302,267,227,303,200,293,302,304,301,267,290,170,300,296,297,223,291,305,227,303,200,293,302,267,290,223,291,200,293,267,290,296,297,295,296,294,297,294,297,304,304,294,294,170,170,296,296,301,300,297,300,301,294,300,297,300,294,296,297,294,296,297,304,304,294,294,170,170,296,301,300,301,300,227,303,302,170,300,305,227,303,292,200,293,302,294,267,290,170,300,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,223,291,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,227,303,302,301,227,303,308,292,200,293,302,304,301,294,295,267,290,170,300,296,297,223,291,305,298,299,169,0,0,301,295,303,290,308,227,303,302,267,290,170,300,223,223,291,223,291,170,300,308,200,293,296,297,223,291,298,299,227,303,302,293,291,299,303,293,291,299,303,308,200,293,296,297,223,291,298,299,227,303,302,200,223,293,291,299,303,308,293,297,291,299,303,227,303,292,200,200,293,293,302,295,267,267,290,290,223,223,291,291,0,250,250,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,453,454,446,454,455,455,455,453,456,457,456,457,457,457,456,457,456,457,457,457,456,457,456,457,457,457,457,457,457,457,448,458,448,458,459,455,453,460,459,453,460,461,446,454,450,462,451,463,461,464,465,450,462,451,463,461,464,465,462,463,461,465,0,0,0,0,0,306,311,307,312,309,0,0,0,0,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,244,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,244,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,260,261,314,260,261,314,260,261,260,261,244,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,314,260,261,241,0,0,241,241,241,241,241,241,241,241,241,241,241,241,241,221,221,241,241,0,0,0,0,0,0,0,0,0,0,0,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,316,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,317,318,315,219,317,318,315,315,317,316,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,317,318,315,219,0,0,0,0,0,0,0,0,0,466,467,468,468,468,468,468,468,469,469,0,470,0,0,467,471,472,473,471,472,473,0,0,0,0,0,0,0,0,0,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,184,187,187,218,184,187,210,215,206,218,184,187,210,215,206,184,187,187,184,187,210,215,206,184,187,210,215,206,218,184,187,210,215,206,184,187,187,184,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,184,187,187,184,187,206,215,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,210,215,206,218,218,184,187,210,215,206,184,187,187,184,187,218,210,215,206,184,187,187,215,184,187,187,184,187,187,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,218,184,187,210,215,206,184,184,0,0,0,0,0,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,186,319,319,186,319,212,186,319,212,186,186,319,319,212,212,186,319,212,186,186,319,319,186,319,212,186,319,212,186,319,212,186,319,212,186,186,319,319,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,212,186,319,212,186,186,319,319,319,212,212,186,319,186,186,319,319,186,186,319,319,212,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,319,212,186,0,0,0,0,0,0,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,190,191,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,207,214,213,216,207,207,190,191,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,214,213,216,207,0,0,0,232,0,222,222,222,222,222,226,222,222,226,222,232,226,222,222,226,222,222,222,316,226,222,226,226,222,222,222,226,226,226,226,226,226,226,226,222,226,226,226,226,226,222,316,226,222,157,156,159,0,0,0,157,156,157,159,156,0,0,155,155,155,158,158,155,155,0,0,0,33,0,33,11,29,321,11,29,321,11,29,321,11,29,321,11,29,321,11,11,11,29,321,11,29,321,11,321,11,321,321,11,29,321,11,29,321,11,29,321,11,29,321,29,11,29,321,321,11,321,29,321,11,29,321,11,29,321,11,29,321,33,29,11,11,29,321,11,29,321,11,29,321,11,29,321,11,321,11,29,321,11,29,321,11,29,321,11,29,321,29,321,29,29,29,321,29,29,321,29,29,29,29,11,29,29,29,11,321,11,29,321,11,29,321,11,29,321,11,29,321,11,29,321,11,29,321,11,29,321,11,29,321,29,0,0,47,44,47,44,47,44,47,44,47,44,47,44,47,44,0,47,44,44,47,44,47,44,47,44,47,44,47,47,44,44,47,47,44,47,44,47,44,47,47,44,47,44,47,44,47,44,47,44,47,44,47,44,47,44,47,47,47,47,44,47,47,47,47,47,47,0,47,47,47,47,47,47,44,47,44,47,44,47,44,47,44,47,44,47,44,47,44,47,44,47,44,0,0,0,54,0,17,53,328,53,53,54,17,53,328,17,53,328,17,53,328,17,53,328,17,17,17,53,328,17,53,328,53,53,53,17,328,17,328,17,53,328,17,17,53,328,17,53,328,53,17,53,328,53,0,17,53,328,328,328,328,328,17,328,17,53,328,17,53,328,17,53,328,328,53,53,17,53,328,17,53,328,17,53,328,17,53,328,17,328,17,53,328,17,53,328,17,53,328,17,53,328,0,53,53,53,53,53,328,53,53,53,53,17,53,53,53,53,17,17,328,17,53,328,17,53,328,17,53,328,17,53,328,17,53,328,17,53,328,17,53,328,328,17,53,328,0,53,17,17,0,0,0,65,65,0,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,63,65,63,65,63,65,87,87,63,65,63,65,87,63,65,87,63,65,87,0,87,63,65,87,63,65,63,63,63,65,65,65,87,63,65,87,63,63,65,87,63,65,87,63,63,63,63,65,87,63,65,87,63,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,0,87,87,87,63,65,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,63,65,87,0,0,87,0,0,336,337,336,337,336,337,336,337,336,337,336,337,336,337,337,337,336,337,337,336,337,336,337,336,337,336,336,337,337,336,337,336,337,336,337,336,0,336,337,336,337,336,337,336,337,336,337,336,337,336,337,336,337,336,337,337,336,336,336,336,336,337,336,336,336,336,336,336,337,336,337,336,337,336,337,336,337,336,337,336,337,336,337,336,337,336,0,0,0,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,0,0,0,0,51,0,19,340,339,51,19,340,339,19,340,339,19,340,339,19,340,339,19,19,19,340,339,19,340,339,19,19,19,340,339,339,19,340,339,19,340,339,19,340,339,19,340,339,19,339,340,19,340,339,19,340,339,19,340,339,19,340,339,19,340,339,19,340,339,19,340,339,19,19,340,339,19,340,339,19,340,339,19,340,339,340,339,340,340,19,19,340,19,340,340,340,19,19,340,339,19,340,339,19,340,339,19,340,339,19,340,339,19,340,339,19,340,339,19,340,339,340,358,0,0,355,352,354,0,0,0,0,348,0,0,352,0,353,354,346,348,355,0,358,0,0,347,349,353,0,352,0,0,348,355,0,347,349,0,345,0,0,0,355,348,346,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,341,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,85,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,342,343,344,85,86,346,347,348,349,350,351,352,353,354,355,356,85,86,346,347,348,349,350,351,352,353,354,355,356,350,351,86,350,351,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,341,354,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,344,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,0,343,341,344,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,86,346,348,350,351,346,346,346,348,348,348,350,350,350,351,351,351,85,86,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,346,349,350,351,344,345,345,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,341,358,0,344,358,0,344,343,341,344,344,344,344,344,344,344,341,349,350,351,345,356,344,344,346,356,346,349,349,0,344,343,341,344,344,343,85,86,346,347,348,349,350,351,352,353,354,355,356,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,85,86,343,341,344,346,347,348,349,350,351,352,353,354,355,356,358,0,344,86,474,474,474,474,475,476,477,476,478,478,478,478,478,0,357,357,357,0,357,0,359,361,357,359,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,357,359,361,357,359,361,357,359,359,361,357,359,361,357,359,361,357,359,361,357,359,359,361,357,357,359,361,357,359,361,357,359,361,357,361,359,361,357,359,359,359,361,357,359,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,359,359,359,361,359,359,359,359,359,359,357,357,359,359,359,359,359,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,361,357,359,479,480,481,480,481,479,0,363,109,363,0,0,363,0,0,363,111,0,111,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,2,2,2,109,365,363,364,2,109,365,363,364,2,363,364,2,363,364,364,2,109,365,363,364,365,363,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,0,109,2,109,365,363,364,363,364,2,365,363,364,109,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,109,2,111,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,2,363,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,0,109,364,0,109,109,109,0,109,109,109,2,364,109,364,109,109,109,2,109,109,109,2,363,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,2,109,365,363,364,0,109,482,482,483,0,115,0,116,0,16,115,116,16,115,16,115,16,115,16,115,16,16,16,16,115,16,115,16,16,16,115,16,115,16,115,16,115,115,16,115,16,16,115,16,115,16,115,115,16,115,16,115,16,115,16,115,16,115,16,115,16,115,16,115,16,115,115,115,115,115,16,16,115,16,115,16,115,16,115,16,115,16,115,16,115,16,115,115,370,0,0,369,370,370,370,369,369,368,368,0,369,0,370,0,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,368,369,370,368,369,370,367,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,367,371,368,369,370,368,369,370,368,368,368,369,369,369,370,370,370,367,371,368,369,370,370,367,371,368,369,370,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,367,371,367,368,369,370,370,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,367,371,368,369,370,371,371,0,117,117,0,119,0,119,7,117,7,117,7,117,7,117,7,117,7,7,7,7,117,7,117,7,7,7,117,7,117,7,117,7,7,117,117,7,117,7,117,7,117,7,117,7,117,119,7,117,7,117,7,117,7,117,7,117,7,117,7,117,7,117,7,117,117,117,117,117,117,117,117,117,117,117,7,117,117,117,7,7,117,7,117,7,117,7,117,7,117,7,117,7,117,7,117,117,0,373,0,373,373,373,0,82,0,15,373,81,82,15,373,81,15,373,81,15,373,81,15,373,81,15,373,81,15,373,81,15,373,15,373,15,15,373,81,15,373,81,15,373,81,15,373,81,81,15,373,81,373,15,15,373,15,373,81,15,373,81,15,373,81,81,15,373,81,15,373,81,15,373,81,15,373,81,15,373,81,15,373,81,15,373,81,15,373,81,15,373,81,81,15,81,81,15,373,15,373,81,15,373,81,15,373,81,15,373,81,15,373,81,15,373,81,15,373,81,15,373,81,81,15,0,0,380,0,379,377,380,0,0,0,379,0,0,0,377,0,112,0,380,0,374,374,112,112,6,378,120,375,379,380,376,377,381,382,374,376,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,6,378,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,374,120,6,378,375,379,380,376,377,381,382,374,6,378,375,379,380,376,377,381,382,374,378,6,378,120,375,379,380,376,377,381,382,374,374,375,379,380,376,377,382,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,120,120,6,378,120,375,379,380,376,377,381,382,374,112,112,0,120,6,378,120,375,379,380,376,377,381,382,374,375,379,380,376,377,381,377,377,377,381,381,381,6,378,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,381,120,380,112,112,120,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,0,120,376,0,120,120,376,381,382,120,120,120,120,374,382,0,382,382,382,382,6,376,382,120,0,382,382,120,120,120,6,378,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,6,378,120,375,379,380,376,377,381,382,374,381,382,6,378,120,375,379,380,376,377,381,382,374,0,380,120,376,375,379,375,379,484,484,0,383,383,0,122,0,383,0,122,0,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,383,383,384,121,383,384,384,121,383,384,121,383,384,121,383,122,121,384,121,383,383,384,383,384,121,383,384,121,383,384,121,383,384,384,384,121,384,121,383,384,121,383,384,121,383,384,121,383,121,383,384,121,383,384,121,383,384,121,383,384,121,383,121,122,122,121,121,121,72,72,121,121,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,384,121,383,122,122,0,121,0,436,123,0,0,0,436,0,0,126,0,126,392,123,393,392,123,393,392,123,393,392,123,393,392,123,393,435,392,435,392,123,393,392,123,393,392,393,392,393,435,392,392,123,393,123,393,392,123,393,392,123,393,392,123,393,126,0,123,392,123,393,393,393,393,393,392,393,392,123,393,392,123,393,392,123,393,8,123,126,392,123,393,392,123,393,392,123,393,392,123,393,392,393,392,123,393,392,123,393,392,123,393,392,123,393,123,0,123,123,393,123,123,8,435,123,123,123,123,123,123,392,393,392,123,393,392,123,393,392,123,393,392,123,393,392,123,393,392,123,393,392,123,393,392,123,393,0,123,392,485,486,485,0,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,0,0,129,0,0,14,60,128,129,14,60,128,14,60,128,14,60,128,14,60,128,14,60,128,14,60,128,14,60,14,60,14,14,60,128,128,60,14,14,60,128,14,60,128,14,60,128,128,14,60,128,60,60,60,60,14,60,14,60,128,14,60,128,60,60,128,14,60,128,60,128,129,60,14,60,128,14,60,128,14,60,128,14,60,128,14,60,128,14,60,128,14,60,128,14,60,128,14,60,128,128,128,128,128,14,60,14,60,128,14,60,128,14,60,128,14,60,128,14,60,128,14,60,128,14,60,128,14,60,128,128,322,323,0,323,0,322,0,0,34,0,0,323,322,397,13,34,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,13,323,322,13,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,0,323,322,397,13,323,322,323,323,323,323,322,397,13,323,322,322,322,397,13,323,322,397,13,323,322,397,13,323,322,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,0,322,323,322,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,323,322,397,13,0,0,399,398,0,399,400,400,400,398,0,398,400,399,400,399,400,0,398,400,400,399,400,398,398,398,398,135,0,0,400,400,400,135,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,9,9,134,132,398,399,400,9,134,132,398,399,400,9,398,399,400,9,398,399,400,9,134,132,398,399,400,132,132,9,134,132,398,399,400,9,134,132,398,399,400,400,135,135,9,134,132,398,399,400,134,9,134,132,398,399,400,398,399,400,9,132,398,399,400,135,134,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,134,135,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,398,134,132,132,132,134,134,132,134,134,134,132,135,132,135,134,134,134,134,132,9,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,9,134,132,398,399,400,135,400,132,487,0,0,0,0,0,406,406,0,0,50,0,0,0,50,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,3,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,405,324,406,407,408,3,405,324,406,407,408,324,3,136,405,324,406,407,408,0,408,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,136,50,50,3,136,405,324,406,407,408,0,136,136,3,136,405,324,406,407,408,407,407,407,407,3,405,405,324,406,407,408,0,408,408,50,408,136,324,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,407,50,136,3,136,3,136,405,324,406,407,408,405,405,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,405,408,408,0,136,136,405,136,0,136,0,408,408,0,408,408,0,408,408,136,405,407,408,405,136,136,136,136,136,136,136,50,405,405,405,405,405,0,408,408,50,324,136,136,324,324,136,136,136,3,405,324,406,407,408,405,405,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,3,136,405,324,406,407,408,408,408,407,405,3,136,405,324,406,407,408,0,50,136,0,410,410,0,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,409,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,409,410,488,488,0,420,0,0,414,0,0,1,418,415,419,420,421,412,413,422,423,424,425,426,417,416,427,428,55,419,425,1,418,421,412,413,422,423,424,426,417,416,414,427,428,415,55,1,0,0,0,0,415,415,419,425,0,0,0,0,415,419,0,419,425,0,0,415,0,0,0,0,420,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,412,413,414,55,411,412,413,414,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,415,416,417,55,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,55,411,411,55,411,418,418,415,419,420,420,420,421,412,412,413,422,423,424,425,425,426,426,417,416,414,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,414,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,411,0,55,55,55,55,411,412,413,414,411,411,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,55,411,418,415,419,420,421,412,413,422,423,424,425,426,417,416,414,427,428,411,0,0,0,0,0,0,0,0,0,0,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,55,56,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,429,56,429,430,431,432,433,434,55,56,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,55,56,56,430,431,432,433,434,55,56,55,429,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,56,429,430,431,432,433,434,430,431,432,433,434,0,138,139,0,0,139,5,138,5,138,5,138,5,138,5,138,5,5,5,138,5,138,5,5,5,138,5,138,5,138,5,138,138,5,138,5,138,5,5,5,138,5,138,5,138,139,5,138,5,138,5,138,5,138,5,5,138,5,138,5,138,5,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,5,5,138,5,138,5,138,5,138,5,138,5,138,5,138,5,138,138,140,140,140,0,140,0,140,141,140,141,140,141,140,141,140,141,140,141,140,141,140,141,140,140,141,140,141,140,141,140,141,141,140,141,141,140,140,140,140,140,140,141,141,140,141,140,141,140,141,141,140,141,140,141,140,141,140,140,141,140,141,140,141,140,141,140,141,141,141,141,141,141,141,141,141,141,141,141,141,140,141,140,141,140,141,140,141,140,141,140,141,140,141,140,141,140,0,436,144,0,0,436,0,126,0,0,126,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,435,435,8,435,436,144,437,8,435,436,144,437,8,435,436,437,8,435,436,437,435,8,435,436,144,437,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,126,0,144,8,435,436,144,437,437,437,437,437,8,435,436,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,144,126,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,144,0,144,144,437,144,144,8,435,144,144,144,144,144,144,8,435,436,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,8,435,436,144,437,0,144,485,486,485],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,3],[[1,4],5],[1,6],[[1,4],7],[1,8],[1,9],[1,10],[[1,4],11],[1,6],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[1,13],[1,14],[1,15],[1,16],[1,17],[1,18],[1,19],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-4,[[21,[-1,-2,-3]]],[],22,23,[[25,[[24,[-1,-2,-3]]]]]],0,[-4,[[26,[-4,-1,-2,-3]]],[],[],27,[[28,[-1,-2,-3]]]],0,[[-1,4,-3],[[29,[-2,-4,-5]]],[[25,[30]]],[],[[32,[4],[[31,[-2]]]]],[33,34],35],[[[36,[-1,-2,-3,-4,-5]]],[[38,[37]]],[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[40,41],[1,1],[[-1,-2],41,[],[]],[-4,[[0,[-1,-2,-3]]],[],[],23,[[43,[],[[42,[[24,[-1,-2,-3]]]]]]]],0,0,0,[[[44,[-1]],45,[46,[-1]],-3],[[47,[-1,-2,-4,-5]]],[48,49],[],[[32,[-1],[[31,[-2]]]]],[50,51],35],[-4,[[24,[-1,-2,-3]]],[],[],23,[[52,[-1,-2,-3]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-4,[[53,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],0,[[30,55],1],[[30,55,-1],1,[[57,[55],[[31,[56]]]]]],[[],1],[40],[40,58],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[36,[-1,-2,-3,-4,-5]],37],41,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[[40,60],[[62,[61]]]],[[40,63],[[62,[61]]]],[1,9],[1,3],[1,10],[1,64],[1,64],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[1,6],[1,8],[1,6],[[40,38],41],[[40,63,65,66],41],[[40,60,[46,[64]],66],41],[[[67,[-1,-2,-3]],37,-3,-2,68,69,70,66],41,[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,-3,-2,68,69,70,66],41,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[[40,71],41],[[40,66,-1],41,72],[59,41],[59,41],[59,41],[59,41],[[1,1],4],[1,56],[[40,73,64,66],41],[[40,73,64,66],41],[[40,74,-1],41,[[25,[75]]]],[[40,76,73,64,66],41],[[1,77],[[79,[41,78]]]],[[1,77],[[79,[41,78]]]],[[],[[80,[-1]]],[]],[[],[[80,[-1]]],[]],[1,3],[1,9],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,[[81,[-2]]],[[25,[58]]],82],[-1,83,[[25,[84]]]],[1,10],[[1,4],6],[[1,4],11],[1,3],[1,2],[1,9],[1,14],[[1,4],5],[[1,4],7],[1,8],[[1,4],6],[1,85],[1,[[46,[86]]]],0,[-2,[[87,[-1]]],[],[[25,[-1]]]],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-5,[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[43,[],[[42,[[41,[-1,[24,[-2,-3,-4]]]]]]]]]],0,[[[67,[-1,-2,-3]],37,-3,94],95,[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,-3,94],95,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[[-1,-6],[[36,[-2,-3,-4,-1,-5]]],39,[],[],[],[[25,[[24,[-2,-3,-4]]]]],[[32,[-1],[[31,[-5]]]]]],[[40,[98,[[97,[96]]]]],41],[-4,[[0,[-1,-2,-3]]],[],[],23,[[25,[[24,[-1,-2,-3]]]]]],[[[67,[-1,-2,-3]],37,69,70,66,-3],99,[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,69,70,66,-3],99,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[-4,[[67,[-1,-2,-3]]],[],[],23,[[32,[62],[[31,[[24,[-1,-2,-3]]]]]]]],[[-1,-6],[[36,[-2,-3,-4,-1,-5]]],39,[],[],[],[[25,[[24,[-2,-3,-4]]]]],[[32,[-1],[[31,[-5]]]]]],[[[67,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],66],103,[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,100,69,70,-3,101,[102,[-1]],66],103,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[[[52,[],[[104,[-1]],[105,[-2]]]],-1,106],41,107,[]],[[[52,[],[[104,[-1]],[105,[-2]]]],-1,106],41,107,[]],[[[67,[-1,-2,-3]],37,69,-3,106],41,[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,69,-3,106],41,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],0,[[[67,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],[],23],[[[36,[-1,-2,-3,-4,-5]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[1,55],0,0,[[-2,[46,[-1]],-4],[[109,[-1,-3,-5,-6]]],[110,93],[[25,[[98,[[97,[-1]]]]]]],[],[[32,[-1],[[31,[-3]]]]],[111,112,51,54],35],[1,[[46,[86]]]],[1,64],[1,64],[1,10],0,[[[114,[113]],113],[[115,[-1]]],116],0,0,[[-1,-2,[46,[-2]],-4],[[117,[-3,-5,-6]]],[[25,[30]]],[92,118],49,[[57,[-2],[[31,[-3]]]]],119,35],0,[-4,[[67,[-1,-2,-3]]],[],[],23,[[32,[62],[[31,[[24,[-1,-2,-3]]]]]]]],[-4,[[0,[-1,-2,-3]]],[],[],23,[[43,[],[[42,[[24,[-1,-2,-3]]]]]]]],0,0,0,0,0,[-4,[[120,[-1,-2,-3]]],[],112,23,[[25,[[24,[-1,-2,-3]]]]]],[1,64],[1,64],0,[-2,[[121,[-1,-2]]],[],[[122,[-1]]]],[[[67,[-1,-2,-3]]],[[62,[84]]],[],[],23],[[[36,[-1,-2,-3,-4,-5]]],[[62,[84]]],[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],[[[36,[-1,-2,-3,-4,-5]]],[[62,[84]]],[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],0,[[[114,[-1]],-1,-3],[[123,[-1,-2,-4]]],[92,[124,[96]],125],49,[[32,[-1],[[31,[-2]]]]],126],0,[[[67,[-1,-2,-3]]],127,[],[],23],[[[36,[-1,-2,-3,-4,-5]]],127,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],0,0,[-1,[[128,[-2]]],[[25,[60]]],129],[[[67,[-1,-2,-3]]],130,[],[],23],[[[36,[-1,-2,-3,-4,-5]]],130,[],[],23,39,[[25,[[24,[-1,-2,-3]]]]]],0,[-1,[[131,[-2,-3]]],110,34,35],0,[[[132,[-1]]],[[134,[133,-2,-3,-1]]],35,49,135],0,[[45,45],[[136,[-1,-2,-3]]],49,50,35],0,[[-1,-4],[[0,[-2,-1,-3]]],[],[],23,[[25,[[24,[-2,-1,-3]]]]]],[-1,-2,[],[]],[-1,137,[]],[-1,30,[]],0,[[-1,4,-3],[[138,[-2,-4,-5]]],[[25,[[46,[30]]]]],[],[[32,[4],[[31,[-2]]]]],139,35],0,[[-4,-5,140],[[141,[-1,-2,-3]]],[],[54,34],35,[[25,[[24,[-1,-2,-3]]]]],110],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[52,[],[[104,[-1]],[105,[-2]]]],-1,-2],[[46,[-3]]],107,[],[]],[1,64],[1,64],[-1,[[81,[-2]]],[[25,[58]]],82],0,[[[114,[-1]],-1,-3],[[144,[-1,-2,-4]]],[92,[124,[96]],125],49,[[32,[-1],[[31,[-2]]]]],126],[-1,83,[[25,[84]]]],[[[52,[],[[104,[-1]],[105,[-2]]]],-1],[[24,[-2,-3,-4]]],107,[],[],[]],[[40,66,-1],41,[[57,[40]]]],[[40,145,-1],41,[[57,[40]]]],0,0,0,0,0,[[[22,[],[[146,[-1]]]],-1],10,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[21,[-1,-2,-3]]],[[38,[37]]],49,22,23],[10,10],[147,147],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],10],[[],147],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[21,[-1,-2,-3]],37],41,49,22,23],[[[22,[],[[146,[-1]]]],-1],10,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,66,70,4,-2,-3],10,23,22,[[57,[],[[31,[147]]]]]],[[[21,[-1,-2,-3]],37,-3,-2,68,69,70,66],41,49,22,23],[59,41],[59,41],[59,41],[[147,147],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[10,77],[[79,[41,78]]]],[[147,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[21,[-1,-2,-3]],-4],[[21,[-1,-2,-3]]],[],22,23,[[25,[84]]]],[[[22,[],[[146,[-1]]]],-1],10,107],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[94,84,84,149,-1],95,[[57,[94],[[31,[95]]]]]],[[[21,[-1,-2,-3]],37,-3,94],95,49,22,23],[[69,70,4],99],[[[21,[-1,-2,-3]],37,69,70,66,-3],99,49,22,23],[-4,[[21,[-1,-2,-3]]],[],22,23,[[25,[[24,[-1,-2,-3]]]]]],[[],147],[[[21,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],66],103,49,22,23],[[[21,[-1,-2,-3]],-1],[[21,[-1,-2,-3]]],[],22,23],[[[21,[-1,-2,-3]],[46,[-1]]],[[21,[-1,-2,-3]]],[],22,23],[[[21,[-1,-2,-3]],37,69,-3,106],41,49,22,23],[[[21,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],49,22,23],[[[21,[-1,-2,-3]],-4],[[21,[-1,-2,-3]]],[],22,23,[[25,[149]]]],[[[22,[],[[146,[-1]]]],-1],10,107],0,0,[[[21,[-1,-2,-3]]],[[62,[84]]],49,22,23],[[[21,[-1,-2,-3]]],127,49,22,23],[[[21,[-1,-2,-3]],-4],[[21,[-1,-2,-3]]],[],22,23,25],[[[21,[-1,-2,-3]]],130,49,22,23],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[100,69,70,[102,[-1]],[46,[-1]],-2],103,49,[[57,[],[[31,[147]]]]]],[[[21,[-1,-2,-3]],-4],[[21,[-1,-2,-3]]],[],22,23,[[25,[84]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[150,73],[[73,113],151],[152,41],[153,153],[154,154],[151,151],[155,155],[156,156],[157,157],[158,158],[159,159],[160,160],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],152],[[],154],[[],155],[[],156],[[],157],[[],158],[[],160],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[27,[],[[161,[-1]]]],[38,[-1]]],41,[]],[[[28,[],[[104,[-1]]]],-1,-2,-3,66,70],38,107,27,[]],[[152,40,62,-1],162,[[57,[150]]]],[[[26,[-4,-1,-2,-3]],37,-3,-2,68,69,70,66],41,[],[],27,[[28,[-1,-2,-3]]]],[[160,-1],41,[[163,[151,64]]]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[153,153],4],[[159,159],4],0,0,[[150,151,-1],41,[[25,[154]]]],[[150,73,62,-1],41,[[25,[154]]]],[[150,-1],41,[[25,[160]]]],[[152,77],[[79,[41,78]]]],[[153,77],[[79,[41,78]]]],[[154,77],[[79,[41,78]]]],[[151,77],[[79,[41,78]]]],[[155,77],[[79,[41,78]]]],[[156,77],[[79,[41,78]]]],[[157,77],[[79,[41,78]]]],[[158,77],[[79,[41,78]]]],[[159,77],[[79,[41,78]]]],[[160,77],[[79,[41,78]]]],[[[26,[-4,-1,-2,-3]],77],148,164,164,[27,164],[[28,[-1,-2,-3]],164]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[165,153],[153,154],[165,154],[64,154],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[153,159],[64,159],[30,160],[45,160],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[150,113],[[[26,[-4,-1,-2,-3]],-5],[[26,[-4,-1,-2,-3]]],[],[],27,[[28,[-1,-2,-3]]],[[25,[84]]]],0,[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[150,162],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[26,[-4,-1,-2,-3]],37,-3,94],95,[],[],27,[[28,[-1,-2,-3]]]],[[73,73],151],0,0,0,0,[[[28,[],[[104,[-1]]]],-1,66,70],99,107],[[[28,[],[[104,[-1]]]],-1,66,70],99,107],[[[26,[-4,-1,-2,-3]],37,69,70,66,-3],99,[],[],27,[[28,[-1,-2,-3]]]],[[40,62],150],[[],152],[-1,151,[[57,[166]]]],[-4,[[26,[-4,-1,-2,-3]]],[],[],27,[[28,[-1,-2,-3]]]],0,[[[26,[-4,-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],66],103,[],[],27,[[28,[-1,-2,-3]]]],[153,167],0,0,[151,168],[[73,62],151],[[150,113],41],0,[[150,-1],41,[[25,[113]]]],[[150,-1],41,[[25,[145]]]],0,0,[150,62],[[[26,[-4,-1,-2,-3]]],[[62,[84]]],[],[],27,[[28,[-1,-2,-3]]]],0,[[[26,[-4,-1,-2,-3]]],127,[],[],27,[[28,[-1,-2,-3]]]],0,[[150,151,-1],41,[[25,[155]]]],0,0,[[[26,[-4,-1,-2,-3]]],130,[],[],27,[[28,[-1,-2,-3]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[151,[170,[113,169,169]]],151],[[150,145],41],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[28,[],[[104,[-1]]]],-1,171,66,70],[[41,[103,[46,[-2]]]]],107,[]],[[[28,[],[[104,[-1]]]],-1,171,66,70],[[41,[103,[46,[-2]]]]],107,[]],0,[150,113],[[[26,[-4,-1,-2,-3]],-5],[[26,[-4,-1,-2,-3]]],[],[],27,[[28,[-1,-2,-3]]],[[25,[84]]]],0,[[150,66,-2],-1,[],[[57,[150],[[31,[-1]]]]]],[[155,64],155],[[155,156],155],[[155,157],155],[[150,-2],-1,[],[[57,[150],[[31,[-1]]]]]],[[155,113],155],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[103,103],[171,171],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[[103,103],4],[[171,171],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[103,77],[[79,[41,78]]]],[[171,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[103,103],103],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[172,172],[[-1,-2],41,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[59,41],[[172,172],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[172,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[165,113,64],165],[[165,-1],165,[[43,[],[[42,[173]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[165,165],[167,167],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],0,[[165,165],4],[[167,167],4],[[165,77],[[79,[41,78]]]],[[167,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,4,[]],[[73,73],165],[[174,66],167],[165,167],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],0,[[166,175],41],[[166,73,73,113],41],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[166,73,73,73],41],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[166,151],0,[[166,73,113],41],[175,175],[[-1,-2],41,[],[]],[166,41],[-1,-2,[],[]],[-1,-2,[],[]],[[],166],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[[166,176],41],0,[[175,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[166,73],41],[[166,73],41],[[],166],[[166,73,73],41],0,[[166,73,62],41],0,[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[176,176],[[-1,-2],41,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[59,41],0,0,[[176,77],[[79,[41,78]]]],[-1,-1,[]],[175,176],[-1,-1,[]],[-1,-2,[],[]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,0,[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[177,178],[168,179],[180,181],[[168,182],[[97,[113]]]],[[179,182],[[97,[113]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[],183],[[],[[185,[184]]]],[180,186],[59,187],[180,41],[188,188],[177,177],[178,178],[[[189,[-1,-2]]],[[189,[-1,-2]]],49,49],[168,168],[179,179],[180,180],[181,181],[[[190,[-1]]],[[190,[-1]]],49],[191,191],[192,192],[193,193],[194,194],[195,195],[196,196],[197,197],[182,182],[198,198],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],188],[[],168],[[],180],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[188,188],4],[[[189,[-1,-2]],[189,[-1,-2]]],4,93,93],[[192,192],4],[[193,193],4],[[194,194],4],[[195,195],4],[[196,196],4],[[197,197],4],[[182,182],4],[[198,198],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[177,198],[[189,[182,197]]]],[[178,198],[[189,[182,197]]]],[[[190,[-1]],198],[[189,[-1,41]]],[]],[[191,198],[[189,[182,197]]]],[[177,[97,[-1]],[97,[-2]]],[[199,[-1,-2]]],[],[]],[168,[[46,[[41,[[200,[113,169]],[97,[113]]]]]]]],[179,[[46,[[41,[[200,[113,169]],[97,[113]]]]]]]],[[188,77],[[79,[41,78]]]],[[177,77],[[79,[41,78]]]],[[178,77],[[79,[41,78]]]],[[[189,[-1,-2]],77],[[79,[41,78]]],164,164],[[168,77],[[79,[41,78]]]],[[179,77],[[79,[41,78]]]],[[180,77],[[79,[41,78]]]],[[181,77],[[79,[41,78]]]],[[192,77],[[79,[41,78]]]],[[193,77],[[79,[41,78]]]],[[194,77],[[79,[41,78]]]],[[195,77],[[79,[41,78]]]],[[196,77],[[79,[41,78]]]],[[197,77],[[79,[41,78]]]],[[182,77],[[79,[41,78]]]],[[198,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[177,178],[-1,-1,[]],[[[189,[-1,-2]]],-1,49,[]],[-1,-1,[]],[-1,-1,[]],[168,179],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,168,[[43,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]]],[-1,180,[[43,[],[[42,[179]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,197],[59,182],[[201,182],[[97,[113]]]],[[202,182],[[97,[113]]]],[[168,182],[[97,[113]]]],[[179,182],[[97,[113]]]],[[180,59],179],[[181,59],179],[[203,197],[[200,[113,169]]]],[[168,197],[[200,[113,169]]]],[[179,197],[[200,[113,169]]]],[[[190,[-1]],197],[[200,[113,169]]],204],[[203,182],[[200,[113,169]]]],[[168,182],[[200,[113,169]]]],[[179,182],[[200,[113,169]]]],[[[190,[-1]],182],[[200,[113,169]]],204],[[[189,[-1,-2]],-3],41,39,39,205],[[196,-1],41,205],[[197,-1],41,205],[[182,-1],41,205],[[198,-1],41,205],[168,206],[179,206],[[[190,[-1]]],207,[]],[[168,197],[[200,[113,169]]]],[[168,182],[[200,[113,169]]]],[[179,197],[[200,[113,169]]]],[[179,182],[[200,[113,169]]]],[[[190,[-1]],182],-1,[]],[180,[[208,[59]]]],[181,[[208,[59]]]],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[177,209],[168,210],[179,210],[179,210],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[189,[-1,-2]]],4,[],[]],[179,4],[180,4],[181,4],[[195,211],4],[194,4],[[195,211],4],[194,4],[177,209],[178,209],[168,210],[179,210],[180,212],[181,212],[[[190,[-1]]],[[213,[-1]]],[]],[191,214],[168,215],[179,215],0,0,[168,[[46,[[41,[[200,[113,169]],[97,[113]]]]]]]],[179,[[46,[[41,[[200,[113,169]],[97,[113]]]]]]]],[180,59],[181,59],0,[[[97,[113]],59],202],[[],168],[[],180],[[177,198],[[46,[198]]]],[[178,198],[[46,[198]]]],[[177,198],198],[[178,198],198],[201,59],[202,59],[168,59],[179,59],[197,59],[182,59],[194,194],0,0,[[[190,[-1]]],[[216,[-1]]],204],[[177,[97,[-1]],[97,[-2]]],[[217,[-1,-2]]],[],[]],0,0,0,[204,[[200,[113,169]]]],[[180,59,59,59],41],[168,[[219,[218]]]],[179,[[219,[218]]]],[[],[[220,[184]]]],0,[[[189,[-1,-2]]],-1,49,[]],[194,113],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[197,59],[182,59],[198,59],0,[[[189,[[200,[113,169]],[200,[113,169]]]],-1],[[189,[[200,[113,169]],[200,[113,169]]]]],[[221,[113]]]],[[168,-1],168,[[221,[113]]]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[59,168],[[59,59,59],180],[[[189,[-1,-2]]],[[189,[[200,[113,169]],[200,[113,169]]]]],204,204],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[222,[200,[113,169]],113,196,[97,[113]]],41],[[[185,[-1]],[200,[113,169]],113,196],41,222],[[222,[200,[113,169]],[223,[113,169]],[224,[113]],196,[97,[113]]],41],[[[185,[-1]],[200,[113,169]],[223,[113,169]],[224,[113]],196],41,222],[[222,[225,[113]],[97,[113]]],[[41,[182,182]]]],[[[185,[-1]],[225,[113]]],[[41,[182,182]]],222],[[222,[200,[113,169]],[97,[113]]],182],[[[185,[-1]],[200,[113,169]]],182,222],[[222,[190,[[200,[113,169]]]],[97,[113]]],41],[[226,[190,[[200,[113,169]]]]],41],[[[185,[-1]],[190,[[200,[113,169]]]]],41,222],[[222,[227,[113,169]],196,[97,[113]]],41],[[[185,[-1]],[227,[113,169]],196],41,222],[[222,[227,[113,169]],228,196,[97,[113]]],41],[[[185,[-1]],[227,[113,169]],228,196],41,222],[[[220,[-1]],[200,[113,169]],[223,[113,169]],[224,[113]],[224,[113]]],41,222],[[226,[223,[113,169]],[224,[113]],188,[200,[113,169]]],41],[[[220,[-1]],[223,[113,169]],[224,[113]],188,[200,[113,169]]],41,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[222,[200,[113,169]],[97,[113]]],182],[[[229,[-1]],[200,[113,169]],[97,[113]]],182,222],[[[230,[-1,-2]],[200,[113,169]],[97,[113]]],182,222,[[221,[113]]]],[[[185,[-1]],[200,[113,169]]],182,222],[[[185,[-1]],[200,[113,169]],[97,[113]]],182,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[[232,[],[[231,[-1]]]]],-1,[]],[[[229,[-1]]],[],232],[[[229,[-1]]],[],[232,222]],[[[230,[-1,-2]]],[],232,[]],[[[220,[-1]]],[],[232,222]],[[[220,[-1]]],[],[222,232]],[[[185,[-2]]],-1,[],[[232,[],[[231,[-1]]]],222]],[[[185,[-1]]],[],[222,232]],[228,228],[[[185,[-1]]],[[185,[-1]]],[49,222]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[226,41],[222,41],[[[220,[-1]]],41,222],[[[220,[-1]]],41,222],[[[185,[-1]]],41,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[222,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]],[200,[113,169]],[200,[113,169]]],41],[[[229,[-1]],[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222],[[[230,[-1,-2]],[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222,[[221,[113]]]],[[[220,[-1]],[200,[113,169]],[200,[113,169]],[200,[113,169]]],41,222],[[[220,[-1]],[200,[113,169]],[200,[113,169]],[200,[113,169]]],182,222],[[[185,[-1]],[200,[113,169]],[200,[113,169]],[200,[113,169]]],182,222],[[[185,[-1]],[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222],[[[220,[-1]]],[[200,[113,169]]],222],[[],228],[[],[[185,[-1]]],[222,107]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[[222,4],41],[[[229,[-1]],4],41,222],[[[230,[-1,-2]],4],41,222,[[221,[113]]]],[[[185,[-1]],4],41,222],[[[185,[-1]],4],41,222],[[228,228],4],[[[185,[-1]],[185,[-1]]],4,[93,222]],[[222,[189,[[41,[[200,[113,169]],[97,[113]]]],[200,[113,169]]]]],41],[[[185,[184]],[97,[179]]],41],[[222,113],[[229,[222]]]],[[[220,[-1]],113],[[220,[[229,[-1]]]]],222],[[[185,[-1]],113],[[185,[[229,[-1]]]]],222],[[228,77],[[79,[41,78]]]],[[228,77],[[79,[41,78]]]],[[[185,[-1]],77],[[79,[41,78]]],[164,222]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[185,[-1]],-2],41,[39,222],205],[[226,113],41],[[[220,[-1]],113],41,222],[[],59],[[],59],[[],59],[[],59],[[],59],[[[185,[-1]]],-1,222],[[[185,[-1]]],-1,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[185,[-1]]],-1,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[222,[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]]],41],[[[229,[-1]],[200,[113,169]],[97,[113]]],182,222],[[[230,[-1,-2]],[200,[113,169]],[97,[113]]],182,222,[[221,[113]]]],[[[220,[-1]],[200,[113,169]]],41,222],[[[220,[-1]],[200,[113,169]]],182,222],[[[185,[-1]],[200,[113,169]]],182,222],[[[185,[-1]],[200,[113,169]],[97,[113]]],182,222],[[226,[200,[113,169]]],41],[[[220,[-1]],[200,[113,169]]],41,222],[[[220,[-1]],[200,[113,169]]],182,222],[[-1,113],[[229,[-1]]],222],[[-1,-2],[[230,[-1,-2]]],[],[]],[-1,[[220,[-1]]],222],[113,228],[[],[[185,[-1]]],[107,222]],[222,59],[[[229,[-1]]],59,222],[[[230,[-1,-2]]],59,222,[[221,[113]]]],[[[185,[-1]]],59,222],[[228,228],[[46,[233]]]],[[222,[189,[[200,[113,169]],[200,[113,169]]]],[97,[113]]],41],[[[185,[-1]],[189,[[200,[113,169]],[200,[113,169]]]]],41,222],[[222,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]],[200,[113,169]]],41],[[[229,[-1]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222],[[[230,[-1,-2]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222,[[221,[113]]]],[[[220,[-1]],[200,[113,169]],[200,[113,169]]],182,222],[[[220,[-1]],[200,[113,169]],[200,[113,169]]],41,222],[[[185,[-1]],[200,[113,169]],[200,[113,169]],[97,[113]]],182,222],[[[185,[-1]],[200,[113,169]],[200,[113,169]]],182,222],[[226,[223,[113,169]],[224,[113]],188,[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]],[224,[113]],188,[223,[113,169]]],41,222],[[226,[223,[113,169]],[223,[113,169]],[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]],[223,[113,169]],[223,[113,169]]],41,222],[[226,113],41],[[[220,[-1]],113],41,222],[[226,[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]]],41,222],[[226,[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]]],41,222],[[226,[223,[113,169]],[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]],[223,[113,169]]],41,222],[[226,113],41],[[[220,[-1]],113],41,222],[[222,59,59],41],[[226,59,59],41],[[[229,[-1]],59,59],41,222],[[[230,[-1,-2]],59,59],41,222,[[221,[113]]]],[[[220,[-1]],59,59],41,222],[[[220,[-1]],59,59],41,222],[[[185,[-1]],59,59],41,222],[[[185,[-1]],59,59],41,222],[[[229,[-1]],113],41,222],[[[230,[-1,-2]],-2],41,[],[]],[[[220,[[230,[-1,-2]]]],-2],41,222,[[221,[113]]]],[[226,[200,[113,169]],[200,[113,169]]],41],[[[220,[-1]],[200,[113,169]],[200,[113,169]]],41,222],[[226,[200,[113,169]]],41],[[[220,[-1]],[200,[113,169]]],41,222],[[226,[223,[113,169]],[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]],[223,[113,169]]],41,222],[[226,[223,[113,169]]],41],[[[220,[-1]],[223,[113,169]]],41,222],[-1,-2,[],[]],[-1,-2,[],[]],[-1,137,[]],[-1,30,[]],0,0,[[222,-1],[[230,[222,-1]]],[[221,[113]]]],[[[220,[-1]],-2],[[220,[[230,[-1,-2]]]]],222,[[221,[113]]]],[[[185,[-1]],-2],[[185,[[230,[-1,-2]]]]],222,[[221,[113]]]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[226,113],41],[[[220,[-1]],113],41,222],[[59,59],[[185,[-1]]],[107,222]],[222,[[220,[222]]]],[[[185,[-1]]],[[220,[-1]]],222],[-1,[[185,[-1]]],222],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[183,182],198],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[183,177],[[[217,[-1,-2]]],[[217,[-1,-2]]],49,49],[183,183],[[[199,[-1,-2]]],[[199,[-1,-2]]],49,49],[209,209],[[[234,[-1,-2]]],[[234,[-1,-2]]],49,49],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[183,197,197,182],198],[[],183],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[[183,4],[[46,[198]]]],[[[217,[-1,-2]]],[[199,[-1,-2]]],[],[]],[[[217,[-1,-2]],77],[[79,[41,78]]],164,164],[[183,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[217,[-1,-2]],197],[[200,[113,169]]],204,204],[[[217,[-1,-2]],182],[[200,[113,169]]],204,204],[[[217,[-1,-2]],197],-2,[],[]],[[[217,[-1,-2]],182],-1,[],[]],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[217,[-1,-2]]],209,[],[]],[[183,182],198],[[],183],[[[199,[-1,-2]]],[[46,[[189,[-1,-2]]]]],[],[]],[209,[[46,[[189,[182,197]]]]]],[[[234,[-1,-2]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],204,204],[[[199,[-1,-2]]],[[234,[-1,-2]]],204,204],[[183,197,182],198],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[59,183],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[235,[-1]]],-1,236],0,[[[237,[-1]]],[[225,[-1]]],236],[[[237,[-1]]],[[225,[-1]]],236],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[224,[-1]],[224,[-1]]],[[224,[-1]]],[92,[238,[],[[31,[]]]]]],[[[224,[-1]],[224,[-1]]],[[224,[-1]]],[[238,[],[[31,[]]]]]],[[[224,[-1]],[224,[-1]]],41,239],[[[241,[],[[240,[-1]]]],-1],[[241,[],[[240,[-1]]]]],236],[[[242,[-1]],-1],[[242,[-1]]],236],[[[242,[-1]],-1],[[242,[-1]]],236],[[[243,[-1]],-1],[[243,[-1]]],236],[[[243,[-1]],-1],[[243,[-1]]],236],[[[225,[-1]],-1],[[225,[-1]]],236],[[[225,[-1]],-1],[[225,[-1]]],236],[[[244,[-1]],-1],[[244,[-1]]],236],[[[244,[-1]],-1],[[244,[-1]]],236],0,[[[224,[-1]],[224,[-1]]],[[224,[-1]]],[[245,[],[[31,[]]]],[246,[],[[31,[]]]],[238,[],[[31,[]]]],[247,[],[[31,[]]]],248,249,92]],[[],-1,250],[[[224,[-1]],[224,[-1]],-1],4,[]],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[[235,[-1]]],-1,236],0,[[[237,[-1]]],[[225,[-1]]],236],[[[243,[-1]]],[[225,[-1]]],236],[[[244,[-1]]],[[225,[-1]]],236],[[[237,[-1]]],[[225,[-1]]],236],[[[241,[],[[240,[-1]]]],-1],[[241,[],[[240,[-1]]]]],236],[[[242,[-1]],-1],[[242,[-1]]],236],[[[242,[-1]],-1],[[242,[-1]]],236],[[[243,[-1]],-1],[[243,[-1]]],236],[[[243,[-1]],-1],[[243,[-1]]],236],[[[225,[-1]],-1],[[225,[-1]]],236],[[[225,[-1]],-1],[[225,[-1]]],236],[[[244,[-1]],-1],[[244,[-1]]],236],[[[244,[-1]],-1],[[244,[-1]]],236],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[242,[-1]]],[[227,[-1,169]]],236],[[[243,[-1]]],[[227,[-1,169]]],236],[[[225,[-1]]],[[227,[-1,169]]],236],[[[244,[-1]]],[[227,[-1,169]]],236],[[[237,[-1]]],[[227,[-1,169]]],236],[[[242,[-1]]],[[41,[-1,-1]]],236],[[[243,[-1]]],[[41,[-1,-1]]],236],[[[244,[-1]]],[[41,[-1,-1]]],236],[[[237,[-1]]],[[41,[-1,-1]]],236],[[[242,[-1]]],[[41,[-1,-1]]],236],[[[243,[-1]]],[[41,[-1,-1]]],236],[[[244,[-1]]],[[41,[-1,-1]]],236],[[[237,[-1]]],[[41,[-1,-1]]],236],[[[244,[-1]]],[[237,[-1]]],236],[[[235,[-1]]],-1,236],0,[[[237,[-1]]],[[225,[-1]]],236],[[[224,[-1]]],[[224,[-2]]],[251,92],251],[[[237,[-1]]],[[225,[-1]]],236],0,[[[200,[-1,169]],-1],[[242,[-1]]],236],[[[225,[-1]],[227,[-1,169]]],[[46,[[225,[-1]]]]],236],[[[225,[-1]],[208,[-1]]],[[46,[[225,[-1]]]]],236],[[[225,[-1]],[208,[-1]]],[[46,[[225,[-1]]]]],236],[[[242,[-1]]],[[242,[-1]]],49],[[[252,[-1]]],[[252,[-1]]],49],[[[243,[-1]]],[[243,[-1]]],49],[[[225,[-1]]],[[225,[-1]]],49],[[[253,[-1]]],[[253,[-1]]],49],[[[235,[-1]]],[[235,[-1]]],49],[[[244,[-1]]],[[244,[-1]]],49],[[[237,[-1]]],[[237,[-1]]],49],[[[224,[-1]]],[[224,[-1]]],49],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[[225,[-1]],[200,[-1,169]]],[[200,[-1,169]]],236],[[[244,[-1]],[200,[-1,169]]],-1,236],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[237,[-1]],[200,[-1,169]]],4,236],[[[225,[-1]],[225,[-1]]],4,236],0,0,0,0,[[[243,[-1]],[243,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[243,[-1]],[243,[-1]]],[[254,[[41,[-1,-1]]]]],236],[[],[[224,[-1]]],107],[-1,[[224,[-1]]],255],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[241,[],[[240,[-1]]]],-1],[[223,[-1,169]]],236],[[[242,[-1]],-1],[[223,[-1,169]]],236],[[[243,[-1]],-1],[[223,[-1,169]]],236],[[[243,[-1]],-1],[[223,[-1,169]]],236],[[[225,[-1]],-1],[[223,[-1,169]]],236],[[[244,[-1]],-1],[[223,[-1,169]]],236],[[[244,[-1]],-1],[[223,[-1,169]]],236],[[[225,[-1]],[200,[-1,169]]],-1,236],[[[253,[-1]],[200,[-1,169]]],-1,236],[[[235,[-1]],[200,[-1,169]]],-1,236],[[[244,[-1]],[200,[-1,169]]],-1,236],[[[224,[-1]],[224,[-1]]],-1,[[256,[],[[31,[]]]]]],[[[224,[-1]],-1],[[224,[-1]]],[[256,[],[[31,[]]]]]],[[[224,[-1]],-1],41,257],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[243,[-1]],-1,[200,[-1,169]]],[[243,[-1]]],236],[[[244,[-1]],-1,[200,[-1,169]]],[[244,[-1]]],236],[[[243,[-1]],-1,[200,[-1,169]],-1],[[243,[-1]]],236],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[242,[-1]]],[[224,[-1]]],236],[236,236],[[[242,[-1]],[242,[-1]]],4,93],[[[252,[-1]],[252,[-1]]],4,93],[[[243,[-1]],[243,[-1]]],4,93],[[[225,[-1]],[225,[-1]]],4,93],[[[235,[-1]],[235,[-1]]],4,93],[[[244,[-1]],[244,[-1]]],4,93],[[[237,[-1]],[237,[-1]]],4,93],[[[224,[-1]],[224,[-1]]],4,93],[[[253,[-1]]],[[235,[-1]]],236],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[[242,[-1]]],[[227,[-1,169]]],236],[[[243,[-1]]],[[227,[-1,169]]],236],[[[244,[-1]]],[[227,[-1,169]]],236],[[[242,[-1]]],[[41,[-1,-1]]],236],[[[243,[-1]]],[[41,[-1,-1]]],236],[[[244,[-1]]],[[41,[-1,-1]]],236],[[[242,[-1]]],[[41,[-1,-1]]],236],[[[243,[-1]]],[[41,[-1,-1]]],236],[[[244,[-1]]],[[41,[-1,-1]]],236],[[[243,[-1]]],[[41,[[235,[-1]],[235,[-1]]]]],236],[[[244,[-1]]],[[41,[[235,[-1]],[235,[-1]]]]],236],0,[[[242,[-1]],-1],[[258,[-1]]],236],[[[243,[-1]],-1],[[259,[-1]]],236],[[[244,[-1]],-1],[[260,[-1]]],236],[[[244,[-1]],-1],[[261,[-1]]],236],[[[244,[-1]],-1],-1,236],[[[241,[],[[240,[-1]]]]],[[241,[],[[240,[-1]]]]],236],[[[242,[-1]]],[[242,[-1]]],236],[[[242,[-1]]],[[242,[-1]]],236],[[[243,[-1]]],[[243,[-1]]],236],[[[243,[-1]]],[[243,[-1]]],236],[[[225,[-1]]],[[225,[-1]]],236],[[[225,[-1]]],[[225,[-1]]],236],[[[244,[-1]]],[[244,[-1]]],236],[[[244,[-1]]],[[244,[-1]]],236],[[[242,[-1]],77],[[79,[41,78]]],164],[[[252,[-1]],77],[[79,[41,78]]],164],[[[243,[-1]],77],[[79,[41,78]]],164],[[[225,[-1]],77],[[79,[41,78]]],164],[[[253,[-1]],77],[[79,[41,78]]],164],[[[235,[-1]],77],[[79,[41,78]]],164],[[[244,[-1]],77],[[79,[41,78]]],164],[[[237,[-1]],77],[[79,[41,78]]],164],[[[224,[-1]],77],[[79,[41,78]]],164],[[[242,[-1]],-2],41,236,[[163,[[243,[-1]]]]]],[[[252,[-1]],-2],41,236,[[163,[[243,[-1]]]]]],[[[242,[-1]],-1,-2],41,236,[[163,[[225,[-1]]]]]],[[[252,[-1]],-1,-2],41,236,[[163,[[225,[-1]]]]]],[[[243,[-1]],-1,-2],41,236,[[163,[[225,[-1]]]]]],[[[244,[-1]],-1,-2],41,236,[[163,[[225,[-1]]]]]],[[[241,[],[[240,[-1]]]],-1,163],41,236],[[[242,[-1]],163],41,236],[[[242,[-1]],-1,-2],41,236,[[163,[[225,[-1]],[208,[-1]]]]]],[[[252,[-1]],-1,-2],41,236,[[163,[[225,[-1]],[208,[-1]]]]]],[[[243,[-1]],163],41,236],[[[243,[-1]],-1,-2],41,236,[[163,[[225,[-1]],[208,[-1]]]]]],[[[225,[-1]],163],41,236],[[[244,[-1]],163],41,236],[[[244,[-1]],-1,-2],41,236,[[163,[[225,[-1]],[208,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[-1]]]],[[[242,[-1]],-2],41,236,[[163,[-1]]]],[[[243,[-1]],-2],41,236,[[163,[-1]]]],[[[242,[-1]],-2],41,236,[[163,[-1]]]],[[[243,[-1]],-2],41,236,[[163,[-1]]]],[[[243,[-1]],-2],41,236,[[163,[[243,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[244,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[[242,[-1]],-2],41,236,[[163,[[244,[-1]]]]]],[[[252,[-1]],-2],41,236,[[163,[[244,[-1]]]]]],[[[243,[-1]],-1,-2],41,236,[[163,[[244,[-1]]]]]],[[[242,[-1]],-2],41,236,[[163,[[244,[-1]],[208,[-1]]]]]],[[[252,[-1]],-2],41,236,[[163,[[244,[-1]],[208,[-1]]]]]],[[[243,[-1]],-1,-2],41,236,[[163,[[244,[-1]],[208,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[[243,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[244,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[[243,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[244,[-1]]]]]],[[[243,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[[244,[-1]],-2],41,236,[[163,[[208,[-1]]]]]],[[],[[224,[-1]]],[249,[238,[],[[31,[]]]]]],[[],[[224,[-1]]],[249,[238,[],[[31,[]]]]]],[[],[[224,[-1]]],[249,[238,[],[[31,[]]]]]],[[[241,[],[[240,[-1]]]]],[[200,[-1,169]]],236],[[[242,[-1]]],[[200,[-1,169]]],236],[[[252,[-1]]],[[242,[-1]]],236],[[[242,[-1]]],[[200,[-1,169]]],236],[-1,-1,[]],[-1,-1,[]],[[[243,[-1]]],[[200,[-1,169]]],236],[[[243,[-1]]],[[200,[-1,169]]],236],[-1,-1,[]],[[[225,[-1]]],[[200,[-1,169]]],236],[[[225,[-1]]],[[200,[-1,169]]],236],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[244,[-1]]],[[200,[-1,169]]],236],[[[244,[-1]]],[[200,[-1,169]]],236],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],0,0,0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[252,[-1]]],[[242,[-1]]],236],[[[224,[-1]]],-1,[]],[[[242,[-1]],-1],[[224,[-1]]],236],[[[224,[-1]],-2],41,39,205],0,[[[225,[-1]],-1],[[46,[[200,[-1,169]]]]],236],[[[225,[-1]],-1],[[46,[-1]]],236],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[[225,[-1]],[225,[-1]]],[[46,[[200,[-1,169]]]]],236],[[[253,[-1]],[253,[-1]]],[[46,[[200,[-1,169]]]]],236],[[[225,[-1]],[225,[-1]]],[[46,[[41,[-1,-1]]]]],236],[[[225,[-1]],[225,[-1]]],4,236],[[[237,[-1]],[237,[-1]]],4,236],[[[253,[-1]],[227,[-1,169]]],4,236],[[[225,[-1]],[253,[-1]]],4,236],[[[237,[-1]],[225,[-1]]],4,236],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[235,[-1]]],[[235,[-1]]],236],[[[244,[-1]],-1],4,236],[[[224,[-1]]],4,262],[[[235,[-1]]],4,236],[[[243,[-1]],-1],4,236],[[[244,[-1]],-1],4,236],[[[243,[-1]]],4,236],[[[244,[-1]]],4,236],[[[243,[-1]],-1],4,236],[[[252,[-1]]],4,236],[[[235,[-1]]],4,236],[[[243,[-1]]],4,236],[[[244,[-1]]],4,236],[[[243,[-1]]],4,236],[[[244,[-1]]],4,236],0,[[[225,[-1]]],-1,236],[[[244,[-1]]],-1,236],[[[224,[-1]],[224,[-1]],-1],[[224,[-1]]],[[245,[],[[31,[]]]],[246,[],[[31,[]]]],[238,[],[[31,[]]]],[247,[],[[31,[]]]],248,249,92]],[[[225,[-1]],[253,[-1]]],[[46,[[200,[-1,169]]]]],236],[[[225,[-1]],[253,[-1]]],[[46,[-1]]],236],[[[243,[-1]],[253,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[244,[-1]],[253,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[243,[-1]],[253,[-1]]],[[254,[-1]]],236],[[[244,[-1]],[253,[-1]]],[[254,[-1]]],236],[[[243,[-1]],[225,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[244,[-1]],[225,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[243,[-1]],[225,[-1]]],[[254,[[41,[-1,-1]]]]],236],[[[244,[-1]],[225,[-1]]],[[254,[[41,[-1,-1]]]]],236],[[[244,[-1]]],[[46,[-1]]],236],[[[244,[-1]]],[[46,[-1]]],236],0,0,0,0,0,0,0,[[[225,[-1]]],[[200,[-1,169]]],236],0,[[[224,[-1]],-1],[[224,[-1]]],[[247,[],[[31,[]]]]]],[[[224,[-1]],-1],41,263],[[[224,[-1]]],[[224,[-1]]],[[264,[],[[31,[]]]]]],[[-1,-1,-1],[[235,[-1]]],236],[[[235,[-1]]],[[223,[-1,169]]],236],[[[243,[-1]],-1],61,236],[[[235,[-1]],-1],[[235,[-1]]],236],[[[225,[-1]],[253,[-1]]],4,236],[[[225,[-1]],[225,[-1]]],4,236],[[[235,[-1]],[200,[-1,169]]],[[235,[-1]]],236],[[[224,[-1]],[224,[-1]]],[[46,[233]]],125],[[],[[224,[-1]]],[249,[238,[],[[31,[]]]]]],[[-1,-1],[[200,[-1,169]]],[]],0,[[[224,[-1]]],[[224,[-1]]],[[246,[],[[31,[]]]],[245,[],[[31,[]]]],[238,[],[[31,[]]]],265,249,125,92]],[[[235,[-1]],[200,[-1,169]]],[[200,[-1,169]]],236],0,[[[243,[-1]],[244,[-1]]],[[254,[[200,[-1,169]]]]],236],[[[243,[-1]],[244,[-1]]],[[254,[[41,[-1,-1]]]]],236],[-1,[[224,[-1]]],[]],0,0,0,[[[241,[],[[240,[-1]]]],-1],[[200,[-1,169]]],236],[[[242,[-1]],-1],[[200,[-1,169]]],236],[[[242,[-1]],-1],[[200,[-1,169]]],236],[[[243,[-1]],-1],[[200,[-1,169]]],236],[[[243,[-1]],-1],[[200,[-1,169]]],236],[[[225,[-1]],-1],[[200,[-1,169]]],236],[[[225,[-1]],-1],[[200,[-1,169]]],236],[[[244,[-1]],-1],[[200,[-1,169]]],236],[[[244,[-1]],-1],[[200,[-1,169]]],236],[[[242,[-1]],-1],[[223,[-1,169]]],236],[[[225,[-1]],-1],41,236],[[[224,[-1]]],[[224,[-1]]],[[246,[],[[31,[]]]],[245,[],[[31,[]]]],[238,[],[[31,[]]]],265,249,125,92]],[[[253,[-1]],[200,[-1,169]]],-1,236],[[[235,[-1]],[200,[-1,169]]],-1,236],[[[224,[-1]]],[[41,[-1,-1]]],266],[[-1,-1],[[267,[-1,169]]],[]],[[[243,[-1]],-1],[[254,[-1]]],236],[[[225,[-1]],-1],-1,236],[[[243,[-1]],-1],[[254,[-1]]],236],[[[225,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[235,[-1]],-1],[[46,[-1]]],236],[[[225,[-1]],-1],-1,236],[[[235,[-1]],-1],[[46,[-1]]],236],[[[241,[],[[240,[-1]]]],-1],[[41,[[241,[],[[240,[-1]]]],[241,[],[[240,[-1]]]]]]],236],[[[242,[-1]],-1],[[41,[[242,[-1]],[242,[-1]]]]],236],[[[242,[-1]],-1],[[41,[[242,[-1]],[242,[-1]]]]],236],[[[243,[-1]],-1],[[41,[[243,[-1]],[243,[-1]]]]],236],[[[243,[-1]],-1],[[41,[[243,[-1]],[243,[-1]]]]],236],[[[225,[-1]],-1],[[41,[[225,[-1]],[225,[-1]]]]],236],[[[225,[-1]],-1],[[41,[[225,[-1]],[225,[-1]]]]],236],[[[244,[-1]],-1],[[41,[[244,[-1]],[244,[-1]]]]],236],[[[244,[-1]],-1],[[41,[[244,[-1]],[244,[-1]]]]],236],[[[225,[-1]],-1],[[41,[[225,[-1]],[225,[-1]]]]],236],[[[241,[],[[240,[-1]]]],[208,[-1]]],[[241,[],[[240,[-1]]]]],236],[[[242,[-1]],[208,[-1]]],[[242,[-1]]],236],[[[242,[-1]],[208,[-1]]],[[242,[-1]]],236],[[[243,[-1]],[208,[-1]]],[[243,[-1]]],236],[[[243,[-1]],[208,[-1]]],[[243,[-1]]],236],[[[225,[-1]],[208,[-1]]],[[225,[-1]]],236],[[[225,[-1]],[208,[-1]]],[[225,[-1]]],236],[[[244,[-1]],[208,[-1]]],[[244,[-1]]],236],[[[244,[-1]],[208,[-1]]],[[244,[-1]]],236],[[[225,[-1]],[200,[-1,169]]],-1,236],[[[253,[-1]],[200,[-1,169]]],-1,236],[[[244,[-1]],[200,[-1,169]]],-1,236],[[[225,[-1]]],-1,236],0,[[[224,[-1]],[224,[-1]]],[],[[246,[],[[31,[]]]]]],[[[224,[-1]],[224,[-1]]],41,268],[-2,[[224,[-1]]],[238,92,265],[[269,[],[[42,[[224,[-1]]]]]]]],[-2,[[224,[-1]]],[238,265],[[269,[],[[42,[[224,[-1]]]]]]]],0,0,[[[235,[-1]]],[[223,[-1,169]]],236],[[[241,[],[[240,[-1]]]]],[[200,[-1,169]]],236],[[[242,[-1]]],[[200,[-1,169]]],236],[[[242,[-1]]],[[200,[-1,169]]],236],[[[243,[-1]]],[[200,[-1,169]]],236],[[[243,[-1]]],[[200,[-1,169]]],236],[[[225,[-1]]],[[200,[-1,169]]],236],[[[225,[-1]]],[[200,[-1,169]]],236],[[[244,[-1]]],[[200,[-1,169]]],236],[[[244,[-1]]],[[200,[-1,169]]],236],0,0,0,0,[[[252,[-1]]],[[242,[-1]]],236],[[[244,[-1]]],[[243,[-1]]],236],[[[224,[-1]]],-1,255],[[[243,[-1]]],[[243,[113]]],236],[[[225,[-1]]],[[225,[113]]],236],[[[253,[-1]]],[[253,[113]]],236],[[[244,[-1]]],[[244,[113]]],236],[[[224,[-1]]],[[224,[113]]],[251,92]],[[[243,[-1]]],[[243,[270]]],236],[[[225,[-1]]],[[225,[270]]],236],[[[253,[-1]]],[[253,[270]]],236],[[[244,[-1]]],[[244,[270]]],236],[[[224,[-1]]],[[224,[270]]],[251,92]],[[[225,[-1]]],[[253,[-1]]],236],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[243,[-1]]],[[244,[-1]]],236],[[[243,[-1]]],-1,236],[[[242,[-1]]],[[252,[-1]]],236],[[[225,[-1]]],[[223,[-1,169]]],236],0,[[[237,[-1]],-2],[[237,[-1]]],236,[[221,[-1]]]],[[[243,[-1]],-2],[[243,[-1]]],236,[[221,[-1]]]],[[[225,[-1]],-2],[[225,[-1]]],236,[[221,[-1]]]],[[[244,[-1]],-2],[[244,[-1]]],236,[[221,[-1]]]],[[[225,[-1]],[223,[-1,169]]],[[225,[-1]]],236],[[[224,[-1]]],[[46,[[224,[-2]]]]],[251,92],251],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[[],[[224,[-1]]],[249,[238,[],[[31,[]]]]]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,[113,236],[[-1,-1],[[223,[-1,169]]],[]],0,[[[225,[-1]],-1],[[46,[[200,[-1,169]]]]],236],[[[225,[-1]],-1],[[46,[-1]]],236],0,[[[241,[],[[240,[-1]]]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],0,0,0,[[[243,[-1]]],-1,236],[[[244,[-1]]],-1,236],[[[243,[-1]]],-1,236],[[[244,[-1]]],-1,236],0,0,[[[241,[],[[240,[-1]]]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[242,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[243,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[225,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],[[[244,[-1]],-1],-1,236],0,0,0,[[[243,[-1]]],-1,236],[[[244,[-1]]],-1,236],[[[243,[-1]]],-1,236],[[[244,[-1]]],-1,236],[[],[[224,[-1]]],265],0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[59,41],0,[-1,-1,[]],0,[-1,-1,[]],[-1,-2,[],[]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[258,[-1]]],[[46,[[200,[-1,169]]]]],236],0,0,0,0,0,0,[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[[254,[-1]]],[[97,[-1]]],[]],[[[254,[-1]]],[],[]],[[[254,[-1]]],[[97,[-1]]],[]],[271,45],[[[254,[-1]]],[],[]],[[[254,[-1]]],[[97,[-1]]],[]],[271,45],[[[254,[-1]]],[[97,[-1]]],[]],[271,45],[-1,-2,[],[]],[[[254,[-1]]],[[97,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[271,45],[-1,-2,[],[]],[-1,-2,[],[]],[[[254,[-1]]],[[97,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[271,45],[-1,-2,[],[]],[-1,-2,[],[]],[[[254,[-1]]],59,[]],[271,59],[[[254,[-1]]],41,[]],[271,41],[[[254,[-1]]],[[254,[-1]]],49],[[[272,[-1]]],[[272,[-1]]],49],[271,271],[[[273,[-1]]],[[273,[-1]]],49],[[[254,[-1]],[254,[-1]]],41,49],[[271,271],41],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[[254,[-1]],[254,[-1]]],233,274],[[271,271],233],[[[273,[-1]],[273,[-1]]],233,274],[[-1,-2],233,[],[]],[[-1,-2],233,[],[]],[[-1,-2],233,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[254,[-1]]],[]],[[],271],[59,-1,[]],[[[254,[-1]]],[],[]],[59,-1,[]],[59,-1,[]],[271,45],[59,-1,[]],[59,-1,[]],[[[254,[-1]]],[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[271,45],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[254,[-1]],-2],[[275,[-1]]],[],[[276,[59]]]],[[[254,[-1]]],41,[]],[59,41],[59,41],[[[272,[-1]]],41,[]],[59,41],[[[275,[-1]]],41,[]],[59,41],[59,41],[[[273,[-1]]],-1,[]],[[[254,[-1]],[254,[-1]]],4,93],[[[254,[-1]],[97,[-1]]],4,93],[[271,45],4],[[271,271],4],[[[273,[-1]],[273,[-1]]],4,93],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[[254,[-1]],-2],41,[],[[43,[],[[42,[-1]]]]]],[[[254,[96]]],[[79,[41,277]]]],[[[254,[-1]],77],[[79,[41,78]]],164],[[[272,[-1]],77],[[79,[41,78]]],164],[[271,77],[[79,[41,78]]]],[[271,77],[[79,[41,78]]]],[[[273,[-1]],77],[[79,[41,78]]],[]],[[[273,[-1]],77],[[79,[41,78]]],[]],[[[278,[-1]]],[[254,[-1]]],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[45,[[79,[271,[273,[45]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[278,[96]]],[[79,[271,279]]]],[-2,[[254,[-1]]],[],[[43,[],[[42,[-1]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[45,[[79,[271]]]],[[[254,[-1]],[254,[-1]]],4,125],[[271,271],4],[[271,45],4],[[[254,[-1]],[254,[-1]]],4,125],[[271,45],4],[[271,271],4],[[[254,[-1]],-2],41,39,205],[[271,-1],41,205],[[],59],[[],59],[[],59],[[],59],[[],59],[[[254,[-1]],59,-1],41,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[254,[-1]]],[[79,[[278,[-1]],[254,[-1]]]]],[]],[[[254,[-1]]],[[278,[-1]]],[]],[[[254,[-1]]],[],[]],[[[254,[-1]]],[],[]],[[[254,[-1]]],[[272,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[254,[-1]]],4,[]],[271,4],[[[254,[-1]]],4,[]],[271,4],[[[254,[-1]],[254,[-1]]],4,125],[[271,45],4],[[271,271],4],[[[254,[-1]]],59,[]],[271,59],[[[254,[-1]],[254,[-1]]],4,125],[[271,45],4],[[271,271],4],[[],[[254,[-1]]],[]],[[],271],[-1,[[273,[-1]]],[]],[[],[[254,[-1]]],[]],[[],271],[[[272,[-1]]],46,[]],[[[275,[-1]]],46,[]],[[[272,[-1]]],46,[]],[[[275,[-1]]],46,[]],[[[254,[-1]],[254,[-1]]],[[46,[233]]],125],[[271,271],[[46,[233]]]],[[271,45],[[46,[233]]]],[[[273,[-1]],[273,[-1]]],[[46,[233]]],125],[[[254,[-1]]],[[46,[-1]]],[]],[271,[[46,[280]]]],[[[254,[-1]],59],[[46,[-1]]],[]],[[[254,[-1]],-1],41,[]],[[271,280],41],[[271,45],41],[[[254,[-1]],-1],41,[]],[[[254,[-1]]],59,[]],[271,59],[[[254,[-1]],59],-1,[]],[[271,59],280],[[[254,[-1]],-2],41,[],[[163,[-1],[[31,[4]]]]]],[[[254,[-1]],59],41,[]],[[271,59],41],[[[273,[-1]]],273,[]],[[[272,[-1]]],[[41,[59,[46,[59]]]]],[]],[[[275,[-1]]],[[41,[59,[46,[59]]]]],[]],[[[254,[-1]],59],[[46,[-1]]],[]],[[[254,[-1]],59],-1,[]],[[[254,[-1]]],[[254,[-1]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,137,[]],[-1,137,[]],[-1,30,[]],[-1,30,[]],[[[254,[-1]],59],41,[]],[[271,59],41],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[[[254,[-1]],[97,[-1]]],[[79,[41,273]]],92],[-1,[[79,[-2]]],[],[]],[[[97,[-1]]],[[79,[[254,[-1]]]]],49],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[281,[[79,[271]]]],[-1,[[79,[-2]]],[],[]],[45,[[79,[271]]]],[-1,[[79,[-2]]],[],[]],[[[254,[-1]],59,-1],[[79,[41,[273,[-1]]]]],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[[[254,[-1]],-1],[[79,[41,[273,[-1]]]]],[]],[[271,280],[[79,[41,[273,[280]]]]]],[[271,45],[[79,[41,[273,[45]]]]]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[254,[96]],[97,[96]]],[[79,[59,277]]]],[[-1,282],[[79,[41,277]]],[]],[[-1,[97,[283]]],[[79,[41,277]]],[]],[[-1,[97,[284]]],[[79,[41,277]]],[]],[[-1,285],[[79,[41,277]]],[]],[[-1,[97,[113]]],[[79,[41,277]]],[]],[[-1,270],[[79,[41,277]]],[]],[[-1,[97,[211]]],[[79,[41,277]]],[]],[[-1,286],[[79,[41,277]]],[]],[[-1,283],[[79,[41,277]]],[]],[[-1,287],[[79,[41,277]]],[]],[[-1,284],[[79,[41,277]]],[]],[[-1,[97,[287]]],[[79,[41,277]]],[]],[[-1,[97,[61]]],[[79,[41,277]]],[]],[[-1,211],[[79,[41,277]]],[]],[[-1,[97,[285]]],[[79,[41,277]]],[]],[[-1,61],[[79,[41,277]]],[]],[[-1,[97,[96]]],[[79,[41,277]]],[]],[[-1,288],[[79,[41,277]]],[]],[[-1,[97,[282]]],[[79,[41,277]]],[]],[[-1,96],[[79,[41,277]]],[]],[[-1,113],[[79,[41,277]]],[]],[[-1,[97,[286]]],[[79,[41,277]]],[]],[[-1,[97,[270]]],[[79,[41,277]]],[]],[[-1,[97,[288]]],[[79,[41,277]]],[]],[[-1,[97,[288]]],[[79,[41,277]]],[]],[[-1,113],[[79,[41,277]]],[]],[[-1,[97,[286]]],[[79,[41,277]]],[]],[[-1,96],[[79,[41,277]]],[]],[[-1,284],[[79,[41,277]]],[]],[[-1,[97,[61]]],[[79,[41,277]]],[]],[[-1,282],[[79,[41,277]]],[]],[[-1,288],[[79,[41,277]]],[]],[[-1,[97,[282]]],[[79,[41,277]]],[]],[[-1,[97,[283]]],[[79,[41,277]]],[]],[[-1,[97,[96]]],[[79,[41,277]]],[]],[[-1,[97,[270]]],[[79,[41,277]]],[]],[[-1,[97,[285]]],[[79,[41,277]]],[]],[[-1,211],[[79,[41,277]]],[]],[[-1,[97,[287]]],[[79,[41,277]]],[]],[[-1,283],[[79,[41,277]]],[]],[[-1,287],[[79,[41,277]]],[]],[[-1,[97,[211]]],[[79,[41,277]]],[]],[[-1,[97,[113]]],[[79,[41,277]]],[]],[[-1,61],[[79,[41,277]]],[]],[[-1,[97,[284]]],[[79,[41,277]]],[]],[[-1,270],[[79,[41,277]]],[]],[[-1,286],[[79,[41,277]]],[]],[[-1,285],[[79,[41,277]]],[]],[[271,280],[[79,[41,78]]]],[[271,45],[[79,[41,78]]]],[[],271],0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[59,41],[-1,-1,[]],0,[-1,-1,[]],[-1,-2,[],[]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[259,[-1]]],[[46,[[200,[-1,169]]]]],236],[[[259,[-1]]],[[41,[59,[46,[59]]]]],236],0,[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[267,[-1,-2]]],[[267,[-1,-2]]],289,[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],289,[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],289,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],289,[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[],[238,92],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[],238,[]],[[[200,[-1,-2]],[267,[-1,-2]]],[],238,[]],[[[200,[-1,-2]],[223,[-1,-2]]],[],238,[]],[[[293,[-1,-2]],[291,[-1,-2]]],[],238,[]],[[[293,[-1,-2]],[290,[-1,-2]]],[],238,[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[],238,[],[]],[[[295,[-1,-2]],[295,[-1,-2]]],[[295,[-1,-2]]],[[238,[],[[31,[]]]]],[]],[[[267,[-1,-2]],[267,[-1,-2]]],[],238,[]],[[[267,[-1,-2]],[267,[-1,-2]]],[[267,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[290,[-1,-2]],[290,[-1,-2]]],[],238,[]],[[[290,[-1,-2]],[290,[-1,-2]]],[[290,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[296,[-1,-2,-3]],[296,[-1,-3,-4]]],[],238,[],[],[]],[[[297,[-1,-2,-3]],[297,[-1,-3,-4]]],[],238,[],[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[],238,[]],[[[223,[-1,-2]],[223,[-1,-2]]],[],[238,92],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[],238,[]],[[[291,[-1,-2]],[291,[-1,-2]]],[],[238,92],[]],[[[292,[-1,-2]],[292,[-1,-2]]],41,239,[]],[[[200,[-1,-2]],[223,[-1,-2]]],41,[92,[238,[],[[31,[]]]]],[]],[[[200,[-1,-2]],[267,[-1,-2]]],41,239,[]],[[[293,[-1,-2]],[291,[-1,-2]]],41,[92,[238,[],[[31,[]]]]],[]],[[[293,[-1,-2]],[290,[-1,-2]]],41,239,[]],[[[295,[-1,-2]],[295,[-1,-2]]],41,239,[]],[[[267,[-1,-2]],[267,[-1,-2]]],41,239,[]],[[[290,[-1,-2]],[290,[-1,-2]]],41,239,[]],[[[296,[-1,-2,-3]],[296,[-1,-3,-3]]],41,239,[],[]],[[[297,[-1,-2,-3]],[297,[-1,-3,-3]]],41,239,[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],41,[92,[238,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],41,[92,[238,[],[[31,[]]]]],[]],[[[200,[-1,-2]],[267,[-1,-2]]],[[200,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[293,[-1,-2]],[290,[-1,-2]]],[[293,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[298,4],[299,4],[[298,298],298],[[299,299],299],0,[[[223,[-1,-2]]],[[224,[-1]]],[255,92],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[224,[-1]]],[[246,[],[[31,[]]]],255,92,[247,[],[[31,[]]]],[238,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[224,[-1]]],[255,266],[]],[298,4],[299,4],[[],-1,250],[[],[[200,[-1,-2]]],[],[]],[[],[[293,[-1,-2]]],[],[]],[[],-1,[]],[[],-1,250],[[],-1,250],[[],[[223,[-1,-2]]],[],[]],[[],[[291,[-1,-2]]],[],[]],[[[170,[-1,-2,-3]],[170,[-1,-2,-3]]],4,[],[],[]],[[[300,[-1,-2,-3]],[300,[-1,-2,-3]]],4,[],[],[]],[[[292,[-1,-2]],[292,[-1,-2]],-1],4,[],[]],[[[200,[-1,-2]],[200,[-1,-2]],[200,[-1,-2]]],4,[],[]],[[[293,[-1,-2]],[293,[-1,-2]],[293,[-1,-2]]],4,[],[]],[[[301,[-1,-2,-3]],[301,[-1,-2,-3]],-1],4,[],[],[]],[[[170,[-1,-2,-3]],[170,[-1,-2,-3]],-1],4,[],[],[]],[[[170,[-1,-2,-3]],[170,[-1,-2,-3]],-1],4,[],[],[]],[[[300,[-1,-2,-3]],[300,[-1,-2,-3]],-1],4,[],[],[]],[[[300,[-1,-2,-3]],[300,[-1,-2,-3]],-1],4,[],[],[]],[[[223,[-1,-2]],[223,[-1,-2]],[223,[-1,-2]]],4,[],[]],[[[291,[-1,-2]],[291,[-1,-2]],[291,[-1,-2]]],4,[],[]],0,0,[[[227,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],-1,[92,[247,[],[[31,[]]]]],[]],[[[267,[-1,-2]]],[],[247,92],[]],[[[291,[-1,-2]],[224,[-1]]],[[301,[-1,-2,-3]]],266,[],[]],[[[224,[-1]]],[[301,[-1,-2,-3]]],266,[],[]],[[[224,[-1]]],[[301,[-1,-2,-3]]],266,[],[]],[[[224,[-1]]],[[301,[-1,-2,-3]]],266,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[-1,-1,-1,-1,-1,-1],[[303,[-1,-2]]],92,[]],[[4,4],298],[[4,4,4],299],[[[227,[-1,-2]]],[[227,[-3,-2]]],[251,92],[],251],[[[303,[-1,-2]]],[[303,[-3,-2]]],[251,92],[],251],[[[292,[-1,-2]]],[[292,[-3,-2]]],[251,49],[],251],[[[200,[-1,-2]]],[[200,[-3,-2]]],[251,92],[],251],[[[293,[-1,-2]]],[[293,[-3,-2]]],[251,92],[],251],[[[302,[-1,-2]]],[[302,[-3,-2]]],[251,92],[],251],[[[294,[-1,-2,-3]]],[[294,[-4,-2,-3]]],251,[],[],251],[[[267,[-1,-2]]],[[267,[-3,-2]]],[251,92],[],251],[[[290,[-1,-2]]],[[290,[-3,-2]]],[251,92],[],251],[[[170,[-1,-2,-3]]],[[170,[-4,-2,-3]]],[251,92],[],[],251],[[[300,[-1,-2,-3]]],[[300,[-4,-2,-3]]],[251,92],[],[],251],[[[223,[-1,-2]]],[[223,[-3,-2]]],[251,92],[],251],[[[291,[-1,-2]]],[[291,[-3,-2]]],[251,92],[],251],[[[227,[-1,-2]]],[[227,[-1,-3]]],92,[],[]],[[[303,[-1,-2]]],[[303,[-1,-3]]],92,[],[]],[[[292,[-1,-2]]],[[292,[-1,-3]]],49,[],[]],[[[200,[-1,-2]]],[[200,[-1,-3]]],92,[],[]],[[[293,[-1,-2]]],[[293,[-1,-3]]],92,[],[]],[[[302,[-1,-2]]],[[302,[-1,-3]]],92,[],[]],[[[304,[-1,-2,-3]]],[[304,[-1,-4,-5]]],92,[],[],[],[]],[[[301,[-1,-2,-3]]],[[301,[-1,-4,-5]]],92,[],[],[],[]],[[[267,[-1,-2]]],[[267,[-1,-3]]],92,[],[]],[[[290,[-1,-2]]],[[290,[-1,-3]]],92,[],[]],[[[223,[-1,-2]]],[[223,[-1,-3]]],92,[],[]],[[[291,[-1,-2]]],[[291,[-1,-3]]],92,[],[]],[[[305,[-1,-2,-3]]],[[305,[-1,-4,-5]]],92,[],[],[],[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],[306,92],[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],306,[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],306,[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],[306,92],[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],[306,92],[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],306,[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],306,[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],[306,92],[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],[306,92],[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],306,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],306,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],[306,92],[]],[[[227,[-1,-2]]],[[200,[-1,-2]]],[92,307,[238,[],[[31,[]]]],[256,[],[[31,[]]]]],[]],[[[303,[-1,-2]]],[[293,[-1,-2]]],[92,307,[238,[],[[31,[]]]],[256,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],[[200,[-1,-2]]],[92,307,[238,[],[[31,[]]]],[256,[],[[31,[]]]]],[]],[[[200,[-1,-2]],[200,[-1,-2]],[200,[-1,-2]]],[[200,[-1,-2]]],[92,125],[]],[[[293,[-1,-2]],[293,[-1,-2]],[293,[-1,-2]]],[[293,[-1,-2]]],[92,125],[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[[294,[-1,-2,-3]]],[92,125],[],[]],[[[267,[-1,-2]],[267,[-1,-2]],[267,[-1,-2]]],[[267,[-1,-2]]],[92,125],[]],[[[290,[-1,-2]],[290,[-1,-2]],[290,[-1,-2]]],[[290,[-1,-2]]],[92,125],[]],[[[223,[-1,-2]],[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[92,125],[]],[[[291,[-1,-2]],[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[92,125],[]],[[[223,[-1,-2]],-1,-1],[[223,[-1,-2]]],266,[]],[[[291,[-1,-2]],-1,-1],[[291,[-1,-2]]],266,[]],[[[227,[-1,-2]]],[[227,[-1,-2]]],49,[]],[[[303,[-1,-2]]],[[303,[-1,-2]]],49,[]],[[[308,[-1,-2]]],[[308,[-1,-2]]],49,[]],[[[292,[-1,-2]]],[[292,[-1,-2]]],49,[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],49,[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],49,[]],[[[302,[-1,-2]]],[[302,[-1,-2]]],49,[]],[[[304,[-1,-2,-3]]],[[304,[-1,-2,-3]]],49,[],[]],[[[301,[-1,-2,-3]]],[[301,[-1,-2,-3]]],49,[],[]],[[[294,[-1,-2,-3]]],[[294,[-1,-2,-3]]],49,[],[]],[[[295,[-1,-2]]],[[295,[-1,-2]]],49,[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],49,[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],49,[]],[[[170,[-1,-2,-3]]],[[170,[-1,-2,-3]]],49,[],[]],[[[300,[-1,-2,-3]]],[[300,[-1,-2,-3]]],49,[],[]],[[[296,[-1,-2,-3]]],[[296,[-1,-2,-3]]],49,[],[]],[[[297,[-1,-2,-3]]],[[297,[-1,-2,-3]]],49,[],[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],49,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],49,[]],[[[305,[-1,-2,-3]]],[[305,[-1,-2,-3]]],49,[],[]],[298,298],[299,299],[169,169],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[[292,[-1,-2]],[292,[-1,-2]]],233,274,[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],233,274,[],[]],[[169,169],233],[[-1,-2],233,[],[]],[[-1,-2],233,[],[]],[[-1,-2],233,[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[[256,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[[256,[],[[31,[]]]],92],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[[247,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[[247,[],[[31,[]]]],92],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[227,[-1,-2]],[200,[-1,-2]]],4,125,[]],[[[303,[-1,-2]],[293,[-1,-2]]],4,125,[]],[[[302,[-1,-2]],[200,[-1,-2]]],4,[92,125,[238,[],[[31,[]]]]],[]],[[[267,[-1,-2]],[267,[-1,-2]]],4,125,[]],[[[290,[-1,-2]],[290,[-1,-2]]],4,125,[]],[[[227,[-1,-2]],[227,[-1,-2]]],4,125,[]],[[[303,[-1,-2]],[303,[-1,-2]]],4,125,[]],[[[302,[-1,-2]],[302,[-1,-2]]],4,[92,309,125,[238,[],[[31,[]]]]],[]],[255,255],[[[223,[-1,-2]],[223,[-1,-2]]],-1,[[246,[],[[31,[]]]],[247,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[305,[-1,-2,-3]]],[[41,[[291,[-1,-2]],[301,[-1,-2,-3]]]]],[],[],[]],0,[[],[[227,[-1,-2]]],107,[]],[[],[[303,[-1,-2]]],107,[]],[[],[[292,[-1,-2]]],107,[]],[[],[[200,[-1,-2]]],107,[]],[[],[[293,[-1,-2]]],107,[]],[[],[[302,[-1,-2]]],107,[]],[[],[[294,[-1,-2,-3]]],107,[],[]],[[],[[295,[-1,-2]]],107,[]],[[],[[267,[-1,-2]]],107,[]],[[],[[290,[-1,-2]]],107,[]],[[],[[170,[-1,-2,-3]]],[309,307],[],[]],[[],[[300,[-1,-2,-3]]],[309,307],[],[]],[[],[[296,[-1,-2,-3]]],309,[],[]],[[],[[297,[-1,-2,-3]]],309,[],[]],[[],[[223,[-1,-2]]],107,[]],[[],[[291,[-1,-2]]],107,[]],[[],169],[255,255],[[[303,[-1,-2]]],-1,[92,[246,[],[[31,[]]]]],[]],0,[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[170,[-1,-2,-3]]],-1,[92,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],93,309,307],[],[]],[[[300,[-1,-2,-3]]],-1,[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[200,[-1,-2]],[200,[-1,-2]]],-1,[[266,[],[[31,[]]]],246],[]],[[[293,[-1,-2]],[293,[-1,-2]]],-1,[[266,[],[[31,[]]]],246],[]],[[[227,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[227,[-1,-2]],-1],[],[92,256],[]],[[[303,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[303,[-1,-2]],-1],[],[92,256],[]],[[[292,[-1,-2]],[294,[-1,-3,-2]]],[],256,[],[]],[[[292,[-1,-2]],-1],[],256,[]],[[[292,[-1,-2]],[292,[-1,-3]]],[],256,[],[]],[[[200,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[200,[-1,-2]],-1],[],[92,256],[]],[[[293,[-1,-2]],-1],[],[92,256],[]],[[[293,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[302,[-1,-2]],-1],[],[92,256],[]],[[[302,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[295,[-1,-2]],-1],[],[92,256],[]],[[[295,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[267,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[267,[-1,-2]],-1],[],[92,256],[]],[[[290,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[290,[-1,-2]],-1],[],[92,256],[]],[[[223,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[223,[-1,-2]],-1],[],[92,256],[]],[[[291,[-1,-2]],-1],[],[92,256],[]],[[[291,[-1,-2]],[294,[-1,-3,-2]]],[],[92,256],[],[]],[[[227,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[227,[-1,-2]],-1],41,[92,257],[]],[[[303,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[303,[-1,-2]],-1],41,[92,257],[]],[[[292,[-1,-2]],-1],41,[92,[256,[],[[31,[]]]]],[]],[[[200,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[200,[-1,-2]],-1],41,[92,[256,[],[[31,[]]]]],[]],[[[293,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[293,[-1,-2]],-1],41,[92,257],[]],[[[302,[-1,-2]],-1],41,[92,257],[]],[[[302,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[295,[-1,-2]],-1],41,[92,257],[]],[[[295,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[267,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[267,[-1,-2]],-1],41,[92,257],[]],[[[290,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[290,[-1,-2]],-1],41,[92,257],[]],[[[223,[-1,-2]],-1],41,[92,[256,[],[[31,[]]]]],[]],[[[223,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[291,[-1,-2]],-1],41,[92,[256,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[294,[-1,-2,-2]]],41,[92,257],[]],[[[200,[-1,-2]],[267,[-1,-2]]],[[200,[-1,-2]]],310,[]],[[[293,[-1,-2]],[290,[-1,-2]]],[[293,[-1,-2]]],310,[]],[[[223,[-1,-2]],[223,[-1,-2]]],-1,[[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],-1,[[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[[227,[-1,-2]],[227,[-1,-2]]],4,93,[]],[[[303,[-1,-2]],[303,[-1,-2]]],4,93,[]],[[[308,[-1,-2]],[308,[-1,-2]]],4,93,[]],[[[292,[-1,-2]],[292,[-1,-2]]],4,93,[]],[[[200,[-1,-2]],[200,[-1,-2]]],4,93,[]],[[[293,[-1,-2]],[293,[-1,-2]]],4,93,[]],[[[302,[-1,-2]],[302,[-1,-2]]],4,93,[]],[[[304,[-1,-2,-3]],[304,[-1,-2,-3]]],4,93,[],[]],[[[301,[-1,-2,-3]],[301,[-1,-2,-3]]],4,93,[],[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],4,93,[],[]],[[[295,[-1,-2]],[295,[-1,-2]]],4,93,[]],[[[267,[-1,-2]],[267,[-1,-2]]],4,93,[]],[[[290,[-1,-2]],[290,[-1,-2]]],4,93,[]],[[[170,[-1,-2,-3]],[170,[-1,-2,-3]]],4,93,[],[]],[[[300,[-1,-2,-3]],[300,[-1,-2,-3]]],4,93,[],[]],[[[296,[-1,-2,-3]],[296,[-1,-2,-3]]],4,93,[],[]],[[[297,[-1,-2,-3]],[297,[-1,-2,-3]]],4,93,[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],4,93,[]],[[[291,[-1,-2]],[291,[-1,-2]]],4,93,[]],[[[305,[-1,-2,-3]],[305,[-1,-2,-3]]],4,93,93,93],[[298,298],4],[[299,299],4],[[169,169],4],[[[267,[-1,-2]],[267,[-1,-2]]],298,93,[]],[[[290,[-1,-2]],[290,[-1,-2]]],299,93,[]],[[[223,[-1,-2]],[223,[-1,-2]]],298,93,[]],[[[291,[-1,-2]],[291,[-1,-2]]],299,93,[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[[224,[-1]],[224,[-1]],[224,[-1]]],[[301,[-1,-2,-3]]],266,[],[]],[[[200,[-1,-2]],-1],[[293,[-1,-2]]],92,[]],[[[223,[-1,-2]],-1],[[291,[-1,-2]]],92,[]],[[255,255],255],[[[200,[-1,-2]]],[[200,[-1,-2]]],[311,92],[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],311,[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],[311,92],[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],311,[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],311,[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],[311,92],[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],311,[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],[311,92],[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],311,[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],[311,92],[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],311,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],[311,92],[]],[[[227,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[303,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[308,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[292,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[200,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[293,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[302,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[301,[-1,-2,-3]],77],[[79,[41,78]]],164,[],[]],[[[294,[-1,-2,-3]],77],[[79,[41,78]]],164,[],[]],[[[295,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[267,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[290,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[170,[-1,-2,-3]],77],[[79,[41,78]]],[92,164,93,307,309],[],[]],[[[300,[-1,-2,-3]],77],[[79,[41,78]]],[92,164,93,307,309],[],[]],[[[296,[-1,-2,-3]],77],[[79,[41,78]]],164,[],[]],[[[297,[-1,-2,-3]],77],[[79,[41,78]]],164,[],[]],[[[223,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[291,[-1,-2]],77],[[79,[41,78]]],164,[]],[[[305,[-1,-2,-3]],77],[[79,[41,78]]],164,164,164],[[298,77],[[79,[41,78]]]],[[299,77],[[79,[41,78]]]],[[169,77],[[79,[41,78]]]],[-1,-1,[]],[[[267,[-1,-2]]],[[227,[-1,-2]]],[92,309,125],[]],[-1,-1,[]],[[[290,[-1,-2]]],[[303,[-1,-2]]],[92,309,125],[]],[[[293,[-1,-2]]],[[308,[-1,-2]]],307,[]],[[[291,[-1,-2]]],[[308,[-1,-2]]],309,[]],[-1,-1,[]],[[[223,[-1,-2]]],[[308,[-1,-2]]],309,[]],[[[200,[-1,-2]]],[[308,[-1,-2]]],[309,307],[]],[-1,-1,[]],[[[278,[-1]]],[[200,[-1,-2]]],[],[]],[[[41,[-1,-1]]],[[200,[-1,-2]]],[],[]],[-1,-1,[]],[[[278,[-1]]],[[293,[-1,-2]]],[],[]],[-1,-1,[]],[[[41,[-1,-1,-1]]],[[293,[-1,-2]]],[],[]],[-1,-1,[]],[[[267,[-1,-2]]],[[302,[-1,-2]]],309,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[223,[-1,-2]]],[[267,[-1,-2]]],[],[]],[[[278,[-1]]],[[267,[-1,-2]]],[],[]],[[[41,[-1,-1]]],[[267,[-1,-2]]],[],[]],[-1,-1,[]],[[[41,[-1,-1,-1]]],[[290,[-1,-2]]],[],[]],[[[278,[-1]]],[[290,[-1,-2]]],[],[]],[-1,-1,[]],[[[291,[-1,-2]]],[[290,[-1,-2]]],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[223,[-1,-2]]],[[296,[-1,-2,-3]]],[],[],[]],[[[291,[-1,-2]]],[[297,[-1,-2,-3]]],[],[],[]],[-1,-1,[]],[[[267,[-1,-2]]],[[223,[-1,-2]]],[],[]],[-1,-1,[]],[[[278,[-1]]],[[223,[-1,-2]]],[],[]],[[[41,[-1,-1]]],[[223,[-1,-2]]],[],[]],[[[41,[-1,-1,-1]]],[[291,[-1,-2]]],[],[]],[[[278,[-1]]],[[291,[-1,-2]]],[],[]],[-1,-1,[]],[-1,-1,[]],[[[291,[-1,-2]]],[[305,[-1,-3,-2]]],[],[],[]],[[[301,[-1,-2,-3]]],[[305,[-1,-2,-3]]],[],[],[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[224,[-1]],-1],[[223,[-1,-2]]],[255,[247,[],[[31,[]]]],92],[]],[[[278,[-1]]],[[170,[-1,-2,-3]]],92,[],[]],[[[278,[-1]]],[[300,[-1,-2,-3]]],92,[],[]],[[[278,[[278,[-1]]]]],[[170,[-1,-2,-3]]],92,[],[]],[[[278,[[278,[-1]]]]],[[300,[-1,-2,-3]]],92,[],[]],[[[292,[-1,-2]]],[[295,[-1,-2]]],92,[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[200,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]],[292,[-1,-2]]],[[293,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]],[292,[-1,-2]],[292,[-1,-2]]],[[295,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[267,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]],[292,[-1,-2]]],[[290,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[223,[-1,-2]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]],[292,[-1,-2]]],[[291,[-1,-2]]],[],[]],[[[200,[-1,-2]],[267,[-1,-2]]],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[-1,[[227,[-2,-3]]],43,[92,309,125],[]],[-1,[[303,[-2,-3]]],43,[92,309,125],[]],[-1,[[302,[-2,-3]]],43,[92,309,125,[246,[],[[31,[]]]]],[]],[[[301,[-1,-2,-3]]],[[305,[-1,-2,-3]]],[],[],[]],[[[294,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[267,[-1,-2]]],[[227,[-1,-2]]],309,[]],[[[290,[-1,-2]]],[[303,[-1,-2]]],309,[]],[[[267,[-1,-2]]],[[302,[-1,-2]]],309,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[291,[-1,-2]]],[[305,[-1,-3,-2]]],[],[],[]],[[[227,[-1,169]]],[[227,[-1,-2]]],92,[]],[[[303,[-1,169]]],[[303,[-1,-2]]],92,[]],[[[200,[-1,169]]],[[200,[-1,-2]]],[],[]],[[[293,[-1,169]]],[[293,[-1,-2]]],[],[]],[[[302,[-1,169]]],[[302,[-1,-2]]],92,[]],[[[304,[-1,169,169]]],[[304,[-1,-2,-3]]],92,[],[]],[[[301,[-1,169,169]]],[[301,[-1,-2,-3]]],92,[],[]],[[[267,[-1,169]]],[[267,[-1,-2]]],[],[]],[[[290,[-1,169]]],[[290,[-1,-2]]],[],[]],[[[170,[-1,169,169]]],[[170,[-1,-2,-3]]],92,[],[]],[[[300,[-1,169,169]]],[[300,[-1,-2,-3]]],92,[],[]],[[[296,[-1,169,169]]],[[296,[-1,-2,-3]]],92,[],[]],[[[297,[-1,169,169]]],[[297,[-1,-2,-3]]],92,[],[]],[[[223,[-1,169]]],[[223,[-1,-2]]],[],[]],[[[291,[-1,169]]],[[291,[-1,-2]]],[],[]],[[[305,[-1,169,169]]],[[305,[-1,-2,-3]]],[],[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[295,[-1,-2]]],[[264,[],[[31,[]]]]],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[295,[-1,-2]]],[[264,[],[[31,[]]]]],[]],[[[292,[-1,-2]]],-1,49,[]],[[[294,[-1,-2,-3]]],-1,[],[],[]],[[[304,[-1,-2,-3]]],[[224,[-1]]],92,[],[]],[[[267,[-1,-2]],[267,[-1,-2]]],298,125,[]],[[[290,[-1,-2]],[290,[-1,-2]]],299,125,[]],[[[223,[-1,-2]],[223,[-1,-2]]],298,125,[]],[[[291,[-1,-2]],[291,[-1,-2]]],299,125,[]],[[[227,[-1,-2]],-3],41,39,[],205],[[[303,[-1,-2]],-3],41,39,[],205],[[[308,[-1,-2]],-3],41,39,[],205],[[[292,[-1,-2]],-3],41,39,[],205],[[[200,[-1,-2]],-3],41,39,[],205],[[[293,[-1,-2]],-3],41,39,[],205],[[[302,[-1,-2]],-3],41,39,[],205],[[[304,[-1,-2,-3]],-4],41,39,[],[],205],[[[301,[-1,-2,-3]],-4],41,39,[],[],205],[[[294,[-1,-2,-3]],-4],41,39,[],[],205],[[[295,[-1,-2]],-3],41,39,[],205],[[[267,[-1,-2]],-3],41,39,[],205],[[[290,[-1,-2]],-3],41,39,[],205],[[[170,[-1,-2,-3]],-4],41,39,[],[],205],[[[300,[-1,-2,-3]],-4],41,39,[],[],205],[[[296,[-1,-2,-3]],-4],41,39,[],[],205],[[[297,[-1,-2,-3]],-4],41,39,[],[],205],[[[223,[-1,-2]],-3],41,39,[],205],[[[291,[-1,-2]],-3],41,39,[],205],[[[305,[-1,-2,-3]],-4],41,39,39,39,205],[[298,-1],41,205],[[299,-1],41,205],[[169,-1],41,205],[[[227,[-1,-2]]],-1,[92,[246,[],[[31,[]]]]],[]],[[[303,[-1,-2]]],-1,[92,[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],0,0,[[[295,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],0,[[],[[304,[-1,-2,-3]]],265,[],[]],[[],[[301,[-1,-2,-3]]],[265,248],[],[]],[[],[[294,[-1,-2,-3]]],307,[],[]],[[],[[170,[-1,-2,-3]]],[309,307],[],[]],[[],[[300,[-1,-2,-3]]],[309,307],[],[]],[[],[[296,[-1,-2,-3]]],309,[],[]],[[],[[297,[-1,-2,-3]]],309,[],[]],[[],[[305,[-1,-2,-3]]],[],[],[]],[[[227,[-1,-2]],-1,-1],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[303,[-1,-2]],-1,-1,-1],[[303,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]],-1,-1],[[302,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[[227,[-1,-2]],[295,[-1,-2]]],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]],[295,[-1,-2]]],[[302,[-1,-2]]],[92,309,125,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[227,[-1,-2]],[227,[-1,-2]]],[[46,[[227,[-1,-2]]]]],[92,125],[]],[[[303,[-1,-2]],[303,[-1,-2]]],[[46,[[303,[-1,-2]]]]],[92,125],[]],[[[302,[-1,-2]],[302,[-1,-2]]],[[46,[[302,[-1,-2]]]]],[92,125,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[227,[-1,-2]],[227,[-1,-2]]],[[227,[-1,-2]]],[92,125],[]],[[[303,[-1,-2]],[303,[-1,-2]]],[[303,[-1,-2]]],[92,125],[]],[[[227,[-1,-2]],[227,[-1,-2]]],4,125,[]],[[[303,[-1,-2]],[303,[-1,-2]]],4,125,[]],[[[302,[-1,-2]],[302,[-1,-2]]],4,[92,125,[238,[],[[31,[]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[200,[-1,-2]]],[[41,[-1,-1]]],[],[]],[[[200,[-1,-2]]],[[278,[-1]]],[],[]],[-1,-2,[],[]],[[[293,[-1,-2]]],[[41,[-1,-1,-1]]],[],[]],[-1,-2,[],[]],[[[293,[-1,-2]]],[[278,[-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[267,[-1,-2]]],[[41,[-1,-1]]],[],[]],[[[267,[-1,-2]]],[[278,[-1]]],[],[]],[-1,-2,[],[]],[[[290,[-1,-2]]],[[41,[-1,-1,-1]]],[],[]],[[[290,[-1,-2]]],[[278,[-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[296,[-1,-2,-3]]],[[223,[-1,-2]]],[],[],[]],[[[296,[-1,-2,-3]]],[[170,[-1,-2,-3]]],[309,307],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[297,[-1,-2,-3]]],[[291,[-1,-2]]],[],[],[]],[[[297,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[309,307],[],[]],[[[223,[-1,-2]]],[[278,[-1]]],[],[]],[-1,-2,[],[]],[[[223,[-1,-2]]],[[41,[-1,-1]]],[],[]],[[[291,[-1,-2]]],[[41,[-1,-1,-1]]],[],[]],[[[291,[-1,-2]]],[[278,[-1]]],[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[304,[-1,-2,-3]]],[[304,[-1,-3,-2]]],266,[],[]],[[[301,[-1,-2,-3]]],[[301,[-1,-3,-2]]],266,[],[]],[[[294,[-1,-2,-3]]],[[294,[-3,-2]]],[307,256],[],[]],[[[170,[-1,-2,-3]]],[[46,[[170,[-1,-3,-2]]]]],[92,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],93,309,307],[],[]],[[[300,[-1,-2,-3]]],[[46,[[300,[-1,-3,-2]]]]],[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[296,[-1,-2,-3]]],[[296,[-3,-2]]],[264,92],[],[]],[[[297,[-1,-2,-3]]],[[297,[-3,-2]]],[264,92],[],[]],[[[305,[-1,-2,-3]]],[[305,[-1,-3,-2]]],[],[],[]],[[[300,[-1,-2,-3]]],4,[309,307,93],[],[]],[[[300,[-1,-2,-3]]],4,[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[227,[-1,-2]]],4,125,[]],[[[303,[-1,-2]]],4,125,[]],[[[302,[-1,-2]]],4,[92,309,125],[]],[[[267,[-1,-2]]],4,[309,125],[]],[[[290,[-1,-2]]],4,[309,125],[]],[[[227,[-1,-2]]],4,262,[]],[[[303,[-1,-2]]],4,262,[]],[[[200,[-1,-2]]],4,262,[]],[[[293,[-1,-2]]],4,262,[]],[[[302,[-1,-2]]],4,262,[]],[[[267,[-1,-2]]],4,262,[]],[[[290,[-1,-2]]],4,262,[]],[[[223,[-1,-2]]],4,262,[]],[[[291,[-1,-2]]],4,262,[]],[[[294,[-1,-2,-3]]],4,[93,307],[],[]],[[[296,[-1,-2,-3]]],4,[309,93],[],[]],[[[297,[-1,-2,-3]]],4,[309,93],[],[]],[[[170,[-1,-2,-3]]],4,[92,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],93,309,307],[],[]],[[[300,[-1,-2,-3]]],4,[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[227,[-1,-2]]],4,125,[]],[[[303,[-1,-2]]],4,125,[]],[[[301,[-1,-2,-3]]],4,[],[],[]],[[[267,[-1,-2]]],4,289,[]],[[[290,[-1,-2]]],4,289,[]],[[[295,[-1,-2]]],4,[309,93],[]],0,0,0,[[[223,[-1,-2]]],-1,266,[]],[[[291,[-1,-2]]],-1,266,[]],[[[227,[-1,-2]],[227,[-1,-2]],-1],[[227,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[303,[-1,-2]],[303,[-1,-2]],-1],[[303,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[292,[-1,-2]],[292,[-1,-2]],-1],[[292,[-1,-2]]],[307,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[238,[],[[31,[]]]],49],[]],[[[200,[-1,-2]],[200,[-1,-2]],-1],[[200,[-1,-2]]],[307,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[238,[],[[31,[]]]],92],[]],[[[293,[-1,-2]],[293,[-1,-2]],-1],[[293,[-1,-2]]],[307,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[238,[],[[31,[]]]],92],[]],[[[302,[-1,-2]],[302,[-1,-2]],-1],[[302,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[301,[-1,-2,-3]],[301,[-1,-2,-3]],-1],[[301,[-1,-2,-3]]],266,[],[]],[[[267,[-1,-2]],[267,[-1,-2]],-1],[[267,[-1,-2]]],[307,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[238,[],[[31,[]]]],92],[]],[[[290,[-1,-2]],[290,[-1,-2]],-1],[[290,[-1,-2]]],[307,[246,[],[[31,[]]]],[247,[],[[31,[]]]],[238,[],[[31,[]]]],92],[]],[[[223,[-1,-2]],[223,[-1,-2]],-1],[[223,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[291,[-1,-2]],[291,[-1,-2]],-1],[[291,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[267,[-1,-2]],[267,[-1,-2]]],298,125,[]],[[[290,[-1,-2]],[290,[-1,-2]]],299,125,[]],[[[223,[-1,-2]],[223,[-1,-2]]],298,125,[]],[[[291,[-1,-2]],[291,[-1,-2]]],299,125,[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[292,[-1,-2]],[292,[-1,-2]]],[[292,[-1,-2]]],125,[]],[[[200,[-1,-2]],[200,[-1,-2]]],[[200,[-1,-2]]],125,[]],[[[293,[-1,-2]],[293,[-1,-2]]],[[293,[-1,-2]]],125,[]],[[[302,[-1,-2]]],[[200,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[[294,[-1,-2,-3]]],125,[],[]],[[[267,[-1,-2]],[267,[-1,-2]]],[[267,[-1,-2]]],125,[]],[[[290,[-1,-2]],[290,[-1,-2]]],[[290,[-1,-2]]],125,[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],125,[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],125,[]],0,0,[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[292,[-1,-2]]],125,[]],[[[200,[-1,-2]],[200,[-1,-2]]],[[200,[-1,-2]]],125,[]],[[[293,[-1,-2]],[293,[-1,-2]]],[[293,[-1,-2]]],125,[]],[[[302,[-1,-2]]],[[200,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[[294,[-1,-2,-3]]],125,[],[]],[[[267,[-1,-2]],[267,[-1,-2]]],[[267,[-1,-2]]],125,[]],[[[290,[-1,-2]],[290,[-1,-2]]],[[290,[-1,-2]]],125,[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],125,[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],125,[]],0,0,[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],[[[227,[-1,-2]],-1],[],[92,247],[]],[[[227,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[303,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[303,[-1,-2]],-1],[],[92,247],[]],[[[292,[-1,-2]],-1],[],247,[]],[[[292,[-1,-2]],[294,[-1,-2,-3]]],[],247,[],[]],[[[200,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[200,[-1,-2]],-1],[],[92,247],[]],[[[293,[-1,-2]],-1],[],[92,247],[]],[[[293,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[302,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[302,[-1,-2]],-1],[],[92,247],[]],[[[294,[-1,-2,-3]],[294,[-1,-3,-4]]],[],247,[],[],[]],[[[295,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[295,[-1,-2]],-1],[],[92,247],[]],[[[267,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[267,[-1,-2]],-1],[],[92,247],[]],[[[290,[-1,-2]],-1],[],[92,247],[]],[[[290,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[223,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[223,[-1,-2]],-1],[],[92,247],[]],[[[291,[-1,-2]],[294,[-1,-2,-3]]],[],[92,247],[],[]],[[[291,[-1,-2]],-1],[],[92,247],[]],[[[227,[-1,-2]],-1],41,[92,263],[]],[[[227,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[303,[-1,-2]],-1],41,[92,263],[]],[[[303,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[292,[-1,-2]],-1],41,[92,[247,[],[[31,[]]]]],[]],[[[200,[-1,-2]],-1],41,[92,[247,[],[[31,[]]]]],[]],[[[200,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[293,[-1,-2]],-1],41,[92,263],[]],[[[293,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[302,[-1,-2]],-1],41,[92,263],[]],[[[302,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[295,[-1,-2]],-1],41,[92,263],[]],[[[295,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[267,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[267,[-1,-2]],-1],41,[92,263],[]],[[[290,[-1,-2]],-1],41,[92,263],[]],[[[290,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[223,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[223,[-1,-2]],-1],41,[92,[247,[],[[31,[]]]]],[]],[[[291,[-1,-2]],-1],41,[92,[247,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[294,[-1,-2,-2]]],41,[92,263],[]],[[[300,[-1,-2,-3]],-1],[[300,[-1,-2,-3]]],[[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,[264,[],[[31,[]]]],[238,[],[[31,[]]]],125,307,309],[],[]],[[[292,[-1,-2]]],[],264,[]],[[[200,[-1,-2]]],[],264,[]],[[[293,[-1,-2]]],[],264,[]],[[[295,[-1,-2]]],[[295,[-1,-2]]],[[264,[],[[31,[]]]]],[]],[[[267,[-1,-2]]],[],264,[]],[[[290,[-1,-2]]],[],264,[]],[[[223,[-1,-2]]],[],264,[]],[[[291,[-1,-2]]],[],264,[]],[[[200,[-1,-2]],[200,[-1,-2]]],[[227,[-1,-2]]],[],[]],[[[293,[-1,-2]],[293,[-1,-2]]],[[303,[-1,-2]]],[],[]],[[-1,-1,-1,-1],[[308,[-1,-2]]],[],[]],[-1,[[292,[-1,-2]]],[],[]],[[-1,-1],[[200,[-1,-2]]],[],[]],[[-1,-1,-1],[[293,[-1,-2]]],[],[]],[[[200,[-1,-2]],[267,[-1,-2]]],[[302,[-1,-2]]],[],[]],[[[224,[-1]]],[[304,[-1,-2,-3]]],[],[],[]],[-1,[[294,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1],[[295,[-1,-2]]],[],[]],[[-1,-1],[[267,[-1,-2]]],[],[]],[[-1,-1,-1],[[290,[-1,-2]]],[],[]],[[-1,-1,-1,-1,-1,-1],[[170,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1],[[300,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[296,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1],[[297,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[223,[-1,-2]]],[],[]],[[-1,-1,-1],[[291,[-1,-2]]],[],[]],[[[301,[-1,-2,-3]],[291,[-1,-3]]],[[305,[-1,-2,-3]]],[],[],[]],[[-1,-1,-1,-1,-1,-1],[[300,[-1,-2,-3]]],[309,307],[],[]],[-1,[[295,[-1,-2]]],92,[]],[[[291,[-1,-2]],[301,[-1,-2,-3]]],[[305,[-1,-2,-3]]],[],[],[]],[298,4],[299,4],[[[301,[-1,-2,-3]]],-1,266,[],[]],[[[301,[-1,-2,-3]]],[[301,[-1,-2,-3]]],266,[],[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],266,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],266,[]],[298,298],[299,299],[[[267,[-1,-2]],[267,[-1,-2]]],298,93,[]],[[[290,[-1,-2]],[290,[-1,-2]]],299,93,[]],[[[223,[-1,-2]],[223,[-1,-2]]],298,93,[]],[[[291,[-1,-2]],[291,[-1,-2]]],299,93,[]],0,[[],[[294,[-1,-2,-3]]],307,[],[]],[[],[[223,[-1,-2]]],307,[]],[[],[[291,[-1,-2]]],307,[]],[[298,298],298],[[299,299],299],[[],[[200,[-1,-2]]],309,[]],[[],[[293,[-1,-2]]],309,[]],0,[[-1,-1,-1,-1,-1,-1],[[300,[-1,-2,-3]]],[],[],[]],[[[227,[-1,-2]],[295,[-1,-2]]],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]],[295,[-1,-2]]],[[302,[-1,-2]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[170,[-1,-2,-3]],[227,[-1,-2]]],[[227,[-1,-3]]],[[246,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[300,[-1,-2,-3]],[227,[-1,-2]]],[[46,[[227,[-1,-3]]]]],[[246,[],[[31,[]]]],[256,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[300,[-1,-2,-3]],[303,[-1,-2]]],[[46,[[303,[-1,-3]]]]],[[246,[],[[31,[]]]],[256,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[170,[-1,-2,-3]],[302,[-1,-2]]],[[302,[-1,-3]]],[[246,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[300,[-1,-2,-3]],[302,[-1,-2]]],[[46,[[302,[-1,-3]]]]],[[246,[],[[31,[]]]],[256,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[46,[233]]],125,[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[[46,[233]]],125,[],[]],[[169,169],[[46,[233]]]],[-1,[[300,[-1,-2,-3]]],[],[],[]],[[-1,-1],[[200,[-1,-2]]],[],[]],[[-1,-1,-1],[[293,[-1,-2]]],[],[]],[[[200,[113,-1]]],[[200,[113,169]]],[]],[[[170,[-1,-2,-3]],[224,[-1]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],309,255],[],[]],[[[300,[-1,-2,-3]],-1,-1,-1,[224,[-1]]],[[300,[-1,-2,-3]]],[[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,309,307,255],[],[]],[[[170,[-1,-2,-3]],-1,-1],[[170,[-1,-2,-3]]],[92,[247,[],[[31,[]]]]],[],[]],[[[300,[-1,-2,-3]],-1,-1,-1],[[300,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[170,[-1,-2,-3]],[223,[-1,-2]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[300,[-1,-2,-3]],[291,[-1,-2]]],[[300,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[[246,[],[[31,[]]]],[256,[],[[31,[]]]],92,[247,[],[[31,[]]]],[238,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[[246,[],[[31,[]]]],[256,[],[[31,[]]]],92,[247,[],[[31,[]]]],[238,[],[[31,[]]]]],[]],[[[300,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[92,[247,[],[[31,[]]]],[256,[],[[31,[]]]],309,307,93],[],[]],[[-1,-1,-1,-1],[[301,[-1,-2,-3]]],[],[],[]],0,[-1,[[304,[-1,-2,-3]]],[],[],[]],0,[255,255],[[-1,-1,-1,-1],[[302,[-1,-2]]],[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[307,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],92],[]],[[[200,[-1,-2]],[267,[-1,-2]]],[[200,[-1,-2]]],310,[]],[[[293,[-1,-2]],[290,[-1,-2]]],[[293,[-1,-2]]],310,[]],0,[[[223,[-1,-2]]],[[223,[-1,-2]]],262,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],262,[]],[[[224,[-1]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],309,255],[],[]],[[-1,-1,-1,[224,[-1]]],[[300,[-1,-2,-3]]],[],[],[]],0,[[[227,[-1,-2]]],[[227,[-1,-2]]],312,[]],[[[303,[-1,-2]]],[[303,[-1,-2]]],312,[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],312,[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],[312,92],[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],312,[]],[[[293,[-1,-2]]],[[293,[-1,-2]]],[312,92],[]],[[[302,[-1,-2]]],[[302,[-1,-2]]],[311,306,312,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],[312,92],[]],[[[267,[-1,-2]]],[[267,[-1,-2]]],312,[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],[312,92],[]],[[[290,[-1,-2]]],[[290,[-1,-2]]],312,[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],[312,92],[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],312,[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],[312,92],[]],[[[291,[-1,-2]]],[[291,[-1,-2]]],312,[]],[[[227,[-1,-2]]],[[227,[-1,-2]]],[311,306],[]],[[[303,[-1,-2]]],[[303,[-1,-2]]],[311,306],[]],[[[302,[-1,-2]]],[[302,[-1,-2]]],[311,306,312,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[227,[-1,-2]]],[[227,[-1,-2]]],[311,306],[]],[[[303,[-1,-2]]],[[303,[-1,-2]]],[311,306],[]],[[[302,[-1,-2]]],[[302,[-1,-2]]],[311,306,312,[238,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[292,[-1,-2]]],313,[]],[[[292,[-1,-2]],[292,[-1,-2]]],[[292,[-1,-2]]],313,[]],[[[227,[-2,-3]],-1,-1],[[227,[-2,-3]]],92,[[247,[-1],[[31,[]]]],92],[]],[[[303,[-2,-3]],-1,-1,-1],[[303,[-2,-3]]],92,[[247,[-1],[[31,[]]]],92],[]],[[[302,[-2,-3]],-1,-1],[[302,[-2,-3]]],92,[92,[247,[-1],[[31,[]]]]],[]],[[-1,-1],[[170,[-1,-2,-3]]],309,[],[]],[[-1,-1,-1],[[300,[-1,-2,-3]]],[309,307],[],[]],[[298,[200,[-1,-2]],[200,[-1,-2]]],[[200,[-1,-2]]],[],[]],[[299,[293,[-1,-2]],[293,[-1,-2]]],[[293,[-1,-2]]],[],[]],[[298,[267,[-1,-2]],[267,[-1,-2]]],[[267,[-1,-2]]],[],[]],[[299,[290,[-1,-2]],[290,[-1,-2]]],[[290,[-1,-2]]],[],[]],[[298,[223,[-1,-2]],[223,[-1,-2]]],[[223,[-1,-2]]],[],[]],[[299,[291,[-1,-2]],[291,[-1,-2]]],[[291,[-1,-2]]],[],[]],[[[227,[-1,-2]],[267,[-1,-2]]],41,[92,[246,[],[[31,[]]]]],[]],[255,255],[[[227,[-1,-2]]],[[267,[-1,-2]]],[92,[246,[],[[31,[]]]]],[]],[[[303,[-1,-2]]],[[290,[-1,-2]]],[92,[246,[],[[31,[]]]]],[]],0,[[-1,-1],[[267,[-1,-2]]],[],[]],[[-1,-1,-1],[[290,[-1,-2]]],[],[]],[[[224,[-1]],[224,[-1]]],[[300,[-1,-2,-3]]],[255,309,307],[],[]],[[[301,[-1,-2,-3]],[301,[-1,-2,-3]],-1],[[301,[-1,-2,-3]]],[],[],[]],[-1,[[200,[-1,-2]]],49,[]],[-1,[[293,[-1,-2]]],49,[]],[-1,[[267,[-1,-2]]],49,[]],[-1,[[290,[-1,-2]]],49,[]],[-1,[[296,[-1,-2,-3]]],49,[],[]],[-1,[[297,[-1,-2,-3]]],49,[],[]],[-1,[[223,[-1,-2]]],49,[]],[-1,[[291,[-1,-2]]],49,[]],[[[223,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[238,[],[[31,[]]]]],[]],[[[291,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[238,[],[[31,[]]]]],[]],[[[301,[-1,-2,-3]]],-1,266,[],[]],[[[292,[-1,-2]],[292,[-1,-2]]],[],246,[]],[[[200,[-1,-2]],[267,[-1,-2]]],[],246,[]],[[[200,[-1,-2]],[223,[-1,-2]]],[],246,[]],[[[200,[-1,-2]],[200,[-1,-2]]],[],246,[]],[[[293,[-1,-2]],[291,[-1,-2]]],[],246,[]],[[[293,[-1,-2]],[293,[-1,-2]]],[],246,[]],[[[293,[-1,-2]],[290,[-1,-2]]],[],246,[]],[[[294,[-1,-2,-3]],[294,[-1,-2,-3]]],[],246,[],[]],[[[295,[-1,-2]],[295,[-1,-2]]],[[295,[-1,-2]]],[[246,[],[[31,[]]]]],[]],[[[267,[-1,-2]],[267,[-1,-2]]],[],246,[]],[[[290,[-1,-2]],[290,[-1,-2]]],[],246,[]],[[[296,[-1,-2,-3]],[296,[-1,-4,-3]]],[],246,[],[],[]],[[[297,[-1,-2,-3]],[297,[-1,-4,-3]]],[],246,[],[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],[],246,[]],[[[291,[-1,-2]],[291,[-1,-2]]],[],246,[]],[[[292,[-1,-2]],[292,[-1,-2]]],41,268,[]],[[[200,[-1,-2]],[223,[-1,-2]]],41,[92,[246,[],[[31,[]]]]],[]],[[[200,[-1,-2]],[267,[-1,-2]]],41,268,[]],[[[293,[-1,-2]],[290,[-1,-2]]],41,268,[]],[[[293,[-1,-2]],[291,[-1,-2]]],41,[92,[246,[],[[31,[]]]]],[]],[[[295,[-1,-2]],[295,[-1,-2]]],41,268,[]],[[[267,[-1,-2]],[267,[-1,-2]]],41,268,[]],[[[290,[-1,-2]],[290,[-1,-2]]],41,268,[]],[[[296,[-1,-2,-3]],[296,[-1,-3,-3]]],41,268,[],[]],[[[297,[-1,-2,-3]],[297,[-1,-3,-3]]],41,268,[],[]],[[[223,[-1,-2]],[223,[-1,-2]]],41,[92,[246,[],[[31,[]]]]],[]],[[[291,[-1,-2]],[291,[-1,-2]]],41,[92,[246,[],[[31,[]]]]],[]],[-3,[[292,[-1,-2]]],[[238,[],[[31,[]]]],92,309],[],[[269,[],[[42,[[292,[-1,-2]]]]]]]],[-3,[[292,[-1,-2]]],[[238,[],[[31,[]]]],309],[],[[269,[],[[42,[[292,[-1,-2]]]]]]]],[-3,[[267,[-1,-2]]],[[238,[],[[31,[]]]],309],[],[[269,[],[[42,[[267,[-1,-2]]]]]]]],[-3,[[267,[-1,-2]]],[[238,[],[[31,[]]]],92,309],[],[[269,[],[[42,[[267,[-1,-2]]]]]]]],[-3,[[290,[-1,-2]]],[[238,[],[[31,[]]]],92,309],[],[[269,[],[[42,[[290,[-1,-2]]]]]]]],[-3,[[290,[-1,-2]]],[[238,[],[[31,[]]]],309],[],[[269,[],[[42,[[290,[-1,-2]]]]]]]],[-3,[[223,[-1,-2]]],[[238,[],[[31,[]]]],309],[],[[269,[],[[42,[[223,[-1,-2]]]]]]]],[-3,[[223,[-1,-2]]],[[238,[],[[31,[]]]],92,309],[],[[269,[],[[42,[[223,[-1,-2]]]]]]]],[-3,[[291,[-1,-2]]],[[238,[],[[31,[]]]],92,309],[],[[269,[],[[42,[[291,[-1,-2]]]]]]]],[-3,[[291,[-1,-2]]],[[238,[],[[31,[]]]],309],[],[[269,[],[[42,[[291,[-1,-2]]]]]]]],[255,255],[[[304,[-1,-2,-3]],[304,[-1,-4,-2]]],[[304,[-1,-4,-3]]],266,[],[],[]],[[[301,[-1,-2,-3]],[301,[-1,-3,-4]]],[[301,[-1,-2,-4]]],[],[],[],[]],[[[170,[-1,-2,-3]],[170,[-1,-3,-4]]],[[170,[-1,-2,-4]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[],[]],[[[300,[-1,-2,-3]],[300,[-1,-3,-4]]],[[300,[-1,-2,-4]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[],[]],[[[305,[-1,-2,-3]],[305,[-1,-3,-4]]],[[305,[-1,-2,-4]]],[],[],[],[]],[[[170,[-1,-2,-3]],[224,[-1]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],309,255],[],[]],[[[300,[-1,-2,-3]],-1,-1,-1,[224,[-1]]],[[300,[-1,-2,-3]]],[[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],[256,[],[[31,[]]]],92,309,307,255],[],[]],[[[170,[-1,-2,-3]],-1,-1],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309],[],[]],[[[300,[-1,-2,-3]],-1,-1,-1],[[300,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[170,[-1,-2,-3]],[223,[-1,-3]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[300,[-1,-2,-3]],[291,[-1,-3]]],[[300,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]],309,307],[],[]],[[[293,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[300,[-1,-2,-3]]],[[170,[-1,-2,-3]]],92,[],[]],[[[291,[-1,-2]]],[[223,[-1,-2]]],92,[]],[[[200,[-1,-2]]],[[293,[-1,-2]]],[309,92],[]],[[[304,[-1,-2,-3]]],[[301,[-1,-2,-3]]],266,[],[]],[[[170,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[309,307,92],[],[]],[[[223,[-1,-2]]],[[291,[-1,-2]]],[309,92],[]],[[[200,[-1,-2]]],[[278,[-1]]],92,[]],[[[293,[-1,-2]]],[[278,[-1]]],92,[]],[[[267,[-1,-2]]],[[278,[-1]]],92,[]],[[[290,[-1,-2]]],[[278,[-1]]],92,[]],[[[170,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[300,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[296,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[297,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[223,[-1,-2]]],[[278,[-1]]],92,[]],[[[291,[-1,-2]]],[[278,[-1]]],92,[]],[[[293,[-1,-2]]],[[278,[-1]]],[307,92],[]],[[[291,[-1,-2]]],[[278,[-1]]],[309,92],[]],[[[170,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[300,[-1,-2,-3]]],[[278,[-1]]],92,[],[]],[[[170,[-1,-2,-3]]],[[278,[[278,[-1]]]]],92,[],[]],[[[300,[-1,-2,-3]]],[[278,[[278,[-1]]]]],92,[],[]],[[[300,[-1,-2,-3]]],[[278,[[278,[-1]]]]],92,[],[]],[[[302,[-1,-2]]],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[227,[-1,-2]]],[[227,[113,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[113,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[113,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[113,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[113,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[113,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[113,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[113,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[113,-2]]],[251,92],[]],[[[227,[-1,-2]]],[[227,[270,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[270,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[270,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[270,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[270,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[270,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[270,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[270,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[270,-2]]],[251,92],[]],[[[227,[-1,-2]]],[[227,[288,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[288,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[288,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[288,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[288,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[288,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[288,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[288,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[288,-2]]],[251,92],[]],[[[227,[-1,-2]]],[[227,[283,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[283,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[283,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[283,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[283,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[283,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[283,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[283,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[283,-2]]],[251,92],[]],[[[227,[-1,-2]]],[[46,[[227,[-1,-2]]]]],[92,125],[]],[[[303,[-1,-2]]],[[46,[[303,[-1,-2]]]]],[92,125],[]],[[[302,[-1,-2]]],[[46,[[302,[-1,-2]]]]],[92,309,125],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[223,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[291,[-1,-2]]],[[293,[-1,-2]]],92,[]],[[[308,[-1,-2]]],[[46,[[200,[-1,-2]]]]],[92,[256,[],[[31,[]]]],309,125],[]],[[[308,[-1,-2]]],[[46,[[293,[-1,-2]]]]],[92,[256,[],[[31,[]]]],309,125],[]],[[[227,[-1,-2]]],[[302,[-1,-2]]],[92,[246,[],[[31,[]]]]],[]],[[[223,[-1,-2]]],[[267,[-1,-2]]],92,[]],[[[304,[-1,-2,-3]]],[[170,[-1,-2,-3]]],[92,[238,[],[[31,[]]]],[246,[],[[31,[]]]],[247,[],[[31,[]]]],265,255],[],[]],[[[301,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[],[],[]],[[[296,[-1,-2,-3]]],[[170,[-1,-2,-3]]],[309,307,92],[],[]],[[[297,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[309,307,92],[],[]],[[[223,[-1,-2]]],[[170,[-1,-2,-2]]],[309,307,92],[]],[[[291,[-1,-2]]],[[300,[-1,-2,-2]]],[309,307,92],[]],[[[305,[-1,-2,-3]]],[[300,[-1,-2,-3]]],[],[],[]],[[[200,[-1,-2]]],[[41,[-1,-1]]],92,[]],[[[293,[-1,-2]]],[[41,[-1,-1,-1]]],92,[]],[[[267,[-1,-2]]],[[41,[-1,-1]]],92,[]],[[[290,[-1,-2]]],[[41,[-1,-1,-1]]],92,[]],[[[296,[-1,-2,-3]]],[[41,[-1,-1]]],92,[],[]],[[[297,[-1,-2,-3]]],[[41,[-1,-1,-1]]],92,[],[]],[[[223,[-1,-2]]],[[41,[-1,-1]]],92,[]],[[[291,[-1,-2]]],[[41,[-1,-1,-1]]],92,[]],[[[293,[-1,-2]]],[[41,[-1,-1,-1,-1]]],[307,92],[]],[[[291,[-1,-2]]],[[41,[-1,-1,-1,-1]]],[309,92],[]],[[[227,[-1,-2]]],[[227,[61,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[61,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[61,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[61,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[61,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[61,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[61,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[61,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[61,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[286,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[286,-2]]],[251,92],[]],[[[227,[-1,-2]]],[[227,[-1,169]]],92,[]],[[[303,[-1,-2]]],[[303,[-1,169]]],92,[]],[[[200,[-1,-2]]],[[200,[-1,169]]],92,[]],[[[293,[-1,-2]]],[[293,[-1,169]]],92,[]],[[[302,[-1,-2]]],[[302,[-1,169]]],92,[]],[[[304,[-1,-2,-3]]],[[304,[-1,169,169]]],92,[],[]],[[[301,[-1,-2,-3]]],[[301,[-1,169,169]]],92,[],[]],[[[267,[-1,-2]]],[[267,[-1,169]]],92,[]],[[[290,[-1,-2]]],[[290,[-1,169]]],92,[]],[[[170,[-1,-2,-3]]],[[170,[-1,169,169]]],92,[],[]],[[[300,[-1,-2,-3]]],[[300,[-1,169,169]]],92,[],[]],[[[296,[-1,-2,-3]]],[[296,[-1,169,169]]],92,[],[]],[[[297,[-1,-2,-3]]],[[297,[-1,169,169]]],92,[],[]],[[[223,[-1,-2]]],[[223,[-1,169]]],92,[]],[[[291,[-1,-2]]],[[291,[-1,169]]],92,[]],[[[305,[-1,-2,-3]]],[[305,[-1,169,169]]],[],[],[]],[[[227,[-1,-2]]],[[227,[59,-2]]],[251,92],[]],[[[303,[-1,-2]]],[[303,[59,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[200,[59,-2]]],[251,92],[]],[[[293,[-1,-2]]],[[293,[59,-2]]],[251,92],[]],[[[302,[-1,-2]]],[[302,[59,-2]]],[251,92],[]],[[[267,[-1,-2]]],[[267,[59,-2]]],[251,92],[]],[[[290,[-1,-2]]],[[290,[59,-2]]],[251,92],[]],[[[223,[-1,-2]]],[[223,[59,-2]]],[251,92],[]],[[[291,[-1,-2]]],[[291,[59,-2]]],[251,92],[]],[[[200,[-1,-2]]],[[223,[-1,-2]]],92,[]],[[[293,[-1,-2]]],[[291,[-1,-2]]],92,[]],[[[267,[-1,-2]]],[[223,[-1,-2]]],92,[]],[[[290,[-1,-2]]],[[291,[-1,-2]]],92,[]],[[[296,[-1,-2,-3]]],[[223,[-1,-2]]],92,[],[]],[[[297,[-1,-2,-3]]],[[291,[-1,-2]]],92,[],[]],0,[[[296,[-1,-2,-3]],[227,[-1,-2]]],[[227,[-3]]],[238,92],[],[]],[[[294,[-1,-2,-3]],[227,[-1,-2]]],[[227,[-3]]],[92,247],[],[]],[[[297,[-1,-2,-3]],[227,[-1,-2]]],[[227,[-3]]],[238,92],[],[]],[[[294,[-1,-2,-3]],[303,[-1,-2]]],[[303,[-3]]],[92,247],[],[]],[[[297,[-1,-2,-3]],[303,[-1,-2]]],[[303,[-3]]],[238,92],[],[]],[[[304,[-1,169,169]],[200,[-1,169]]],[[200,[-1,169]]],236],[[[304,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-1,-3]]],266,[],[]],[[[294,[-1,169,169]],[200,[-1,169]]],[[200,[-1,169]]],236],[[[294,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-3]]],[92,247],[],[]],[[[170,[-1,169,169]],[200,[-1,169]]],[[200,[-1,169]]],236],[[[170,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[296,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-3]]],[238,92],[],[]],[[[296,[-1,169,169]],[200,[-1,169]]],[[200,[-1,169]]],236],[[[301,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-1,-3]]],[],[],[]],[[[300,[-1,-2,-3]],[200,[-1,-2]]],[[46,[[200,[-1,-3]]]]],[[256,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[297,[-1,-2,-3]],[200,[-1,-2]]],[[200,[-3]]],[238,92],[],[]],[[[300,[-1,-2,-3]],[200,[-1,-2]]],[[308,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[301,[-1,-2,-3]],[293,[-1,-2]]],[[293,[-1,-3]]],[],[],[]],[[[294,[-1,-2,-3]],[293,[-1,-2]]],[[293,[-3]]],[92,247],[],[]],[[[300,[-1,-2,-3]],[293,[-1,-2]]],[[46,[[293,[-1,-3]]]]],[[256,[],[[31,[]]]],309,125,92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[297,[-1,-2,-3]],[293,[-1,-2]]],[[293,[-3]]],[238,92],[],[]],[[[300,[-1,-2,-3]],[293,[-1,-2]]],[[308,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[294,[-1,-2,-3]],[302,[-1,-2]]],[[302,[-3]]],[92,247],[],[]],[[[296,[-1,-2,-3]],[302,[-1,-2]]],[[302,[-3]]],[[238,[],[[31,[]]]],92],[],[]],[[[297,[-1,-2,-3]],[302,[-1,-2]]],[[302,[-1,-3]]],[[238,[],[[31,[]]]],92],[],[]],[[[294,[-1,-2,-3]],[267,[-1,-2]]],[[267,[-3]]],[92,247],[],[]],[[[296,[-1,-2,-3]],[267,[-1,-2]]],[[267,[-1,-3]]],[],[],[]],[[[297,[-1,-2,-3]],[267,[-1,-2]]],[[267,[-1,-3]]],[],[],[]],[[[304,[-1,-2,-3]],[223,[-1,-2]]],[[223,[-1,-3]]],266,[],[]],[[[304,[-1,169,169]],[223,[-1,169]]],[[223,[-1,169]]],236],[[[294,[-1,169,169]],[223,[-1,169]]],[[223,[-1,169]]],236],[[[294,[-1,-2,-3]],[223,[-1,-2]]],[[223,[-3]]],[92,247],[],[]],[[[170,[-1,-2,-3]],[223,[-1,-2]]],[[223,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[170,[-1,169,169]],[223,[-1,169]]],[[223,[-1,169]]],236],[[[296,[-1,169,169]],[223,[-1,169]]],[[223,[-1,169]]],236],[[[301,[-1,-2,-3]],[223,[-1,-2]]],[[223,[-1,-3]]],[],[],[]],[[[300,[-1,-2,-3]],[223,[-1,-2]]],[[223,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[301,[-1,-2,-3]],[291,[-1,-2]]],[[291,[-1,-3]]],[],[],[]],[[[300,[-1,-2,-3]],[291,[-1,-2]]],[[291,[-1,-3]]],[92,[238,[],[[31,[]]]],[247,[],[[31,[]]]]],[],[]],[[[227,[-1,-2]],[223,[-1,-2]]],[[227,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[303,[-1,-2]],[291,[-1,-2]]],[[303,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[[302,[-1,-2]],[223,[-1,-2]]],[[302,[-1,-2]]],[92,[238,[],[[31,[]]]]],[]],[[-1,-1],[[170,[-1,-2,-3]]],[309,307],[],[]],[[-1,-1,-1],[[300,[-1,-2,-3]]],[309,307],[],[]],0,[[[227,[-1,-2]]],[[46,[[227,[-3,-2]]]]],[251,92],[],251],[[[303,[-1,-2]]],[[46,[[303,[-3,-2]]]]],[251,92],[],251],[[[292,[-1,-2]]],[[46,[[292,[-3,-2]]]]],[251,49],[],251],[[[200,[-1,-2]]],[[46,[[200,[-3,-2]]]]],[251,92],[],251],[[[293,[-1,-2]]],[[46,[[293,[-3,-2]]]]],[251,92],[],251],[[[302,[-1,-2]]],[[46,[[302,[-3,-2]]]]],[251,92],[],251],[[[294,[-1,-2,-3]]],[[46,[[294,[-4,-2,-3]]]]],251,[],[],251],[[[267,[-1,-2]]],[[46,[[267,[-3,-2]]]]],[251,92],[],251],[[[290,[-1,-2]]],[[46,[[290,[-3,-2]]]]],[251,92],[],251],[[[170,[-1,-2,-3]]],[[46,[[170,[-4,-2,-3]]]]],[251,92],[],[],251],[[[300,[-1,-2,-3]]],[[46,[[300,[-4,-2,-3]]]]],[251,92],[],[],251],[[[223,[-1,-2]]],[[46,[[223,[-3,-2]]]]],[251,92],[],251],[[[291,[-1,-2]]],[[46,[[291,[-3,-2]]]]],[251,92],[],251],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[[[223,[-1,-2]]],[[46,[[223,[-1,-2]]]]],266,[]],[[[291,[-1,-2]]],[[46,[[291,[-1,-2]]]]],266,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[227,[-1,-2]],[227,[-1,-2]]],[[227,[-1,-2]]],[92,125],[]],[[[303,[-1,-2]],[303,[-1,-2]]],[[303,[-1,-2]]],[92,125],[]],[[[302,[-1,-2]],[302,[-1,-2]]],[[302,[-1,-2]]],[92,125,[238,[],[[31,[]]]],[246,[],[[31,[]]]],309],[]],[[-1,-1,-1,-1],[[301,[-1,-2,-3]]],266,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[-1,-1],[[223,[-1,-2]]],[],[]],[[-1,-1,-1],[[291,[-1,-2]]],[],[]],[[[301,[-1,-2,-3]]],[[291,[-1,169]]],92,[],[]],[[[295,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],[[[303,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[290,[-1,-2]]],-1,[[247,[],[[31,[]]]],92],[]],0,[[[227,[-1,-2]]],-1,[92,[246,[],[[31,[]]]]],[]],[[[303,[-1,-2]]],-1,[92,[246,[],[[31,[]]]]],[]],[[[302,[-1,-2]]],-1,[92,[238,[],[[31,[]]]]],[]],0,0,[[[170,[-1,-2,-3]]],[[170,[-1,-2,-4]]],92,[],[],[]],[[[300,[-1,-2,-3]]],[[300,[-1,-2,-4]]],92,[],[],[]],[[[223,[-1,-2]],-1],[[223,[-1,-2]]],266,[]],[[[223,[-1,-2]],-1],[[223,[-1,-2]]],266,[]],[[[291,[-1,-2]],-1],[[291,[-1,-2]]],266,[]],[[[223,[-1,-2]],-1],[[223,[-1,-2]]],266,[]],[[[291,[-1,-2]],-1],[[291,[-1,-2]]],266,[]],[[[170,[-1,-2,-3]]],[[170,[-1,-4,-3]]],92,[],[],[]],[[[300,[-1,-2,-3]]],[[300,[-1,-4,-3]]],92,[],[],[]],0,0,0,0,0,0,0,0,0,[[[227,[-1,-2]]],[[208,[-1]]],92,[]],[[[303,[-1,-2]]],[[208,[-1]]],92,[]],[[[302,[-1,-2]]],[[208,[-1]]],[92,[238,[],[[31,[]]]]],[]],[[[293,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[291,[-1,-2]]],[[223,[-1,-2]]],92,[]],[299,298],[[[303,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],[[[293,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[291,[-1,-2]]],[[223,[-1,-2]]],92,[]],[299,298],[[[303,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],0,0,0,0,0,0,0,0,0,[[[227,[-1,-2]]],[[208,[-1]]],92,[]],[[[303,[-1,-2]]],[[208,[-1]]],92,[]],[[[302,[-1,-2]]],[[208,[-1]]],[92,[238,[],[[31,[]]]]],[]],[[[200,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[223,[-1,-2]]],[[223,[-1,-2]]],92,[]],[[[293,[-1,-2]]],[[200,[-1,-2]]],92,[]],[[[291,[-1,-2]]],[[223,[-1,-2]]],92,[]],[299,298],[[[303,[-1,-2]]],-1,[92,[247,[],[[31,[]]]],[246,[],[[31,[]]]]],[]],0,0,0,0,0,[[[303,[-1,-2]]],[[208,[-1]]],92,[]],[[],[[227,[-1,-2]]],309,[]],[[],[[303,[-1,-2]]],309,[]],[[],[[292,[-1,-2]]],309,[]],[[],[[200,[-1,-2]]],309,[]],[[],[[200,[-1,-2]]],309,[]],[[],[[293,[-1,-2]]],309,[]],[[],[[293,[-1,-2]]],309,[]],[[],[[302,[-1,-2]]],309,[]],[[],[[295,[-1,-2]]],309,[]],[[],[[267,[-1,-2]]],309,[]],[[],[[267,[-1,-2]]],309,[]],[[],[[290,[-1,-2]]],309,[]],[[],[[290,[-1,-2]]],309,[]],[[],[[223,[-1,-2]]],309,[]],[[],[[223,[-1,-2]]],309,[]],[[],[[291,[-1,-2]]],309,[]],[[],[[291,[-1,-2]]],309,[]],0,[[],-1,[]],[[250,250],4],[[250,250,-1],4,[]],[[-1,-1],-1,125],[[-1,-1],-1,125],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[306,306],[311,311],[[],307],[312,312],[[],309],0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[244,[-1]],-1],[[314,[-1]]],236],[[[260,[-1]]],[[46,[[200,[-1,169]]]]],236],[[[261,[-1]]],[[46,[-1]]],236],[[[260,[-1]]],[[41,[59,[46,[59]]]]],236],[[[261,[-1]]],[[41,[59,[46,[59]]]]],236],0,[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,[[[241,[],[[240,[-1]]]],-1],[[241,[],[[240,[-1]]]]],236],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[241,[],[[240,[-1]]]],-1],[[241,[],[[240,[-1]]]]],236],[[[241,[],[[240,[-1]]]],-1],[[223,[-1,169]]],236],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[241,[],[[240,[-1]]]]],[[241,[],[[240,[-1]]]]],236],[[[241,[],[[240,[-1]]]],-1,163],41,236],[[[241,[],[[240,[-1]]]]],[[200,[-1,169]]],236],[[[241,[],[[240,[-1]]]],-1],[[200,[-1,169]]],236],[[[241,[],[[240,[-1]]]],-1],[[41,[[241,[],[[240,[-1]]]],[241,[],[[240,[-1]]]]]]],236],[[[241,[],[[240,[-1]]]],[208,[-1]]],[[241,[],[[240,[-1]]]]],236],[[[241,[],[[240,[-1]]]]],[[200,[-1,169]]],236],[[221,[200,[-1,169]]],[[200,[-1,169]]],[]],[[221,[223,[-1,169]]],[[223,[-1,169]]],[]],[[[241,[],[[240,[-1]]]],-1],-1,236],[[[241,[],[[240,[-1]]]],-1],-1,236],[[-1,-1,-1,-1],[[254,[-1]]],236],[[[223,[-1,169]],[223,[-1,169]]],-1,236],[[[200,[-1,169]],[200,[-1,169]],[200,[-1,169]]],-1,236],[[-1,-1],[[41,[-1,-1]]],262],[[[223,[-1,169]]],[[223,[-1,169]]],236],[[[223,[-1,169]]],[[223,[-1,169]]],262],0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[315,[-1]]],[[269,[],[[42,[[200,[113,169]]]]]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[[316,113],[[317,[316]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[113,-1],[[317,[-1]]],[[269,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]]],[[-1,-2],[[318,[-2,-1]]],[[221,[113]]],[[269,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]]],[[4,-1],[[315,[-1]]],[[269,[],[[42,[[200,[113,169]]]]]]]],[[[219,[-1]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],[[269,[],[[42,[[189,[[41,[[200,[113,169]],[97,[113]]]],[200,[113,169]]]]]]]]]],[[[317,[-1]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],[[269,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]]],[[[318,[-1,-2]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],[[269,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]],[[221,[113]]]],[[[315,[-1]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],[[269,[],[[42,[[200,[113,169]]]]]]]],[-1,[[315,[-1]]],[[269,[],[[42,[[200,[113,169]]]]]]]],[[[317,[-1]]],[[41,[59,[46,[59]]]]],[[269,[],[[42,[[189,[[200,[113,169]],[200,[113,169]]]]]]]]]],[[316,-1],[[318,[316,-1]]],[[221,[113]]]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[219,[-1]]],-1,[[269,[],[[42,[[189,[[41,[[200,[113,169]],[97,[113]]]],[200,[113,169]]]]]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[113,113],[[200,[113,169]]]],0,[[113,113],[[267,[113,169]]]],[[113,113],[[223,[113,169]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[184,[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[97,[113]]],182],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[184,168],[187,168],[187,168],[184,184],[187,187],[210,210],[215,215],[206,206],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[184,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[],184],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[184,4],41],[[187,4],41],[[187,4],41],[[184,[97,[179]]],41],[[187,[97,[179]]],41],[[206,77],[[79,[41,78]]]],[[215,113,-1],41,[[163,[[189,[[41,[[200,[113,169]],[97,[113]]]],[200,[113,169]]]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[218,168],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[184,[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[97,[113]]],182],[[],184],[59,187],[218,46],[210,[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]]],[215,46],[206,[[46,[[189,[182,197]]]]]],[184,59],[187,59],[187,59],[215,210],[[184,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[187,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[184,59,59],41],[[187,59,59],41],[[187,59,59],41],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[59,59],184],[184,[[220,[184]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[[186,[200,[113,169]],[97,[113]]],182],[[186,[200,[113,169]]],182],[[319,[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[97,[113]]],182],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[186,59],[186,59],[319,59],[319,59],[212,212],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[186,[200,[113,169]],[200,[113,169]],[200,[113,169]]],182],[[186,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[[186,4],41],[[186,4],41],[[319,4],41],[[319,4],41],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[186,[200,[113,169]],[97,[113]]],182],[[186,[200,[113,169]]],182],[[319,[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[97,[113]]],182],[[180,59],319],[212,[[46,[179]]]],[212,[[46,[179]]]],[186,59],[319,59],[[186,[200,[113,169]],[200,[113,169]]],182],[[186,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[319,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[186,59,59],41],[[186,59,59],41],[[319,59,59],41],[[319,59,59],41],[212,[[41,[59,[46,[59]]]]]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[186,59],319],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[214,214],[[[213,[-1]]],[[213,[-1]]],49],[[[216,[-1]]],[[216,[-1]]],49],[207,207],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[208,[61]],4],207],[214,[[46,[[189,[182,197]]]]]],[[[213,[-1]]],[[46,[[189,[-1,41]]]]],[]],[[[216,[-1]]],[[46,[[189,[[200,[113,169]],[200,[113,169]]]]]]],204],[207,[[46,[[189,[182,197]]]]]],[-1,[[320,[-2]]],[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,[[222,[200,[113,169]],113,196,[97,[113]]],41],[[222,[200,[113,169]],[223,[113,169]],[224,[113]],196,[97,[113]]],41],[[222,[225,[113]],[97,[113]]],[[41,[182,182]]]],[[222,[200,[113,169]],[97,[113]]],182],[[222,[190,[[200,[113,169]]]],[97,[113]]],41],[[226,[190,[[200,[113,169]]]]],41],[[222,[227,[113,169]],196,[97,[113]]],41],[[222,[227,[113,169]],228,196,[97,[113]]],41],[[226,[223,[113,169]],[224,[113]],188,[200,[113,169]]],41],[[222,[200,[113,169]],[97,[113]]],182],[[[232,[],[[231,[-1]]]]],-1,[]],[226,41],[222,41],[[222,[200,[113,169]],[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]],[200,[113,169]],[200,[113,169]]],41],[[222,4],41],[[222,[189,[[41,[[200,[113,169]],[97,[113]]]],[200,[113,169]]]]],41],[[222,113],[[229,[222]]]],[[316,113],[[317,[316]]]],[[226,113],41],[[222,[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]]],41],[[226,[200,[113,169]]],41],[222,59],[[222,[189,[[200,[113,169]],[200,[113,169]]]],[97,[113]]],41],[[222,[200,[113,169]],[200,[113,169]],[97,[113]]],182],[[226,[200,[113,169]],[200,[113,169]]],41],[[226,[223,[113,169]],[224,[113]],188,[223,[113,169]]],41],[[226,[223,[113,169]],[223,[113,169]],[223,[113,169]]],41],[[226,113],41],[[226,[223,[113,169]]],41],[[226,[223,[113,169]]],41],[[226,[223,[113,169]],[223,[113,169]]],41],[[226,113],41],[[222,59,59],41],[[226,59,59],41],[[226,[200,[113,169]],[200,[113,169]]],41],[[226,[200,[113,169]]],41],[[226,[223,[113,169]],[223,[113,169]]],41],[[226,[223,[113,169]]],41],[[222,-1],[[230,[222,-1]]],[[221,[113]]]],[[316,-1],[[318,[316,-1]]],[[221,[113]]]],[[226,113],41],[222,[[220,[222]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[33,[],[[146,[-1]]]],-1,4],11,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[11,11],[[[321,[-1]]],[[321,[-1]]],49],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[29,[-1,-2,-3]],37,-3,-2,68,69,70,66],41,[],[33,34],35],[59,41],[59,41],[59,41],[[[321,[-1]],[321,[-1]]],4,93],[[11,77],[[79,[41,78]]]],[[[321,[-1]],77],148,164],[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,25],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[33,[],[[146,[-1]]]],-1,4],11,107],[[[29,[-1,-2,-3]],321],[[29,[-1,-2,-3]]],[],[33,34],35],0,[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[29,[-1,-2,-3]],37,-3,94],95,[],[33,34],35],0,[[[29,[-1,-2,-3]],37,69,70,66,-3],99,[],[33,34],35],[[-1,4,-3],[[29,[-2,-4,-5]]],[[25,[30]]],[],[[32,[4],[[31,[-2]]]]],[33,34],35],[[[29,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],66],103,[],[33,34],35],0,[[[29,[-1,-2,-3]]],[[62,[84]]],[],[33,34],35],[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,[[25,[58]]]],0,[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,[[25,[58]]]],[[[29,[-1,-2,-3]]],127,[],[33,34],35],[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,25],[[[29,[-1,-2,-3]]],130,[],[33,34],35],0,[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,[[25,[322]]]],[[[29,[-1,-2,-3]],323],[[29,[-1,-2,-3]]],[],[33,34],35],[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,[[25,[58]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[29,[-1,-2,-3]],-4],[[29,[-1,-2,-3]]],[],[33,34],35,[[25,[84]]]],0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-2,[[38,[30]]],48,[[43,[],[[42,[-1]]]]]],[[[47,[-1,-2,-3,-4]]],[[38,[37]]],[48,49],49,[54,50,112,51],35],[[[44,[-1]]],[[44,[-1]]],49],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[47,[-1,-2,-3,-4]],37,-4,-3,68,69,70,66],41,[48,49],49,[54,50,112,51],35],[59,41],[59,41],[[[44,[-1]],77],148,164],[[[47,[-1,-2,-3,-4]]],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[47,[-1,-2,-3,-4]],324],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[47,[-1,-2,-3,-4]],37,-4,94],95,[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[[25,[322]]]],[[[47,[-1,-2,-3,-4]],37,69,70,66,-4],99,[48,49],49,[54,50,112,51],35],[[[44,[-1]],45,[46,[-1]],-3],[[47,[-1,-2,-4,-5]]],[48,49],[],[[32,[-1],[[31,[-2]]]]],[50,51],35],[[[38,[-1]]],[[44,[-1]]],[48,49]],[[[47,[-1,-2,-3,-4]],-2],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35],[[[47,[-1,-2,-3,-4]],37,100,69,70,-4,101,[102,[-2]],66],103,[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[[32,[30],[[31,[-2]]]]]],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[[32,[-1],[[31,[-2]]]]]],[[[47,[-1,-2,-3,-4]],37,69,-4],[[46,[[108,[-2,-3,-4]]]]],[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[[25,[149]]]],[[-2,-4,45],[[0,[[269,[],[[42,[-1]]]]]]],[],[[43,[],[[42,[-1]]]]],[[325,[45]]],[[43,[],[[42,[-3]]]]]],[[[47,[-1,-2,-3,-4]],113],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35],[[[47,[-1,-2,-3,-4]]],[[62,[84]]],[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]]],127,[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[25,25,49]],[[[47,[-1,-2,-3,-4]]],130,[48,49],49,[54,50,112,51],35],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[25,49]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[47,[-1,-2,-3,-4]],-5],[[47,[-1,-2,-3,-4]]],[48,49],[],[50,51],35,[[25,[84]]]],[[[38,[-1]],[46,[-1]]],[[44,[-1]]],[48,49]],0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[53,[-1,-2,-3]],326],[[53,[-1,-2,-3]]],[],54,23],[[[53,[-1,-2,-3]],327],[[53,[-1,-2,-3]]],[],54,23],[[[54,[],[[146,[-1]]]],-1],17,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[53,[-1,-2,-3]]],[[53,[-1,-2,-3]]],[],54,23],[[[53,[-1,-2,-3]]],[[53,[-1,-2,-3]]],[],54,23],[[[53,[-1,-2,-3]]],[[38,[37]]],[],54,23],[17,17],[328,328],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],17],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[53,[-1,-2,-3]],37],41,[],54,23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[53,[-1,-2,-3]],37,-3,-2,68,69,70,66],41,[],54,23],[[-1,17,66],41,23],[59,41],[59,41],[59,41],[[328,328],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[17,77],[[79,[41,78]]]],[[328,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[328,-1],41,205],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,[[25,[84]]]],[[[53,[-1,-2,-3]],328],[[53,[-1,-2,-3]]],[],54,23],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[94,84,84,113,113,149,326,327,-1],95,[[57,[94],[[31,[95]]]]]],[[[53,[-1,-2,-3]],37,-3,94],95,[],54,23],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,[[25,[58]]]],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,[[25,[58]]]],[[[53,[-1,-2,-3]],37,69,70,66,-3],99,[],54,23],[-4,[[53,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],[-1,328,[[25,[[98,[45]]]]]],[[[53,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],66],103,[],54,23],[[[53,[-1,-2,-3]],37,69,-3,106],41,[],54,23],[[[53,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],54,23],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,[[25,[149]]]],0,[[[53,[-1,-2,-3]]],[[62,[84]]],[],54,23],[[[53,[-1,-2,-3]]],127,[],54,23],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,25],[[[53,[-1,-2,-3]]],130,[],54,23],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],328],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[328,[[80,[[46,[66]]]]]],[[[53,[-1,-2,-3]],-4],[[53,[-1,-2,-3]]],[],54,23,[[25,[84]]]],[[17,-1],17,[[25,[75]]]],[[17,-1,-2],17,[[25,[64]]],[[25,[58]]]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[63,63],[65,65],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[87,[-1]],329],[[87,[-1]]],[]],[63,330],[[],65],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,69,-1,329,65],41,[49,39],[[332,[],[[331,[-1]]]]]],[[[87,[-1]],37,-2,-3,68,69,70,66],41,[49,39],[[332,[],[[331,[-1]]]]],[]],[59,41],[59,41],[59,41],[[63,63],4],[[65,65],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[[87,[-1]],65],[[87,[-1]]],[]],[[63,77],[[79,[41,78]]]],[[65,77],[[79,[41,78]]]],[[[87,[-1]],77],148,164],[-1,-1,[]],[-1,63,[[25,[333]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,63,[[325,[[97,[96]]]],334,335]],[-1,63,[[25,[333]]]],[[61,61,-1],63,[[325,[[97,[96]]]],334,335]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[63,-1],41,205],[[65,-1],41,205],[[[87,[-1]],-2],[[87,[-1]]],[],[[25,[84]]]],[63,286],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-2,94,-1,84,84,329],95,[],[[332,[],[[331,[-1]]]]]],[[[87,[-1]],37,-2,94],95,[49,39],[[332,[],[[331,[-1]]]]]],[-2,[[87,[-1]]],[],[[25,[-1]]]],[[[87,[-1]]],[[62,[84]]],[49,39]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,[-1,[[336,[-1]]],[]],[[[87,[-1]],-2],[[87,[-1]]],[],[[25,[84]]]],0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[337,337],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],337],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[336,[-1]],37,-2,-3,68,69,70,66],41,[49,39],[[332,[],[[331,[-1]]]]],[]],[59,41],[59,41],[[337,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[336,[-1]],-2],[[336,[-1]]],[],[[25,[84]]]],[[-1,337,62],62,332],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[337,4],[[[336,[-1]],37,-2,94],95,[49,39],[[332,[],[[331,[-1]]]]]],[[[336,[-1]],113],[[336,[-1]]],[]],[[[336,[-1]],113],[[336,[-1]]],[]],[[[336,[-1]],37,69,70,66,-2],99,[49,39],[[332,[],[[331,[-1]]]]]],[-1,[[336,[-1]]],[]],[[],337],[[[336,[-1]],37,100,69,70,-2,101,[102,[-3]],66],103,[49,39],[[332,[],[[331,[-1]]]]],[]],[[[336,[-1]],-2],[[336,[-1]]],[],[[25,[58]]]],[[[336,[-1]],113],[[336,[-1]]],[]],[[[336,[-1]]],[[62,[84]]],[49,39]],[[[336,[-1]]],127,[49,39]],[[[336,[-1]]],130,[49,39]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[336,[-1]],-2],[[336,[-1]]],[],[[25,[84]]]],0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[91,[-1,-2,-3,-4]],338],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[91,[-1,-2,-3,-4]]],[[38,[37]]],[92,93],[],[],23],[-1,-2,[],[]],[[],[[91,[-1,-2,-3]]],[92,93],[],23],[59,-1,[]],[59,-1,[]],[[[91,[-1,-2,-3,-4]],37],41,[92,93],[],[],23],[-1,-2,[],[]],[[[91,[-1,-2,-3,-4]],37,-4,-3,68,69,70,66],41,[92,93],[],[],23],[59,41],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[[91,[-1,-2,-3,-4]],-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[84]]]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[91,[-1,-2,-3,-4]],37,-4,94],95,[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[58]]]],[[[91,[-1,-2,-3,-4]],37,69,70,66,-4],99,[92,93],[],[],23],[[],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],37,100,69,70,-4,101,[102,[-2]],66],103,[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],37,69,-4,106],41,[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],37,69,-4],[[46,[[108,[-2,-3,-4]]]]],[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[149]]]],[[[91,[-1,-2,-3,-4]],-1,-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[[24,[-2,-3,-4]]]]]],[[[91,[-1,-2,-3,-4]]],[[62,[84]]],[92,93],[],[],23],[[[91,[-1,-2,-3,-4]],-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[58]]]],[[[91,[-1,-2,-3,-4]]],127,[92,93],[],[],23],[[[91,[-1,-2,-3,-4]]],130,[92,93],[],[],23],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[[[91,[-1,-2,-3,-4]],-5],[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[25,[84]]]],[-5,[[91,[-1,-2,-3,-4]]],[92,93],[],[],23,[[43,[],[[42,[[41,[-1,[24,[-2,-3,-4]]]]]]]]]],0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[51,[],[[146,[-1]]]],-1],19,[107,49]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[19,19],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],339],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[[19,77],[[79,[41,78]]]],[[339,77],148],[[[340,[-1,-2,-3,-4]],-5],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35,25],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[339,[97,[-1]],[46,[59]],-3,[46,[32]]],[[340,[-1,-2,-4,-5]]],[110,49],[],[[163,[-1],[[31,[-2]]]]],[51,54,112],35],[[],339],[[[340,[-1,-2,-3,-4]],73,113],[[108,[-2,-3,-4]]],[110,49],[],[51,54,112],35],[[[340,[-1,-2,-3,-4]],-5],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35,[[25,[149]]]],0,0,[[[340,[-1,-2,-3,-4]],-5],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35,25],0,[[[340,[-1,-2,-3,-4]],-5],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35,[[25,[322]]]],[[[340,[-1,-2,-3,-4]],323],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35],[[[340,[-1,-2,-3,-4]],-5],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35,[[25,[58]]]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[340,[-1,-2,-3,-4]],113],[[340,[-1,-2,-3,-4]]],[110,49],[],[51,54,112],35],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[341,[-1,-2,-3]]],[[341,[-1,-2,-3]]],[],54,23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[342,69,73],4],[[[343,[-1,-2,-3]],69,73],4,[],54,23],[[[344,[-1,-2,-3]]],[[38,[37]]],[],[345,54],23],[85,85],[86,86],[346,346],[[[347,[-1]]],[[347,[-1]]],49],[348,348],[349,349],[350,350],[351,351],[352,352],[353,353],[354,354],[355,355],[356,356],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[350,350],233],[[351,351],233],0,[[-1,-2],233,[],[]],[[-1,-2],233,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[341,[-1,-2,-3]],-4],[[341,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],[[],354],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[344,[-1,-2,-3]],37],41,[],[345,54],23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[357,349,69,70,-1,-2,68,66,113,[46,[113]],-4,-5],41,23,345,[],[[269,[],[[42,[[41,[350,-3]]]]]]],[[32,[-3,-1,68,69,70,66]]]],[[[343,[-1,-2,-3]],37,-3,-2,68,69,70,66],41,[],54,23],[[[341,[-1,-2,-3]],37,-3,-2,68,69,70,66,4],41,[],54,23],[[[344,[-1,-2,-3]],37,-3,-2,68,69,70,66],41,[],[345,54],23],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[86,86],4],[[346,346],4],[[348,348],4],[[350,350],4],[[351,351],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[85,77],[[79,[41,78]]]],[[86,77],[[79,[41,78]]]],[[346,77],148],[[[347,[-1]],77],148,164],[[348,77],148],[[349,77],148],[[350,77],148],[[351,77],148],[[352,77],148],[[353,77],148],[[354,77],148],[[355,77],148],[[356,77],148],[[[358,[-1]],77],148,164],[-1,-1,[]],[-1,-1,[]],[-4,[[343,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[346,-1],41,205],[[349,-1],41,205],[[350,-1],41,205],[[351,-1],41,205],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,[[25,[84]]]],[[[345,[],[[146,[-1]]]],-1],85,107],[[[345,[],[[146,[-1]]]],-1],[[46,[86]]],107],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[341,[-1,-2,-3]],69,73],4,[],54,23],[[[358,[-1]]],[[88,[269]]],[]],[[37,-1,94,349,84,84,113,-3,-4],95,[],[],[[269,[],[[42,[[41,[350,-2]]]]]]],[[32,[-2,37,-1,94],[[31,[95]]]]]],[[[344,[-1,-2,-3]],37,-3,94],95,[],[345,54],23],[[[358,[-1]]],349,[]],[[357,349,69,70,113,[46,[113]]],[[46,[99]]]],[[[344,[-1,-2,-3]],37,69,70,66,-3],99,[],[345,54],23],[-4,[[343,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],[-4,[[341,[-1,-2,-3]]],[],54,23,[[25,[[24,[-1,-2,-3]]]]]],[[[359,[-1]],-5],[[344,[-2,-3,-4]]],[],[],[345,54],23,[[32,[350,-1,4],[[31,[[343,[-2,-3,-4]]]]]]]],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,[[32,[350],[[31,[-1]]]]]],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,[[32,[352],[[31,[-1]]]]]],[[[344,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],66],103,[],[345,54],23],[[[344,[-1,-2,-3]],-4,-5],[[344,[-1,-2,-3]]],[],[345,54],23,[[25,[58]]],[[32,[356],[[31,[-1]]]]]],[[[344,[-1,-2,-3]],37,69,-3,106],41,[],[345,54],23],[[[344,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],[345,54],23],[[[341,[-1,-2,-3]],-4],[[341,[-1,-2,-3]]],[],54,23,[[25,[149]]]],[[349,113,62],[[360,[350,66]]]],[[350,350],[[46,[233]]]],[[351,351],[[46,[233]]]],[[[345,[],[[146,[-1]]]],-1],[[46,[86]]],107],0,[[[344,[-1,-2,-3]]],[[62,[84]]],[],[345,54],23],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,[[25,[58]]]],[[346,66,113,113],[[41,[66,66]]]],0,[[346,66,113,113],66],[[349,113,62],[[360,[351,[41,[346,66,113]]]]]],[349,[[0,[[269,[],[[42,[351]]]]]]]],0,[[[344,[-1,-2,-3]]],127,[],[345,54],23],[[[343,[-1,-2,-3]],-4],[[343,[-1,-2,-3]]],[],54,23,25],[[[341,[-1,-2,-3]],-4],[[341,[-1,-2,-3]]],[],54,23,25],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,25],[[[344,[-1,-2,-3]]],130,[],[345,54],23],[[[343,[-1,-2,-3]],[341,[-1,-2,-3]]],[[343,[-1,-2,-3]]],[],54,23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[357,349,100,69,70,[102,[-1]],113,-3,[46,[[88,[32]]]],[46,[[88,[32]]]],[46,[[41,[113,[88,[32]]]]]]],103,[],342,[[269,[],[[42,[[41,[350,-2]]]]]]]],[[[344,[-1,-2,-3]],-4],[[344,[-1,-2,-3]]],[],[345,54],23,[[25,[84]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[359,[-1]],350,348],[[46,[350]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[357,[[46,[[41,[350,73]]]]]],[[[359,[-1]]],[[359,[-1]]],49],[361,361],[357,357],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[[359,[-1]],350],[[46,[[41,[-1,350]]]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[[[359,[-1]],350,353],41,[]],[59,41],[59,41],[[357,357],4],[[[359,[-1]],77],148,164],[[361,77],148],[[357,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[[[362,[350,-1]],[347,[-1]],59],361,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[359,[-1]],350],[[46,[-1]]],[]],[[[359,[-1]],350],[[46,[-1]]],[]],[[],59],[[],59],[[],59],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[359,[-1]]],4,[]],[[[359,[-1]]],[[0,[[269,[],[[42,[[41,[350,-1]]]]]]]]],[]],[[[359,[-1]]],[[0,[[269,[],[[42,[[41,[350,-1]]]]]]]]],[]],[[[359,[-1]]],349,[]],[361,349],[[[359,[-1]]],59,[]],[[[359,[-1]],350],41,[]],[[[359,[-1]]],[[46,[350]]],[]],[[[359,[-1]],350,355],41,[]],[-1,[[41,[[359,[-1]],350]]],[]],0,[357,[[46,[[41,[350,73]]]]]],[357,[[46,[[41,[351,346]]]]]],[[[359,[-1]],351,113],41,[]],[[[359,[-1]]],41,[]],[[[359,[-1]],346,350,-1],[[46,[[41,[350,351]]]]],[]],[[[359,[-1]],350,350,354],41,[]],[[[359,[-1]],350,350],41,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-2,[[359,[-1]]],[],[[25,[[347,[-1]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[111,[],[[146,[-1]]]],-1],2,[107,49]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[2,2],[[[363,[-1]]],[[363,[-1]]],49],[[[364,[-1]]],[[364,[-1]]],49],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],[[365,[-1]]],366],[[],[[363,[-1]]],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2,69,70,149,[46,[58]],322,323,[46,[45]],[46,[-3]],363,-4,66],41,35,111,110,[[57,[],[[31,[365]]]]]],[[[109,[-1,-2,-3,-4]],37,-4,-3,68,69,70,66],41,[49,110,93],[],[111,112,51,54],35],[59,41],[59,41],[59,41],[59,41],[59,41],[[[363,[-1]],[363,[-1]]],4,93],[[[364,[-1]],[364,[-1]]],4,93],[[2,77],[[79,[41,78]]]],[[[365,[-1]],77],148,[164,366]],[[[363,[-1]],77],148,164],[[[364,[-1]],77],148,164],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,25],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[109,[-1,-2,-3,-4]],363],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35],0,[[[111,[],[[146,[-1]]]],-1],2,[107,49]],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[365,-1,94,84,149,[46,[58]],322,323,46,[46,[45]],[97,[-2]]],95,35,110],[[[109,[-1,-2,-3,-4]],37,-4,94],95,[49,110,93],[],[111,112,51,54],35],0,[[69,70],99],[[[109,[-1,-2,-3,-4]],37,69,70,66,-4],99,[49,110,93],[],[111,112,51,54],35],[[-2,[46,[-1]],-4],[[109,[-1,-3,-5,-6]]],[110,93],[[25,[[98,[[97,[-1]]]]]]],[],[[32,[-1],[[31,[-3]]]]],[111,112,51,54],35],[[[109,[-1,-2,-3,-4]],37,100,69,70,-4,101,[102,[-2]],66],103,[49,110,93],[],[111,112,51,54],35],[[69,365,149,[46,[58]],323,[97,[-1]],32],[[46,[[108,[-2,-3,-4]]]]],[49,110],[],[111,112,51,54],35],[[[109,[-1,-2,-3,-4]],37,69,-4],[[46,[[108,[-2,-3,-4]]]]],[49,110,93],[],[111,112,51,54],35],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,[[25,[149]]]],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,[[25,[30]]]],0,0,[[[109,[-1,-2,-3,-4]]],[[62,[84]]],[49,110,93],[],[111,112,51,54],35],0,[[[109,[-1,-2,-3,-4]]],127,[49,110,93],[],[111,112,51,54],35],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,25],[[[109,[-1,-2,-3,-4]]],130,[49,110,93],[],[111,112,51,54],35],0,[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,[[25,[322]]]],[[[109,[-1,-2,-3,-4]],323],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,[[25,[58]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[100,69,70,[102,[-1]],32,[46,[-2]],[97,[-2]],-4],103,[],[93,49],366,[[57,[],[[31,[[365,[-3]]]]]]]],[[[109,[-1,-2,-3,-4]],-5],[[109,[-1,-2,-3,-4]]],[110,93],[],[111,112,51,54],35,[[25,[84]]]],0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[116,[],[[146,[-1]]]],-1],16,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[16,16],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[115,[-1]],37,-2,-1,68,69,70,66],41,116,23],[59,41],[59,41],[[16,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[115,[-1]],-2],[[115,[-1]]],116,[[25,[84]]]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[115,[-1]],37,-2,94],95,116,23],[[[114,[113]],113],[[115,[-1]]],116],[[[115,[-1]]],[[62,[84]]],116],[[[115,[-1]],-2],[[115,[-1]]],116,25],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[115,[-1]],-2],[[115,[-1]]],116,[[25,[84]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[367,287],367],[368,368],[369,369],[370,370],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[367,64,64],367],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[367,37,40,-1,68,69,70,66],41,[]],[59,41],[59,41],[59,41],[59,41],[59,41],[[368,368],4],[[369,369],4],[[370,370],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[367,77],148],[[371,77],148],[[368,77],148],[[369,77],148],[[370,77],148],[[370,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[372,370],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[367,37,40,94],95],[371,367],[-1,[[79,[371,370]]],[[325,[[97,[96]]]]]],[367,[[62,[84]]]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,137,[]],[-1,30,[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[-1,369],[[79,[371,370]]],[[325,[[97,[96]]]]]],[[-1,368,369],[[79,[371,370]]],[[325,[[97,[96]]]]]],0,0,0,0,0,0,[[[119,[],[[146,[-1]]]],-1,4],7,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[7,7],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[[[117,[-1,-2,-3]],37,-3,-2,68,69,70,66],41,49,[119,34],35],[59,41],[59,41],[[7,77],[[79,[41,78]]]],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,25],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[119,[],[[146,[-1]]]],-1,4],7,107],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[117,[-1,-2,-3]],37,-3,94],95,49,[119,34],35],[[[117,[-1,-2,-3]],37,69,70,66,-3],99,49,[119,34],35],[[-1,-2,[46,[-2]],-4],[[117,[-3,-5,-6]]],[[25,[30]]],[118,92],49,[[57,[-2],[[31,[-3]]]]],119,35],[[[117,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],66],103,49,[119,34],35],[[[117,[-1,-2,-3]]],[[62,[84]]],49,[119,34],35],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,[[25,[58]]]],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,[[25,[58]]]],[[[117,[-1,-2,-3]]],127,49,[119,34],35],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,25],[[[117,[-1,-2,-3]]],130,49,[119,34],35],0,[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,[[25,[322]]]],[[[117,[-1,-2,-3]],323],[[117,[-1,-2,-3]]],49,119,35],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,[[25,[58]]]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[117,[-1,-2,-3]],-4],[[117,[-1,-2,-3]]],49,119,35,[[25,[84]]]],0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[82,[],[[146,[-1]]]],-1],15,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[15,15],[373,373],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[81,[-1]],37,-2,-1,68,69,70,66],41,82,23],[59,41],[59,41],[59,41],[[373,113],[[41,[113,113]]]],0,[[15,77],[[79,[41,78]]]],[[373,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[81,[-2]]],[[25,[58]]],82],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[81,[-1]],37,-2,94],95,82,23],0,[[[81,[-1]]],[[62,[84]]],82],[[[81,[-1]],-2],[[81,[-1]]],82,25],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[81,[-2]]],[[25,[58]]],82],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[374,375],[374,375],[[[112,[],[[146,[-1]]]],-1],6,107],[[[112,[],[[146,[-1]]]],-1],6,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[376,377],376],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[374,66],[[[120,[-1,-2,-3]]],[[38,[37]]],[],112,23],[6,6],[378,378],[375,375],[379,379],[380,380],[376,376],[377,377],[381,381],[382,382],[374,374],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[374,66],[[],375],[[],379],[[],380],[[],376],[[],377],[[],382],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[120,[-1,-2,-3]],37],41,[],112,23],[[[120,[-1,-2,-3]],380],[[120,[-1,-2,-3]]],[],112,23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[112,[],[[146,[-1]]]],-1],6,107],[[[112,[],[[146,[-1]]]],-1],6,107],[[382,-1,-2,69,70,380,-3],41,23,112,[[57,[-1,69,70,66]]]],[[[120,[-1,-2,-3]],37,-3,-2,68,69,70,66],41,[],112,23],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[375,375],4],[[379,379],4],[[380,380],4],[[376,376],4],[[377,377],4],[[381,381],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[6,77],[[79,[41,78]]]],[[378,77],[[79,[41,78]]]],[[375,77],[[79,[41,78]]]],[[379,77],[[79,[41,78]]]],[[380,77],148],[[376,77],148],[[377,77],148],[[381,77],148],[[382,77],148],[[374,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[381,-1],41,205],[[[120,[-1,-2,-3]],-4],[[120,[-1,-2,-3]]],[],112,23,[[25,[84]]]],[380,[[46,[376]]]],[[[112,[],[[146,[-1]]]],-1,4],6,107],[[[112,[],[[146,[-1]]]],-1,4],6,107],[[[120,[-1,-2,-3]],381],[[120,[-1,-2,-3]]],[],112,23],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,94,84,84,380,-2],95,[],[[57,[-1,94],[[31,[95]]]]]],[[[120,[-1,-2,-3]],37,-3,94],95,[],112,23],[[376,-1],376,[[25,[58]]]],[[382,69,70,380,-1],99,[[57,[69,70,66],[[31,[99]]]]]],[[[120,[-1,-2,-3]],37,69,70,66,-3],99,[],112,23],[-4,[[120,[-1,-2,-3]]],[],112,23,[[25,[[24,[-1,-2,-3]]]]]],[[],376],[-1,381,[[25,[[98,[45]]]]]],[[],382],[[[120,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],66],103,[],112,23],[[[120,[-1,-2,-3]],-4],[[120,[-1,-2,-3]]],[],112,23,[[32,[374],[[31,[-1]]]]]],[[[120,[-1,-2,-3]],37,69,-3,106],41,[],112,23],[[[120,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],112,23],[374,379],[[382,[145,[113]],380,66,66],41],[[381,375],[[80,[-1]]],[]],[[382,375],41],[[382,375],41],[[382,113,66,66],41],[[382,113,66,66],41],0,[[376,-1],376,[[25,[58]]]],[382,4],[[[120,[-1,-2,-3]]],[[62,[84]]],[],112,23],[[381,379],[[80,[-1]]],[]],[[382,379],41],[[382,379],41],[[[120,[-1,-2,-3]]],127,[],112,23],[[[120,[-1,-2,-3]],-4],[[120,[-1,-2,-3]]],[],112,23,25],[[[120,[-1,-2,-3]]],130,[],112,23],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],381],[[382,66,66],41],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[382,100,69,70,101,[102,[-1]],380,[46,[[88,[32]]]],-2],103,[],[[57,[100,69,70,101,[102,[-1]],66],[[31,[103]]]]]],[380,[[46,[376]]]],[[[120,[-1,-2,-3]],-4],[[120,[-1,-2,-3]]],[],112,23,[[25,[84]]]],[[376,-1],376,[[25,[58]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[383,383],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],384],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[122,[],[[104,[-1]],[385,[-2]]]],-1,70,66],-2,107,72],[[[121,[-1,-2]],37,-3,-4,68,69,70,66],41,[],[[122,[-1]]],386,[]],[59,41],[59,41],[59,41],[[383,383],4],[[384,77],[[79,[41,78]]]],[[383,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[384,[[46,[-1]]],[]],[384,[[46,[-1]]],[]],[384,4],[[[121,[-1,-2]],-3],[[121,[-1,-2]]],[],[[122,[-1]]],[[25,[84]]]],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[121,[-1,-2]],37,-3,94],95,[],[[122,[-1]]],386],[[[122,[],[[104,[-1]],[385,[-2]]]],-1,66,70],99,107,72],[[[122,[],[[104,[-1]],[385,[-2]]]],-1,66,70],99,107,72],[[[121,[-1,-2]],37,69,70,66,-3],99,[],[[122,[-1]]],386],[-2,[[121,[-1,-2]]],[],[[122,[-1]]]],[[[121,[-1,-2]],37,100,69,70,-3,101,[102,[-1]],66],103,[],[[122,[-1]]],386],[[72,387,388,389,66,[62,[61]],113,384],41],[[72,384,390,[62,[61]],[66,[61]],391],41],[[[121,[-1,-2]]],[[62,[84]]],[],[[122,[-1]]]],[[[121,[-1,-2]]],127,[],[[122,[-1]]]],[[384,-1],41,334],[[[121,[-1,-2]]],130,[],[[122,[-1]]]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[122,[],[[104,[-1]],[385,[-2]]]],-1,383,66,70,[102,[-3]]],[[41,[103,[46,[-3]]]]],107,72,[]],[[[122,[],[[104,[-1]],[385,[-2]]]],-1,383,66,70,[102,[-3]]],[[41,[103,[46,[-3]]]]],107,72,[]],0,[[[121,[-1,-2]],-3],[[121,[-1,-2]]],[],[[122,[-1]]],[[25,[84]]]],0,0,0,0,0,0,0,0,0,0,0,[[[126,[],[[146,[-1]]]],-1],8,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[392,392],[393,393],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[123,[-1,-2,-3]],-4],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[-1]]]],[[],393],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[126,[],[[146,[-1]]]],-1],8,107],[[-1,69,70,393,-2,[114,[-2]],-3],41,23,[[25,[270]],92],126],[[[123,[-1,-2,-3]],37,-4,-3,68,69,70,66],41,[92,[25,[270]],394],49,126,23],[59,41],[59,41],[59,41],[[393,393],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[392,77],[[79,[41,78]]]],[[393,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[123,[-1,-2,-3]],-4],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[58]]]],[[[126,[],[[146,[-1]]]],-1],8,107],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[123,[-1,-2,-3]],37,-4,94],95,[92,[25,[270]],394],49,126,23],[[69,70,393],99],[[[123,[-1,-2,-3]],37,69,70,66,-4],99,[92,[25,[270]],394],49,126,23],[[[114,[-1]],-1,-3],[[123,[-1,-2,-4]]],[92,[124,[96]],125],49,[[32,[-1],[[31,[-2]]]]],126],[[],393],[[[123,[-1,-2,-3]],37,100,69,70,-4,101,[102,[-2]],66],103,[92,[25,[270]],394],49,126,23],[[[123,[-1,-2,-3]],-2],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126],0,0,[[[123,[-1,-2,-3]],-4],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[-1]]]],[[[123,[-1,-2,-3]]],[[62,[84]]],[92,[25,[270]],394],49,126],[[[123,[-1,-2,-3]]],127,[92,[25,[270]],394],49,126],[[[123,[-1,-2,-3]],-4],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[-1]]]],[[[123,[-1,-2,-3]],-4],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126,25],[[[123,[-1,-2,-3]]],130,[92,[25,[270]],394],49,126],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[100,69,70,[102,[-1]],393,-2,[46,[-2]],[114,[-2]],-2,[46,[-2]],32,[46,[-1]]],103,49,[92,[25,[270]],394]],[[[123,[-1,-2,-3]],-4],[[123,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[84]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[[83,37,-1,-2,68,69,70,66],41,23,[]],[59,41],[[83,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[83,37,-1,94],95,23],[[-1,-2],83,[[25,[84]]],[[25,[84]]]],[83,[[62,[84]]]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,83,[[25,[84]]]],[-1,83,[[25,[84]]]],0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[129,[],[[146,[-1]]]],-1],14,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[14,14],[60,60],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[128,[-1]],329],[[128,[-1]]],129],[60,395],[[],14],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[128,[-1]],37,-2,-1,68,69,70,66],41,129,396],[59,41],[59,41],[59,41],[[60,60],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[14,77],[[79,[41,78]]]],[[60,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,60,[[25,[[98,[[97,[96]]]]]]]],[-1,60,[[25,[333]]]],[-1,[[128,[-2]]],[[25,[333]]],129],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[60,-1],41,205],[[[128,[-1]],-2],[[128,[-1]]],129,[[25,[84]]]],[[[129,[],[[146,[-1]]]],-1],14,107],[60,286],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[128,[-1]],37,-2,94],95,129,396],[-1,[[128,[-2]]],[[25,[60]]],129],[[[128,[-1]]],[[62,[84]]],129],[[[128,[-1]],-2],[[128,[-1]]],129,25],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[128,[-1]],-2],[[128,[-1]]],129,[[25,[84]]]],0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[[34,[],[[146,[-1]]]],-1],13,[107,49]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[323,323],[322,322],[13,13],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],323],[[],322],[[],[[397,[-1]]],[107,366]],[[],13],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,68,69,397,13,66],41,35],[59,41],[59,41],[59,41],[59,41],[[323,323],4],[[322,322],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[323,77],[[79,[41,78]]]],[[322,77],[[79,[41,78]]]],[[[397,[-1]],77],[[79,[41,78]]],[164,366]],[[13,77],[[79,[41,78]]]],[-1,-1,[]],[58,322],[-1,-1,[]],[113,322],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[323,-1],41,205],[[322,-1],41,205],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[397,-1,94,84,84,45,322,[46,[58]],46,326,327,323],95,35],[[322,58],58],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[135,[],[[146,[-1]]]],-1],9,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[9,9],[398,398],[399,399],[400,400],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[132,[-1]]],[[41,[59,59]]],35],[[],[[132,[-1]]],35],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[400,401],[[[135,[],[[146,[-1]]]],-1],9,107],[[[135,[],[[146,[-1]]]],-1],64,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[134,[-1,-2,-3,-4]],37,-4,-3,68,69,70,66],41,402,[],135,35],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[398,398],4],[[399,399],4],[[400,400],4],[[9,77],[[79,[41,78]]]],[[[132,[-1]],77],148,35],[[398,77],[[79,[41,78]]]],[[399,77],[[79,[41,78]]]],[[400,77],[[79,[41,78]]]],[[[135,[],[[146,[-1]]]],-1],9,107],[[[134,[-1,-2,-3,-4]],-5],[[134,[-1,-2,-3,-4]]],402,[],135,35,25],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[134,[-1,-2,-3,-4]]],[[134,[-5,-2,-3,-4]]],402,[],135,35,402],[[[135,[],[[146,[-1]]]],-1],9,107],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[398,4],[[[134,[-1,-2,-3,-4]],37,-4,94],95,402,[],135,35],[[[132,[-1]],59],[[46,[[0,[[404,[],[[403,[45]]]]]]]]],35],[[[132,[-1]]],59,35],[[[132,[-1]]],[[0,[[269,[],[[42,[[0,[[404,[],[[403,[45]]]]]]]]]]]]],35],[[[134,[-1,-2,-3,-4]],37,69,70,66,-4],99,402,[],135,35],[[[132,[-1]]],[[134,[133,-2,-3,-1]]],35,[],135],[[],[[132,[-1]]],35],[[[134,[-1,-2,-3,-4]],-5],[[134,[-1,-2,-3,-4]]],402,[],135,35,[[32,[398],[[31,[-2]]]]]],[[[134,[-1,-2,-3,-4]],37,100,69,70,-4,101,[102,[-2]],66],103,402,[],135,35],[[[134,[-1,-2,-3,-4]],-5],[[134,[-1,-2,-3,-4]]],402,[],135,35,[[25,[149]]]],[[[132,[-1]],398],41,35],[[[135,[],[[146,[-1]]]],-1],64,107],[[[132,[-1]]],[[46,[30]]],35],[[[135,[],[[146,[-1]]]],-1],64,107],[[[134,[-1,-2,-3,-4]]],[[62,[84]]],402,[],135,35],[[[134,[-1,-2,-3,-4]]],127,402,[],135,35],[[[134,[-1,-2,-3,-4]],-5],[[134,[-1,-2,-3,-4]]],402,[],135,35,25],[[[134,[-1,-2,-3,-4]]],130,402,[],135,35],[[[132,[-1]]],30,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[135,[],[[146,[-1]]]],-1],64,107],[400,400],[45,[[132,[-1]]],35],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[50,[],[[146,[-1]]]],-1],3,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[3,3],[405,405],[[[324,[-1]]],[[324,[-1]]],49],[406,406],[407,407],[[[408,[-1]]],[[408,[-1]]],[49,366]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[408,[-1]]],409,366],[[],[[408,[-1]]],[107,366]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[136,[-1,-2,-3]],37],41,49,50,35],[[[50,[],[[146,[-1]]]],-1],3,107],[[[50,[],[[146,[-1]]]],-1],64,107],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2,69,70,408,405,4,4,[46,[324]],66],41,35,50],[[[136,[-1,-2,-3]],37,-3,-2,69,70,[46,[405]],66],41,49,50,35],[[[136,[-1,-2,-3]],37,-3,-2,68,69,70,66],41,49,50,35],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[407,407],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[3,77],[[79,[41,78]]]],[[405,77],148],[[405,77],148],[[[324,[-1]],77],148,164],[[406,77],148],[[407,77],148],[[[408,[-1]],77],148,[164,366]],[407,[[80,[-1]]],[]],[[[408,[-1]]],41,366],[[[408,[-1]]],41,366],[[[50,[],[[146,[-1]]]],-1],3,107],[[],[[408,[-1]]],366],[[[136,[-1,-2,-3]]],[[136,[-1,-2,-3]]],49,50,35],0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[407,-1],41,205],[[[50,[],[[146,[-1]]]],-1],3,107],[[[136,[-1,-2,-3]],324],[[136,[-1,-2,-3]]],49,50,35],0,[[[136,[-1,-2,-3]],407],[[136,[-1,-2,-3]]],49,50,35],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[405,59,280],41],[[405,59,405],41],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[405,4],[[[408,[-1]]],4,366],[[[408,[-1]]],4,366],[[-1,94,84,149,[46,[58]],46,322,[46,[324]],408,405,45,4],95,35],[[[136,[-1,-2,-3]],37,-3,94,[46,[405]]],95,49,50,35],[[[136,[-1,-2,-3]],37,-3,94],95,49,50,35],[405,59],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[25,[322]]]],[[69,70,4],99],[[[136,[-1,-2,-3]],37,69,70,66,-3],99,49,50,35],[[407,59],[[80,[-1]]],[]],[[[408,[-1]],59],41,366],[[[408,[-1]],59],41,366],[407,[[80,[-1]]],[]],[[[408,[-1]]],41,366],[[[408,[-1]]],41,366],[407,[[80,[-1]]],[]],[[[408,[-1]]],41,366],[[[408,[-1]]],41,366],[[45,45],[[136,[-1,-2,-3]]],49,50,35],[45,405],[-1,407,[[25,[[98,[45]]]]]],[[],[[408,[-1]]],366],[[405,59],59],[[[136,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],66],103,49,50,35],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[32,[30],[[31,[-1]]]]]],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[32,[30],[[31,[-1]]]]]],[[[136,[-1,-2,-3]],-1],[[136,[-1,-2,-3]]],49,50,35],[[[136,[-1,-2,-3]],37,69,-3,106],41,49,50,35],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[25,[149]]]],[[[136,[-1,-2,-3]]],[[136,[-1,-2,-3]]],49,50,35],[[[50,[],[[146,[-1]]]],-1],64,107],[[405,59],59],[[405,59],41],[[405,59,59],41],[405,405],[[405,59,59],405],[407,[[80,[-1]]],[]],[[[408,[-1]]],41,366],[[[408,[-1]]],41,366],[[[50,[],[[146,[-1]]]],-1],64,107],0,[[[136,[-1,-2,-3]]],[[62,[84]]],49,50,35],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[25,[58]]]],0,0,[[[136,[-1,-2,-3]]],127,49,50,35],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,25],[[[136,[-1,-2,-3]]],130,49,50,35],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,137,[]],[-1,30,[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[408,[-1]]],41,366],[[[408,[-1]]],41,366],[[],407],[[405,59],405],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[100,69,70,-1,101,[102,[-2]],405,[46,[58]],322,46,4,[46,[32]],[46,[32]],[46,[-2]],-3],103,35,49,[[57,[],[[31,[408]]]]]],[[[50,[],[[146,[-1]]]],-1],64,107],[[[136,[-1,-2,-3]],-4],[[136,[-1,-2,-3]]],49,50,35,[[25,[84]]]],0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[409,409],[410,410],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],409],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[[409,77],148],[[410,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[409,405],[[46,[[41,[59,59]]]]]],[[409,405],410],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[55,55],[411,411],[412,412],[413,413],[414,414],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,415,[[22,[],[[146,[1]]]]]],[-1,416,[[112,[],[[146,[1]]]]]],[[],417],0,[[],418],[[],415],[[],419],[[],420],[[],421],[[],412],[[],413],[[],422],[[],423],[[],424],[[],425],[[],426],[[],417],[[],416],[[],414],[[],427],[[],428],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[55,55],4],[[411,411],4],[[55,77],[[79,[41,78]]]],[[411,77],[[79,[41,78]]]],[[411,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,418,[[32,[1],[[31,[18]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,420,[[32,[1],[[31,[17]]]]]],[17,420],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[413,412],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,425,[[32,[1],[[31,[16]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,426,[[32,[1],[[31,[15]]]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[64,414],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[30,55],411],0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,137,[]],[-1,30,[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[30,55,-1],411,[[57,[55],[[31,[56]]]]]],0,0,0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[56,56],[429,429],[430,430],[431,431],[432,432],[433,433],[434,434],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[59,41],[[56,56],4],[[429,429],4],[[430,430],4],[[431,431],4],[[432,432],4],[[433,433],4],[[434,434],4],[[56,77],[[79,[41,78]]]],[[429,77],[[79,[41,78]]]],[[430,77],[[79,[41,78]]]],[[431,77],[[79,[41,78]]]],[[432,77],[[79,[41,78]]]],[[433,77],[[79,[41,78]]]],[[434,77],[[79,[41,78]]]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[55,56],[[64,64,64],431],[[64,64],432],[[64,64,64],433],[[64,64,64],434],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[64,64],429],[[64,64],430],0,0,0,0,0,0,0,0,0,0,0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,[[[139,[],[[146,[-1]]]],-1,4],5,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[5,5],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[138,[-1,-2,-3]],37,-3,-2,68,69,70,66],41,[],[139,34],35],[59,41],[59,41],[[5,77],[[79,[41,78]]]],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,25],0,0,[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[139,[],[[146,[-1]]]],-1,4],5,107],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[138,[-1,-2,-3]],37,-3,94],95,[],[139,34],35],[[[138,[-1,-2,-3]],37,69,70,66,-3],99,[],[139,34],35],[[-1,4,-3],[[138,[-2,-4,-5]]],[[25,[[46,[30]]]]],[],[[32,[4],[[31,[-2]]]]],139,35],[[[138,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],66],103,[],[139,34],35],[[[138,[-1,-2,-3]]],[[62,[84]]],[],[139,34],35],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,[[25,[58]]]],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,[[25,[58]]]],[[[138,[-1,-2,-3]]],127,[],[139,34],35],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,25],[[[138,[-1,-2,-3]]],130,[],[139,34],35],[[[138,[-1,-2,-3]],326],[[138,[-1,-2,-3]]],[],139,35],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,[[25,[322]]]],[[[138,[-1,-2,-3]],323],[[138,[-1,-2,-3]]],[],139,35],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,[[25,[58]]]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[[138,[-1,-2,-3]],-4],[[138,[-1,-2,-3]]],[],139,35,[[25,[84]]]],0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[-1,-2,-3]]],[[38,[37]]],[],[54,34],35],[140,140],[[-1,-2],41,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[[[141,[-1,-2,-3]],37],41,[],[54,34],35],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[-1,-2,-3]],37,-3,-2,68,69,70,66],41,[],[54,34],35],[59,41],[59,41],[[140,140],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[140,77],148],[[[141,[-1,-2,-3]],-4],[[141,[-1,-2,-3]]],[],[54,34],35,25],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[-1,-2,-3]],-4],[[141,[-1,-2,-3]]],[],[54,34],35,[[25,[58]]]],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[141,[-1,-2,-3]],37,-3,94],95,[],[54,34],35],[[[141,[-1,-2,-3]],37,69,70,66,-3],99,[],[54,34],35],[[-4,-5,140],[[141,[-1,-2,-3]]],[],[54,34],35,[[25,[[24,[-1,-2,-3]]]]],[[25,[[98,[45]]]]]],[[[141,[-1,-2,-3]],37,100,69,70,-3,101,[102,[-1]],66],103,[],[54,34],35],[[[141,[-1,-2,-3]],37,69,-3],[[46,[[108,[-1,-2,-3]]]]],[],[54,34],35],[[[141,[-1,-2,-3]],-4],[[141,[-1,-2,-3]]],[],[54,34],35,[[25,[58]]]],[[[141,[-1,-2,-3]],-4],[[141,[-1,-2,-3]]],[],[54,34],35,[[25,[58]]]],[[[141,[-1,-2,-3]]],[[62,[84]]],[],[54,34],35],[[[141,[-1,-2,-3]],4],[[141,[-1,-2,-3]]],[],[54,34],35],[[[141,[-1,-2,-3]]],127,[],[54,34],35],[[[141,[-1,-2,-3]],-4],[[141,[-1,-2,-3]]],[],[54,34],35,25],[[[141,[-1,-2,-3]]],130,[],[54,34],35],[[[141,[-1,-2,-3]],323],[[141,[-1,-2,-3]]],[],[54,34],35],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],0,0,0,0,0,0,0,0,0,0,[[[126,[],[[146,[-1]]]],-1],8,107],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[[-1,-3],-4,[],[],[[12,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],[-1,20,[]],0,0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[8,8],[435,435],[436,436],[437,437],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],[[-1,-2],41,[],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[144,[-1,-2,-3]],-4],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[-1]]]],[[],437],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[59,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[126,[],[[146,[-1]]]],-1],8,107],[[-1,69,70,437,-2,[114,[-2]],-3],41,23,[[25,[270]],92],126],[[[144,[-1,-2,-3]],37,-4,-3,68,69,70,66],41,[92,[25,[270]],394],49,126,23],[59,41],[59,41],[59,41],[59,41],[59,41],[[437,437],4],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[-1,-2],4,[],[]],[[8,77],[[79,[41,78]]]],[[435,77],[[79,[41,78]]]],[[436,77],[[79,[41,78]]]],[[437,77],148],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[144,[-1,-2,-3]],-4],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[84]]]],[[[126,[],[[146,[-1]]]],-1],8,107],[[],59],[[],59],[[],59],[[],59],[[],59],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[88,[-1]]],[[88,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[89,[-1]]],[[89,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[[[90,[-1]]],[[90,[20]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[144,[-1,-2,-3]],37,-4,94],95,[92,[25,[270]],394],49,126,23],[[69,70,437],99],[[[144,[-1,-2,-3]],37,69,70,66,-4],99,[92,[25,[270]],394],49,126,23],[[[114,[-1]],-1,-3],[[144,[-1,-2,-4]]],[92,[124,[96]],125],49,[[32,[-1],[[31,[-2]]]]],126],[[],437],[[[144,[-1,-2,-3]],37,100,69,70,-4,101,[102,[-2]],66],103,[92,[25,[270]],394],49,126,23],[[[144,[-1,-2,-3]],-2],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126],0,0,[[[144,[-1,-2,-3]],-4],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[-1]]]],[[[144,[-1,-2,-3]]],[[62,[84]]],[92,[25,[270]],394],49,126],[[[144,[-1,-2,-3]]],127,[92,[25,[270]],394],49,126],[[[144,[-1,-2,-3]],-1],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126],[[[144,[-1,-2,-3]],-4],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126,25],[[[144,[-1,-2,-3]]],130,[92,[25,[270]],394],49,126],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,[[79,[-2,[142,[-2]]]]],[],[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,143,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[-1,[[46,[-2]]],[],[]],[[100,69,70,[102,[-1]],437,-2,[46,[-2]],[114,[-2]],-2,[46,[-2]],32,[46,[-1]]],103,49,[92,[25,[270]],394]],[[[144,[-1,-2,-3]],-4],[[144,[-1,-2,-3]]],[92,[124,[96]],125],49,126,[[25,[58]]]],0,0,0],"c":[],"p":[[6,"Theme",0],[5,"Appearance",8760],[5,"Appearance",10908],[1,"bool"],[5,"Appearance",12361],[5,"Scrollbar",9504],[5,"Appearance",9282],[5,"Appearance",12552],[5,"Appearance",10628],[5,"Appearance",339],[5,"Appearance",7094],[10,"TransformMatrix",12773],[5,"Appearance",10458],[5,"Appearance",10327],[5,"Appearance",9379],[5,"Appearance",8985],[5,"Appearance",7324],[5,"Appearance",12774],[5,"Appearance",7757],[10,"Any",12775],[5,"Button",339],[10,"StyleSheet",339],[10,"Renderer",12776],[5,"Element",12777],[10,"Into",12778],[5,"Canvas",485],[10,"Renderer",485],[10,"Program",485],[5,"Checkbox",7094],[5,"String",12779],[17,"Output"],[10,"Fn",12780],[10,"StyleSheet",7094],[10,"StyleSheet",10458],[10,"Renderer",12781],[5,"Lazy",0],[5,"Tree",12782],[5,"Vec",12783],[10,"Hash",12784],[6,"Renderer",0],[1,"tuple"],[17,"Item"],[10,"IntoIterator",12785],[5,"State",7231],[1,"str"],[6,"Option",12786],[5,"ComboBox",7231],[10,"Display",12787],[10,"Clone",12788],[10,"StyleSheet",10908],[10,"StyleSheet",7757],[10,"Component",0],[5,"Container",7324],[10,"StyleSheet",7324],[5,"Palette",11339],[5,"Extended",12057],[10,"FnOnce",12780],[5,"Pixels",12789],[1,"usize"],[5,"Handle",10327],[1,"u32"],[5,"Size",12790],[5,"Handle",7473],[5,"Color",12791],[6,"FilterMethod",7473],[5,"Rectangle",12792],[5,"Responsive",0],[5,"Style",12776],[5,"Layout",12793],[6,"Cursor",12794],[6,"Mesh",12795],[10,"Primitive",9999],[5,"Point",12796],[5,"Quad",12776],[6,"Background",12797],[5,"Text",12781],[5,"Formatter",12787],[5,"Error",12787],[6,"Result",12798],[5,"Command",12799],[5,"Rule",9379],[10,"StyleSheet",9379],[5,"Space",10287],[6,"Length",12800],[5,"Appearance",7878],[5,"Line",7878],[5,"Image",7473],[5,"Box",12801],[5,"Arc",12802],[5,"Rc",12803],[5,"Column",7703],[10,"Copy",12804],[10,"PartialEq",12805],[5,"Limits",12806],[5,"Node",12807],[1,"u8"],[1,"slice"],[6,"Cow",12808],[6,"Interaction",12809],[6,"Event",12810],[10,"Clipboard",12811],[5,"Shell",12812],[6,"Status",1056],[17,"State"],[17,"Event"],[10,"Operation",12813],[10,"Default",12814],[5,"Element",12815],[5,"PickList",8760],[10,"ToString",12779],[10,"StyleSheet",8760],[10,"StyleSheet",9504],[1,"f32"],[5,"RangeInclusive",12816],[5,"ProgressBar",8985],[10,"StyleSheet",8985],[5,"Radio",9282],[10,"Eq",12805],[10,"StyleSheet",9282],[5,"Scrollable",9504],[5,"Shader",9999],[10,"Program",9999],[5,"Slider",10134],[10,"From",12778],[10,"PartialOrd",12805],[10,"StyleSheet",12552],[6,"State",12782],[5,"Svg",10327],[10,"StyleSheet",10327],[5,"Tag",12782],[8,"Text",10458],[5,"Content",10628],[5,"PlainText",12817],[5,"TextEditor",10628],[10,"StyleSheet",10628],[5,"TextInput",10908],[5,"SmolStr",12818],[5,"Toggler",12361],[10,"StyleSheet",12361],[6,"Position",12456],[5,"Tooltip",12456],[5,"OutOfBounds",12819],[5,"TypeId",12775],[5,"VerticalSlider",12552],[5,"Vector",12820],[17,"Style"],[5,"State",339],[8,"Result",12787],[5,"Padding",12821],[6,"Frame",485],[5,"Path",485],[5,"Cache",485],[6,"Gradient",485],[5,"Fill",485],[5,"Stroke",485],[6,"LineCap",485],[6,"LineJoin",485],[5,"LineDash",485],[6,"Style",485],[5,"Text",485],[17,"Geometry"],[6,"Geometry",485],[10,"FnMut",12780],[10,"Debug",12787],[5,"Linear",1190],[5,"Builder",1277],[5,"Packed",1190],[5,"Path",1414],[5,"UnknownUnit",4106],[5,"Transform2D",4106],[6,"Event",1056],[6,"Rule",1141],[5,"ColorStop",12822],[6,"Gradient",12822],[5,"Arc",1277],[5,"Elliptical",1366],[5,"PathCommands",1414],[5,"PathCommandsSlice",1414],[5,"PathSlice",1414],[5,"PathBuffer",1414],[5,"PathBufferSlice",1414],[5,"EndpointId",1414],[5,"PathCommandsBuilder",2663],[5,"BuilderImpl",6468],[5,"NoAttributes",2341],[5,"Builder",6725],[5,"BuilderWithAttributes",6468],[5,"ArcFlags",1414],[6,"Event",1414],[5,"Polygon",1414],[5,"IdPolygon",1414],[6,"LineCap",1414],[6,"LineJoin",1414],[6,"Side",1414],[6,"FillRule",1414],[6,"Winding",1414],[5,"ControlPointId",1414],[5,"EventId",1414],[5,"Events",2663],[5,"Point2D",4106],[10,"AttributeStore",1414],[5,"AttributeSlice",1414],[10,"PositionStore",1414],[10,"Position",1414],[10,"Hasher",12784],[5,"IdIter",6468],[5,"PolygonIdIter",6865],[5,"Range",12816],[5,"Iter",2663],[5,"Iter",6468],[1,"i16"],[5,"Iter",6725],[5,"PolygonIter",6865],[5,"IdPolygonIter",6865],[5,"IterWithAttributes",6468],[5,"PathEvents",6865],[5,"CommandsPathSlice",2663],[5,"Reversed",6468],[5,"NoAttributes",6288],[5,"WithSvg",2341],[10,"Transformation",6262],[10,"PathBuilder",7025],[5,"Vector2D",4106],[5,"Angle",2866],[5,"LineSegment",2866],[10,"SvgPathBuilder",7025],[5,"Box2D",4106],[5,"BorderRadii",2341],[5,"Flattened",2341],[5,"Transformed",2341],[17,"PathType"],[10,"Build",7025],[6,"Ordering",12805],[5,"PointEvents",2663],[5,"LineEquation",2866],[10,"Scalar",2866],[5,"Triangle",2866],[10,"Add",12823],[10,"AddAssign",12823],[17,"Scalar"],[10,"Segment",2866],[5,"Arc",2866],[5,"CubicBezierSegment",2866],[5,"QuadraticBezierSegment",2866],[10,"Rem",12823],[10,"Sub",12823],[10,"Mul",12823],[10,"One",12824],[10,"FloatConst",12825],[10,"ApproxEq",6053],[10,"NumCast",12826],[5,"SvgArc",2866],[5,"Line",2866],[5,"ArrayVec",3697],[10,"Trig",4106],[10,"Div",12823],[10,"DivAssign",12823],[5,"Flattened",3647],[5,"Flattened",4064],[5,"Flattened",6152],[5,"FlattenedT",6152],[10,"Float",12825],[10,"MulAssign",12823],[10,"Neg",12823],[10,"Zero",12824],[10,"Real",12827],[5,"Size2D",4106],[10,"SubAssign",12823],[10,"Iterator",12828],[1,"f64"],[5,"ArrayString",3697],[5,"IntoIter",3697],[5,"CapacityError",3697],[10,"Ord",12805],[5,"Drain",3697],[10,"RangeBounds",12816],[5,"Error",12829],[1,"array"],[5,"Utf8Error",12830],[1,"char"],[5,"Arguments",12787],[1,"u128"],[1,"i64"],[1,"i8"],[1,"i128"],[1,"u64"],[1,"u16"],[1,"i32"],[10,"Signed",12831],[5,"Size3D",4106],[5,"Vector3D",4106],[5,"Length",4106],[5,"Point3D",4106],[5,"Scale",4106],[5,"SideOffsets2D",4106],[5,"Translation2D",4106],[5,"Translation3D",4106],[5,"BoolVector2D",4106],[5,"BoolVector3D",4106],[5,"Transform3D",4106],[5,"Rotation3D",4106],[5,"Rect",4106],[5,"Box3D",4106],[5,"Rotation2D",4106],[5,"RigidTransform3D",4106],[10,"Ceil",6142],[10,"One",6142],[5,"HomogeneousVector",4106],[10,"Zero",6142],[10,"Euclid",12832],[10,"Floor",6142],[10,"Round",6142],[10,"Saturating",12833],[5,"FlatteningParameters",6152],[5,"FromPolyline",6288],[10,"PathIterator",7025],[5,"Flattened",6288],[5,"Transformed",6288],[5,"BuilderWithAttributes",6725],[5,"IterBridge",12834],[5,"Icon",7094],[6,"LineHeight",10458],[6,"Shaping",10458],[5,"Icon",10908],[10,"AsRef",12778],[6,"Horizontal",12835],[6,"Vertical",12835],[5,"Id",7324],[6,"ContentFit",12836],[6,"Data",12837],[17,"Handle"],[10,"Renderer",12837],[5,"PathBuf",12838],[10,"Send",12804],[10,"Sync",12804],[5,"Viewer",7613],[5,"State",7613],[6,"Alignment",12835],[5,"State",7757],[5,"Menu",7757],[5,"TitleBar",7878],[10,"Draggable",7878],[5,"Content",7878],[5,"PaneGrid",7878],[10,"StyleSheet",7878],[6,"Axis",7878],[6,"Configuration",7878],[6,"Direction",7878],[6,"Node",7878],[5,"Pane",7878],[5,"Split",7878],[6,"DragEvent",7878],[6,"Target",7878],[6,"Region",7878],[6,"Edge",7878],[5,"ResizeEvent",7878],[6,"Action",8611],[6,"Contents",7878],[5,"State",8611],[5,"BTreeMap",12839],[5,"Internal",8611],[5,"HashMap",12840],[6,"Handle",8760],[5,"Icon",8760],[5,"State",8760],[10,"Paragraph",12841],[5,"QRCode",9069],[6,"Version",9069],[6,"ErrorCorrection",9069],[6,"Error",9069],[5,"State",9069],[6,"QrError",12842],[6,"FillMode",9379],[5,"Viewport",9504],[5,"AbsoluteOffset",9504],[5,"Properties",9504],[6,"Alignment",9504],[5,"Scroller",9504],[5,"RelativeOffset",9504],[6,"Direction",9504],[5,"Id",9504],[5,"State",9504],[6,"Event",9999],[5,"Storage",9999],[17,"Primitive"],[10,"Renderer",12843],[6,"TextureFormat",12844],[5,"Device",12845],[5,"Queue",12845],[5,"TextureView",12845],[5,"CommandEncoder",12845],[5,"Rail",10134],[5,"State",10134],[10,"FromPrimitive",12826],[6,"Data",12846],[10,"Renderer",12846],[5,"State",10458],[6,"Action",10628],[6,"Edit",10628],[6,"Motion",10628],[6,"Direction",12847],[10,"Highlighter",12817],[17,"Target"],[10,"Deref",12848],[5,"Value",10908],[6,"Side",10908],[5,"Id",10908],[5,"State",10908],[5,"Cursor",11258],[6,"State",11258],[5,"Custom",11339],[6,"Menu",11339],[6,"PickList",11339],[6,"Text",11339],[6,"Button",11339],[6,"Scrollable",11339],[6,"Svg",11339],[6,"Application",11339],[6,"Checkbox",11339],[6,"Container",11339],[6,"Slider",11339],[6,"Radio",11339],[6,"Toggler",11339],[6,"PaneGrid",11339],[6,"ProgressBar",11339],[6,"Rule",11339],[6,"TextInput",11339],[6,"TextEditor",11339],[5,"Pair",12057],[5,"Background",12057],[5,"Primary",12057],[5,"Secondary",12057],[5,"Success",12057],[5,"Danger",12057],[5,"Handle",12552],[6,"HandleShape",12552],[5,"State",12552],[8,"PathEvent",1414],[8,"IdEvent",1414],[15,"Begin",2302],[15,"End",2302],[15,"Quadratic",2302],[15,"Cubic",2302],[15,"Line",2302],[8,"Rotation",2866],[8,"Size",2866],[8,"Transform",2866],[8,"Box2D",2866],[8,"Translation",2866],[8,"Point",2866],[8,"Vector",2866],[8,"Rotation2D",6059],[8,"SideOffsets2D",6059],[8,"Size3D",6059],[8,"Rotation3D",6059],[8,"Transform2D",6059],[8,"Transform3D",6059],[8,"Box3D",6059],[8,"Rect",6059],[8,"RigidTransform3D",6059],[8,"HomogeneousVector",6059],[8,"Point3D",6059],[8,"Vector3D",6059],[8,"Translation2D",6059],[8,"Translation3D",6059],[8,"Rotation",6438],[8,"Size",6438],[8,"Transform",6438],[8,"Box2D",6438],[8,"Angle",6438],[8,"Point",6438],[8,"Vector",6438],[8,"Translation",6438],[15,"Split",8598],[15,"Picked",8602],[15,"Dropped",8602],[15,"Canceled",8602],[15,"Split",8606],[15,"Resizing",8754],[15,"Clicking",8754],[15,"Dragging",8754],[15,"Dynamic",8982],[15,"Arrow",8982],[15,"Both",9997],[15,"Rectangle",10284],[15,"Circle",10284],[15,"Scroll",10907],[15,"Selection",11337]],"b":[[40,"impl-StyleSheet-for-Theme"],[41,"impl-StyleSheet-for-Theme"],[42,"impl-StyleSheet-for-Theme"],[43,"impl-StyleSheet-for-Theme"],[44,"impl-StyleSheet-for-Theme"],[45,"impl-StyleSheet-for-Theme"],[46,"impl-StyleSheet-for-Theme"],[47,"impl-StyleSheet-for-Theme"],[48,"impl-StyleSheet-for-Theme"],[54,"impl-StyleSheet-for-Theme"],[55,"impl-StyleSheet-for-Theme"],[56,"impl-StyleSheet-for-Theme"],[57,"impl-StyleSheet-for-Theme"],[58,"impl-StyleSheet-for-Theme"],[59,"impl-StyleSheet-for-Theme"],[60,"impl-StyleSheet-for-Theme"],[122,"impl-Renderer-for-Renderer"],[123,"impl-Renderer-for-Renderer"],[124,"impl-StyleSheet-for-Theme"],[125,"impl-StyleSheet-for-Theme"],[126,"impl-StyleSheet-for-Theme"],[127,"impl-StyleSheet-for-Theme"],[128,"impl-StyleSheet-for-Theme"],[133,"impl-StyleSheet-for-Theme"],[134,"impl-StyleSheet-for-Theme"],[136,"impl-Renderer-for-Renderer"],[137,"impl-Renderer-for-Renderer"],[138,"impl-Renderer-for-Renderer"],[153,"impl-Display-for-Theme"],[154,"impl-Debug-for-Theme"],[157,"impl-StyleSheet-for-Theme"],[158,"impl-StyleSheet-for-Theme"],[174,"impl-StyleSheet-for-Theme"],[175,"impl-StyleSheet-for-Theme"],[176,"impl-StyleSheet-for-Theme"],[177,"impl-StyleSheet-for-Theme"],[178,"impl-StyleSheet-for-Theme"],[179,"impl-StyleSheet-for-Theme"],[180,"impl-StyleSheet-for-Theme"],[181,"impl-StyleSheet-for-Theme"],[182,"impl-StyleSheet-for-Theme"],[183,"impl-StyleSheet-for-Theme"],[248,"impl-StyleSheet-for-Theme"],[249,"impl-StyleSheet-for-Theme"],[265,"impl-StyleSheet-for-Theme"],[266,"impl-StyleSheet-for-Theme"],[330,"impl-StyleSheet-for-Theme"],[331,"impl-StyleSheet-for-Theme"],[731,"impl-From%3CGradient%3E-for-Fill"],[732,"impl-From%3CLinear%3E-for-Fill"],[733,"impl-From%3CColor%3E-for-Fill"],[741,"impl-From%3CGradient%3E-for-Style"],[742,"impl-From%3CColor%3E-for-Style"],[743,"impl-From%3CString%3E-for-Text"],[744,"impl-From%3C%26str%3E-for-Text"],[1887,"impl-Index%3CControlPointId%3E-for-Path"],[1888,"impl-Index%3CEndpointId%3E-for-Path"],[1889,"impl-Index%3CControlPointId%3E-for-PathSlice%3C\'l%3E"],[1890,"impl-Index%3CEndpointId%3E-for-PathSlice%3C\'l%3E"],[2048,"impl-IntoIterator-for-%26PathSlice%3C\'l%3E"],[2049,"impl-IntoIterator-for-PathSlice%3C\'l%3E"],[2396,"impl-NoAttributes%3CB%3E"],[2397,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2411,"impl-Build-for-Flattened%3CBuilder%3E"],[2412,"impl-Flattened%3CBuilder%3E"],[2414,"impl-WithSvg%3CBuilder%3E"],[2415,"impl-Build-for-WithSvg%3CBuilder%3E"],[2416,"impl-NoAttributes%3CB%3E"],[2417,"impl-Build-for-NoAttributes%3CB%3E"],[2424,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2425,"impl-WithSvg%3CBuilder%3E"],[2436,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2437,"impl-WithSvg%3CBuilder%3E"],[2438,"impl-NoAttributes%3CB%3E"],[2439,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2466,"impl-NoAttributes%3CB%3E"],[2467,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2475,"impl-Display-for-BorderRadii"],[2476,"impl-Debug-for-BorderRadii"],[2548,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2549,"impl-WithSvg%3CBuilder%3E"],[2550,"impl-NoAttributes%3CB%3E"],[2551,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2553,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2554,"impl-WithSvg%3CBuilder%3E"],[2571,"impl-WithSvg%3CBuilder%3E"],[2572,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2573,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2574,"impl-NoAttributes%3CB%3E"],[2593,"impl-SvgPathBuilder-for-WithSvg%3CBuilder%3E"],[2594,"impl-WithSvg%3CBuilder%3E"],[2595,"impl-PathBuilder-for-NoAttributes%3CB%3E"],[2596,"impl-NoAttributes%3CB%3E"],[2765,"impl-Index%3CControlPointId%3E-for-CommandsPathSlice%3C\'l,+Endpoint,+ControlPoint%3E"],[2766,"impl-Index%3CEndpointId%3E-for-CommandsPathSlice%3C\'l,+Endpoint,+ControlPoint%3E"],[2916,"impl-Add%3C%26Angle%3CT%3E%3E-for-Angle%3CT%3E"],[2917,"impl-Add-for-Angle%3CT%3E"],[2920,"impl-Arc%3CS%3E"],[2921,"impl-Segment-for-Arc%3CS%3E"],[2922,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[2923,"impl-CubicBezierSegment%3CS%3E"],[2924,"impl-Segment-for-LineSegment%3CS%3E"],[2925,"impl-LineSegment%3CS%3E"],[2926,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[2927,"impl-QuadraticBezierSegment%3CS%3E"],[2933,"impl-Segment-for-Arc%3CS%3E"],[2934,"impl-Arc%3CS%3E"],[2935,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[2936,"impl-CubicBezierSegment%3CS%3E"],[2983,"impl-Arc%3CS%3E"],[2984,"impl-Segment-for-Arc%3CS%3E"],[2985,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[2986,"impl-CubicBezierSegment%3CS%3E"],[2987,"impl-Segment-for-LineSegment%3CS%3E"],[2988,"impl-LineSegment%3CS%3E"],[2989,"impl-QuadraticBezierSegment%3CS%3E"],[2990,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3092,"impl-CubicBezierSegment%3CS%3E"],[3093,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3095,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3096,"impl-QuadraticBezierSegment%3CS%3E"],[3101,"impl-Div-for-Angle%3CT%3E"],[3102,"impl-Div%3CT%3E-for-Angle%3CT%3E"],[3126,"impl-CubicBezierSegment%3CS%3E"],[3127,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3129,"impl-QuadraticBezierSegment%3CS%3E"],[3130,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3132,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3133,"impl-CubicBezierSegment%3CS%3E"],[3135,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3136,"impl-QuadraticBezierSegment%3CS%3E"],[3172,"impl-Segment-for-Arc%3CS%3E"],[3173,"impl-Arc%3CS%3E"],[3174,"impl-CubicBezierSegment%3CS%3E"],[3175,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3176,"impl-LineSegment%3CS%3E"],[3177,"impl-Segment-for-LineSegment%3CS%3E"],[3178,"impl-QuadraticBezierSegment%3CS%3E"],[3179,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3196,"impl-Segment-for-Arc%3CS%3E"],[3197,"impl-Arc%3CS%3E"],[3199,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3200,"impl-CubicBezierSegment%3CS%3E"],[3202,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3203,"impl-QuadraticBezierSegment%3CS%3E"],[3231,"impl-Segment-for-Arc%3CS%3E"],[3232,"impl-From%3CSvgArc%3CS%3E%3E-for-Arc%3CS%3E"],[3233,"impl-Arc%3CS%3E"],[3236,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3237,"impl-CubicBezierSegment%3CS%3E"],[3239,"impl-Segment-for-LineSegment%3CS%3E"],[3240,"impl-LineSegment%3CS%3E"],[3244,"impl-QuadraticBezierSegment%3CS%3E"],[3245,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3431,"impl-Segment-for-Arc%3CS%3E"],[3432,"impl-Arc%3CS%3E"],[3433,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3434,"impl-CubicBezierSegment%3CS%3E"],[3435,"impl-LineSegment%3CS%3E"],[3436,"impl-Segment-for-LineSegment%3CS%3E"],[3437,"impl-QuadraticBezierSegment%3CS%3E"],[3438,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3455,"impl-Arc%3CS%3E"],[3456,"impl-Segment-for-Arc%3CS%3E"],[3457,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3458,"impl-CubicBezierSegment%3CS%3E"],[3459,"impl-LineSegment%3CS%3E"],[3460,"impl-Segment-for-LineSegment%3CS%3E"],[3461,"impl-QuadraticBezierSegment%3CS%3E"],[3462,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3465,"impl-Segment-for-Arc%3CS%3E"],[3466,"impl-Arc%3CS%3E"],[3467,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3468,"impl-CubicBezierSegment%3CS%3E"],[3469,"impl-LineSegment%3CS%3E"],[3470,"impl-Segment-for-LineSegment%3CS%3E"],[3471,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3472,"impl-QuadraticBezierSegment%3CS%3E"],[3480,"impl-Sum%3C%26Angle%3CT%3E%3E-for-Angle%3CT%3E"],[3481,"impl-Sum-for-Angle%3CT%3E"],[3486,"impl-Arc%3CS%3E"],[3487,"impl-Segment-for-Arc%3CS%3E"],[3488,"impl-CubicBezierSegment%3CS%3E"],[3489,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3490,"impl-Segment-for-LineSegment%3CS%3E"],[3491,"impl-LineSegment%3CS%3E"],[3492,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3493,"impl-QuadraticBezierSegment%3CS%3E"],[3613,"impl-Arc%3CS%3E"],[3614,"impl-Segment-for-Arc%3CS%3E"],[3615,"impl-CubicBezierSegment%3CS%3E"],[3616,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3617,"impl-Segment-for-LineSegment%3CS%3E"],[3618,"impl-LineSegment%3CS%3E"],[3619,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3620,"impl-QuadraticBezierSegment%3CS%3E"],[3631,"impl-Segment-for-Arc%3CS%3E"],[3632,"impl-Arc%3CS%3E"],[3633,"impl-Segment-for-CubicBezierSegment%3CS%3E"],[3634,"impl-CubicBezierSegment%3CS%3E"],[3635,"impl-Segment-for-LineSegment%3CS%3E"],[3636,"impl-LineSegment%3CS%3E"],[3637,"impl-QuadraticBezierSegment%3CS%3E"],[3638,"impl-Segment-for-QuadraticBezierSegment%3CS%3E"],[3806,"impl-PartialEq-for-ArrayVec%3CT,+CAP%3E"],[3807,"impl-PartialEq%3C%5BT%5D%3E-for-ArrayVec%3CT,+CAP%3E"],[3808,"impl-PartialEq%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3809,"impl-PartialEq-for-ArrayString%3CCAP%3E"],[3824,"impl-Debug-for-ArrayString%3CCAP%3E"],[3825,"impl-Display-for-ArrayString%3CCAP%3E"],[3826,"impl-Display-for-CapacityError%3CT%3E"],[3827,"impl-Debug-for-CapacityError%3CT%3E"],[3849,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[3850,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3852,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3853,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[3899,"impl-IntoIterator-for-%26mut+ArrayVec%3CT,+CAP%3E"],[3900,"impl-IntoIterator-for-%26ArrayVec%3CT,+CAP%3E"],[3901,"impl-IntoIterator-for-ArrayVec%3CT,+CAP%3E"],[3914,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3915,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[3919,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3920,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[3931,"impl-PartialOrd-for-ArrayString%3CCAP%3E"],[3932,"impl-PartialOrd%3Cstr%3E-for-ArrayString%3CCAP%3E"],[3974,"impl-TryFrom%3CArguments%3C\'a%3E%3E-for-ArrayString%3CCAP%3E"],[3976,"impl-TryFrom%3C%26str%3E-for-ArrayString%3CCAP%3E"],[4158,"impl-Add%3C%26Length%3CT,+U%3E%3E-for-Length%3CT,+U%3E"],[4159,"impl-Add-for-Length%3CT,+U%3E"],[4160,"impl-Add%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[4161,"impl-Add%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[4162,"impl-Add%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[4163,"impl-Add%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[4166,"impl-Add-for-Size2D%3CT,+U%3E"],[4167,"impl-Add%3C%26Size2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[4168,"impl-Add-for-Size3D%3CT,+U%3E"],[4169,"impl-Add%3C%26Size3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[4172,"impl-Add-for-Vector2D%3CT,+U%3E"],[4173,"impl-Add%3C%26Vector2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[4174,"impl-Add-for-Vector3D%3CT,+U%3E"],[4175,"impl-Add%3C%26Vector3D%3CT,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[4177,"impl-AddAssign%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[4178,"impl-AddAssign%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[4179,"impl-AddAssign%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[4180,"impl-AddAssign%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[4214,"impl-Transform2D%3CT,+Src,+Dst%3E"],[4215,"impl-ApproxEq%3CT%3E-for-Transform2D%3CT,+Src,+Dst%3E"],[4216,"impl-ApproxEq%3CT%3E-for-Transform3D%3CT,+Src,+Dst%3E"],[4217,"impl-Transform3D%3CT,+Src,+Dst%3E"],[4397,"impl-Point2D%3CT,+U%3E"],[4398,"impl-Ceil-for-Point2D%3CT,+U%3E"],[4399,"impl-Ceil-for-Point3D%3CT,+U%3E"],[4400,"impl-Point3D%3CT,+U%3E"],[4401,"impl-Size2D%3CT,+U%3E"],[4402,"impl-Ceil-for-Size2D%3CT,+U%3E"],[4403,"impl-Ceil-for-Size3D%3CT,+U%3E"],[4404,"impl-Size3D%3CT,+U%3E"],[4405,"impl-Vector2D%3CT,+U%3E"],[4406,"impl-Ceil-for-Vector2D%3CT,+U%3E"],[4407,"impl-Ceil-for-Vector3D%3CT,+U%3E"],[4408,"impl-Vector3D%3CT,+U%3E"],[4583,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Box2D%3CT,+U2%3E"],[4584,"impl-Div%3CT%3E-for-Box2D%3CT,+U%3E"],[4585,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Box3D%3CT,+U2%3E"],[4586,"impl-Div%3CT%3E-for-Box3D%3CT,+U%3E"],[4587,"impl-Div%3CScale%3CT,+Src,+Dst%3E%3E-for-Length%3CT,+Dst%3E"],[4588,"impl-Div%3CT%3E-for-Length%3CT,+U%3E"],[4589,"impl-Div%3CLength%3CT,+Src%3E%3E-for-Length%3CT,+Dst%3E"],[4590,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Point2D%3CT,+U2%3E"],[4591,"impl-Div%3CT%3E-for-Point2D%3CT,+U%3E"],[4592,"impl-Div%3CT%3E-for-Point3D%3CT,+U%3E"],[4593,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Point3D%3CT,+U2%3E"],[4594,"impl-Div%3CT%3E-for-Rect%3CT,+U%3E"],[4595,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Rect%3CT,+U2%3E"],[4596,"impl-Div%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[4597,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-SideOffsets2D%3CT,+U2%3E"],[4598,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Size2D%3CT,+U2%3E"],[4599,"impl-Div%3CT%3E-for-Size2D%3CT,+U%3E"],[4600,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Size3D%3CT,+U2%3E"],[4601,"impl-Div%3CT%3E-for-Size3D%3CT,+U%3E"],[4602,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Vector2D%3CT,+U2%3E"],[4603,"impl-Div%3CT%3E-for-Vector2D%3CT,+U%3E"],[4604,"impl-Div%3CT%3E-for-Vector3D%3CT,+U%3E"],[4605,"impl-Div%3CScale%3CT,+U1,+U2%3E%3E-for-Vector3D%3CT,+U2%3E"],[4606,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Box2D%3CT,+U%3E"],[4607,"impl-DivAssign%3CT%3E-for-Box2D%3CT,+U%3E"],[4608,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Box3D%3CT,+U%3E"],[4609,"impl-DivAssign%3CT%3E-for-Box3D%3CT,+U%3E"],[4611,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Point2D%3CT,+U%3E"],[4612,"impl-DivAssign%3CT%3E-for-Point2D%3CT,+U%3E"],[4613,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Point3D%3CT,+U%3E"],[4614,"impl-DivAssign%3CT%3E-for-Point3D%3CT,+U%3E"],[4615,"impl-DivAssign%3CT%3E-for-Rect%3CT,+U%3E"],[4616,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Rect%3CT,+U%3E"],[4617,"impl-DivAssign%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[4618,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-SideOffsets2D%3CT,+U%3E"],[4619,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Size2D%3CT,+U%3E"],[4620,"impl-DivAssign%3CT%3E-for-Size2D%3CT,+U%3E"],[4621,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Size3D%3CT,+U%3E"],[4622,"impl-DivAssign%3CT%3E-for-Size3D%3CT,+U%3E"],[4623,"impl-DivAssign%3CT%3E-for-Vector2D%3CT,+U%3E"],[4624,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[4625,"impl-DivAssign%3CT%3E-for-Vector3D%3CT,+U%3E"],[4626,"impl-DivAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[4777,"impl-Point2D%3CT,+U%3E"],[4778,"impl-Floor-for-Point2D%3CT,+U%3E"],[4779,"impl-Point3D%3CT,+U%3E"],[4780,"impl-Floor-for-Point3D%3CT,+U%3E"],[4781,"impl-Floor-for-Size2D%3CT,+U%3E"],[4782,"impl-Size2D%3CT,+U%3E"],[4783,"impl-Floor-for-Size3D%3CT,+U%3E"],[4784,"impl-Size3D%3CT,+U%3E"],[4785,"impl-Floor-for-Vector2D%3CT,+U%3E"],[4786,"impl-Vector2D%3CT,+U%3E"],[4787,"impl-Floor-for-Vector3D%3CT,+U%3E"],[4788,"impl-Vector3D%3CT,+U%3E"],[4815,"impl-From%3CPoint3D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[4816,"impl-From%3CVector3D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[4818,"impl-From%3CVector2D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[4819,"impl-From%3CPoint2D%3CT,+U%3E%3E-for-HomogeneousVector%3CT,+U%3E"],[4821,"impl-From%3C%5BT;+2%5D%3E-for-Point2D%3CT,+U%3E"],[4822,"impl-From%3C(T,+T)%3E-for-Point2D%3CT,+U%3E"],[4824,"impl-From%3C%5BT;+3%5D%3E-for-Point3D%3CT,+U%3E"],[4826,"impl-From%3C(T,+T,+T)%3E-for-Point3D%3CT,+U%3E"],[4833,"impl-From%3CVector2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[4834,"impl-From%3C%5BT;+2%5D%3E-for-Size2D%3CT,+U%3E"],[4835,"impl-From%3C(T,+T)%3E-for-Size2D%3CT,+U%3E"],[4837,"impl-From%3C(T,+T,+T)%3E-for-Size3D%3CT,+U%3E"],[4838,"impl-From%3C%5BT;+3%5D%3E-for-Size3D%3CT,+U%3E"],[4840,"impl-From%3CVector3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[4847,"impl-From%3CSize2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[4849,"impl-From%3C%5BT;+2%5D%3E-for-Vector2D%3CT,+U%3E"],[4850,"impl-From%3C(T,+T)%3E-for-Vector2D%3CT,+U%3E"],[4851,"impl-From%3C(T,+T,+T)%3E-for-Vector3D%3CT,+U%3E"],[4852,"impl-From%3C%5BT;+3%5D%3E-for-Vector3D%3CT,+U%3E"],[4855,"impl-From%3CVector3D%3CT,+Dst%3E%3E-for-RigidTransform3D%3CT,+Src,+Dst%3E"],[4856,"impl-From%3CRotation3D%3CT,+Src,+Dst%3E%3E-for-RigidTransform3D%3CT,+Src,+Dst%3E"],[5032,"impl-Into%3C(T,+T)%3E-for-Point2D%3CT,+U%3E"],[5033,"impl-Into%3C%5BT;+2%5D%3E-for-Point2D%3CT,+U%3E"],[5035,"impl-Into%3C(T,+T,+T)%3E-for-Point3D%3CT,+U%3E"],[5037,"impl-Into%3C%5BT;+3%5D%3E-for-Point3D%3CT,+U%3E"],[5043,"impl-Into%3C(T,+T)%3E-for-Size2D%3CT,+U%3E"],[5044,"impl-Into%3C%5BT;+2%5D%3E-for-Size2D%3CT,+U%3E"],[5046,"impl-Into%3C(T,+T,+T)%3E-for-Size3D%3CT,+U%3E"],[5047,"impl-Into%3C%5BT;+3%5D%3E-for-Size3D%3CT,+U%3E"],[5051,"impl-Into%3CVector2D%3CT,+Src%3E%3E-for-Translation2D%3CT,+Src,+Dst%3E"],[5052,"impl-Into%3CTransform2D%3CT,+Src,+Dst%3E%3E-for-Translation2D%3CT,+Src,+Dst%3E"],[5055,"impl-Into%3CVector3D%3CT,+Src%3E%3E-for-Translation3D%3CT,+Src,+Dst%3E"],[5056,"impl-Into%3CTransform3D%3CT,+Src,+Dst%3E%3E-for-Translation3D%3CT,+Src,+Dst%3E"],[5057,"impl-Into%3C%5BT;+2%5D%3E-for-Vector2D%3CT,+U%3E"],[5059,"impl-Into%3C(T,+T)%3E-for-Vector2D%3CT,+U%3E"],[5060,"impl-Into%3C(T,+T,+T)%3E-for-Vector3D%3CT,+U%3E"],[5061,"impl-Into%3C%5BT;+3%5D%3E-for-Vector3D%3CT,+U%3E"],[5331,"impl-Mul%3CT%3E-for-Box2D%3CT,+U%3E"],[5332,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Box2D%3CT,+U1%3E"],[5333,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Box3D%3CT,+U1%3E"],[5334,"impl-Mul%3CT%3E-for-Box3D%3CT,+U%3E"],[5335,"impl-Mul%3CT%3E-for-Length%3CT,+U%3E"],[5336,"impl-Mul%3CScale%3CT,+Src,+Dst%3E%3E-for-Length%3CT,+Src%3E"],[5337,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Point2D%3CT,+U1%3E"],[5338,"impl-Mul%3CT%3E-for-Point2D%3CT,+U%3E"],[5339,"impl-Mul%3CT%3E-for-Point3D%3CT,+U%3E"],[5340,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Point3D%3CT,+U1%3E"],[5341,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Rect%3CT,+U1%3E"],[5342,"impl-Mul%3CT%3E-for-Rect%3CT,+U%3E"],[5344,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-SideOffsets2D%3CT,+U1%3E"],[5345,"impl-Mul%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[5346,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Size2D%3CT,+U1%3E"],[5347,"impl-Mul%3CT%3E-for-Size2D%3CT,+U%3E"],[5348,"impl-Mul%3CT%3E-for-Size3D%3CT,+U%3E"],[5349,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Size3D%3CT,+U1%3E"],[5350,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Vector2D%3CT,+U1%3E"],[5351,"impl-Mul%3CT%3E-for-Vector2D%3CT,+U%3E"],[5352,"impl-Mul%3CScale%3CT,+U1,+U2%3E%3E-for-Vector3D%3CT,+U1%3E"],[5353,"impl-Mul%3CT%3E-for-Vector3D%3CT,+U%3E"],[5354,"impl-MulAssign%3CT%3E-for-Box2D%3CT,+U%3E"],[5355,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Box2D%3CT,+U%3E"],[5356,"impl-MulAssign%3CT%3E-for-Box3D%3CT,+U%3E"],[5357,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Box3D%3CT,+U%3E"],[5359,"impl-MulAssign%3CT%3E-for-Point2D%3CT,+U%3E"],[5360,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Point2D%3CT,+U%3E"],[5361,"impl-MulAssign%3CT%3E-for-Point3D%3CT,+U%3E"],[5362,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Point3D%3CT,+U%3E"],[5363,"impl-MulAssign%3CT%3E-for-Rect%3CT,+U%3E"],[5364,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Rect%3CT,+U%3E"],[5365,"impl-MulAssign%3CT%3E-for-SideOffsets2D%3CT,+U%3E"],[5366,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-SideOffsets2D%3CT,+U%3E"],[5367,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Size2D%3CT,+U%3E"],[5368,"impl-MulAssign%3CT%3E-for-Size2D%3CT,+U%3E"],[5369,"impl-MulAssign%3CT%3E-for-Size3D%3CT,+U%3E"],[5370,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Size3D%3CT,+U%3E"],[5371,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[5372,"impl-MulAssign%3CT%3E-for-Vector2D%3CT,+U%3E"],[5373,"impl-MulAssign%3CT%3E-for-Vector3D%3CT,+U%3E"],[5374,"impl-MulAssign%3CScale%3CT,+U,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[5469,"impl-Round-for-Point2D%3CT,+U%3E"],[5470,"impl-Point2D%3CT,+U%3E"],[5471,"impl-Round-for-Point3D%3CT,+U%3E"],[5472,"impl-Point3D%3CT,+U%3E"],[5474,"impl-Size2D%3CT,+U%3E"],[5475,"impl-Round-for-Size2D%3CT,+U%3E"],[5476,"impl-Size3D%3CT,+U%3E"],[5477,"impl-Round-for-Size3D%3CT,+U%3E"],[5478,"impl-Vector2D%3CT,+U%3E"],[5479,"impl-Round-for-Vector2D%3CT,+U%3E"],[5480,"impl-Vector3D%3CT,+U%3E"],[5481,"impl-Round-for-Vector3D%3CT,+U%3E"],[5522,"impl-Sub%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[5523,"impl-Sub%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[5524,"impl-Sub-for-Point2D%3CT,+U%3E"],[5525,"impl-Sub%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[5526,"impl-Sub-for-Point3D%3CT,+U%3E"],[5527,"impl-Sub%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[5537,"impl-SubAssign%3CVector2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[5538,"impl-SubAssign%3CSize2D%3CT,+U%3E%3E-for-Point2D%3CT,+U%3E"],[5539,"impl-SubAssign%3CSize3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[5540,"impl-SubAssign%3CVector3D%3CT,+U%3E%3E-for-Point3D%3CT,+U%3E"],[5548,"impl-Sum%3C%26Length%3CT,+U%3E%3E-for-Length%3CT,+U%3E"],[5549,"impl-Sum-for-Length%3CT,+U%3E"],[5550,"impl-Sum-for-Size2D%3CT,+U%3E"],[5551,"impl-Sum%3C%26Size2D%3CT,+U%3E%3E-for-Size2D%3CT,+U%3E"],[5552,"impl-Sum%3C%26Size3D%3CT,+U%3E%3E-for-Size3D%3CT,+U%3E"],[5553,"impl-Sum-for-Size3D%3CT,+U%3E"],[5554,"impl-Sum-for-Vector2D%3CT,+U%3E"],[5555,"impl-Sum%3C%26Vector2D%3CT,+U%3E%3E-for-Vector2D%3CT,+U%3E"],[5556,"impl-Sum%3C%26Vector3D%3CT,+U%3E%3E-for-Vector3D%3CT,+U%3E"],[5557,"impl-Sum-for-Vector3D%3CT,+U%3E"],[5728,"impl-Transformation%3CS%3E-for-Rotation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[5729,"impl-Rotation2D%3CT,+Src,+Dst%3E"],[5730,"impl-Transformation%3CS%3E-for-Scale%3CS,+UnknownUnit,+UnknownUnit%3E"],[5731,"impl-Scale%3CT,+Src,+Dst%3E"],[5732,"impl-Transformation%3CS%3E-for-Transform2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[5733,"impl-Transform2D%3CT,+Src,+Dst%3E"],[5734,"impl-Translation2D%3CT,+Src,+Dst%3E"],[5735,"impl-Transformation%3CS%3E-for-Translation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[5751,"impl-Rotation2D%3CT,+Src,+Dst%3E"],[5752,"impl-Transformation%3CS%3E-for-Rotation2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[5753,"impl-Transformation%3CS%3E-for-Scale%3CS,+UnknownUnit,+UnknownUnit%3E"],[5754,"impl-Scale%3CT,+Src,+Dst%3E"],[5755,"impl-Transform2D%3CT,+Src,+Dst%3E"],[5756,"impl-Transformation%3CS%3E-for-Transform2D%3CS,+UnknownUnit,+UnknownUnit%3E"],[6039,"impl-Zero-for-Point2D%3CT,+U%3E"],[6040,"impl-Point2D%3CT,+U%3E"],[6041,"impl-Point3D%3CT,+U%3E"],[6042,"impl-Zero-for-Point3D%3CT,+U%3E"],[6045,"impl-Zero-for-Size2D%3CT,+U%3E"],[6046,"impl-Size2D%3CT,+U%3E"],[6047,"impl-Zero-for-Size3D%3CT,+U%3E"],[6048,"impl-Size3D%3CT,+U%3E"],[6049,"impl-Zero-for-Vector2D%3CT,+U%3E"],[6050,"impl-Vector2D%3CT,+U%3E"],[6051,"impl-Vector3D%3CT,+U%3E"],[6052,"impl-Zero-for-Vector3D%3CT,+U%3E"],[6508,"impl-PathBuilder-for-BuilderWithAttributes"],[6509,"impl-BuilderWithAttributes"],[6523,"impl-Build-for-BuilderWithAttributes"],[6524,"impl-BuilderWithAttributes"],[6542,"impl-PathBuilder-for-BuilderWithAttributes"],[6543,"impl-BuilderWithAttributes"],[6570,"impl-BuilderWithAttributes"],[6571,"impl-PathBuilder-for-BuilderWithAttributes"],[6652,"impl-BuilderWithAttributes"],[6653,"impl-PathBuilder-for-BuilderWithAttributes"],[6661,"impl-PathBuilder-for-BuilderWithAttributes"],[6662,"impl-BuilderWithAttributes"],[6665,"impl-BuilderWithAttributes"],[6666,"impl-PathBuilder-for-BuilderWithAttributes"],[6668,"impl-BuilderWithAttributes"],[6669,"impl-PathBuilder-for-BuilderWithAttributes"],[6745,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6746,"impl-Builder%3C\'l%3E"],[6747,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[6748,"impl-BuilderWithAttributes%3C\'l%3E"],[6755,"impl-Build-for-Builder%3C\'l%3E"],[6756,"impl-Builder%3C\'l%3E"],[6757,"impl-Build-for-BuilderWithAttributes%3C\'l%3E"],[6758,"impl-BuilderWithAttributes%3C\'l%3E"],[6764,"impl-Builder%3C\'l%3E"],[6765,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6766,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[6767,"impl-BuilderWithAttributes%3C\'l%3E"],[6780,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6781,"impl-Builder%3C\'l%3E"],[6782,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[6783,"impl-BuilderWithAttributes%3C\'l%3E"],[6821,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6822,"impl-Builder%3C\'l%3E"],[6823,"impl-BuilderWithAttributes%3C\'l%3E"],[6824,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[6830,"impl-Builder%3C\'l%3E"],[6831,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6832,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[6833,"impl-BuilderWithAttributes%3C\'l%3E"],[6834,"impl-Builder%3C\'l%3E"],[6835,"impl-PathBuilder-for-Builder%3C\'l%3E"],[6836,"impl-BuilderWithAttributes%3C\'l%3E"],[6837,"impl-PathBuilder-for-BuilderWithAttributes%3C\'l%3E"],[7193,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[7194,"impl-Checkbox%3C\'a,+Message,+Theme,+Renderer%3E"],[7299,"impl-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[7300,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-ComboBox%3C\'a,+T,+Message,+Theme,+Renderer%3E"],[9170,"impl-Debug-for-Error"],[9171,"impl-Display-for-Error"],[9351,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Radio%3CMessage,+Theme,+Renderer%3E"],[9352,"impl-Radio%3CMessage,+Theme,+Renderer%3E"],[9875,"impl-State"],[9876,"impl-Scrollable-for-State"],[9884,"impl-State"],[9885,"impl-Scrollable-for-State"],[10540,"impl-From%3CPixels%3E-for-LineHeight"],[10542,"impl-From%3Cf32%3E-for-LineHeight"],[11021,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11022,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11035,"impl-Debug-for-Value"],[11036,"impl-Display-for-Value"],[11042,"impl-Focusable-for-State%3CP%3E"],[11043,"impl-State%3CP%3E"],[11139,"impl-State%3CP%3E"],[11140,"impl-Focusable-for-State%3CP%3E"],[11142,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11143,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11149,"impl-State%3CP%3E"],[11150,"impl-TextInput-for-State%3CP%3E"],[11152,"impl-State%3CP%3E"],[11153,"impl-TextInput-for-State%3CP%3E"],[11155,"impl-TextInput-for-State%3CP%3E"],[11156,"impl-State%3CP%3E"],[11176,"impl-State%3CP%3E"],[11177,"impl-TextInput-for-State%3CP%3E"],[11180,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11181,"impl-TextInput%3C\'a,+Message,+Theme,+Renderer%3E"],[11244,"impl-Focusable-for-State%3CP%3E"],[11245,"impl-State%3CP%3E"],[11671,"impl-Display-for-Custom"],[11672,"impl-Debug-for-Custom"],[11679,"impl-From%3CT%3E-for-Container"],[11680,"impl-From%3CAppearance%3E-for-Container"],[12428,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Toggler%3C\'a,+Message,+Theme,+Renderer%3E"],[12429,"impl-Toggler%3C\'a,+Message,+Theme,+Renderer%3E"],[12528,"impl-Tooltip%3C\'a,+Message,+Theme,+Renderer%3E"],[12529,"impl-Widget%3CMessage,+Theme,+Renderer%3E-for-Tooltip%3C\'a,+Message,+Theme,+Renderer%3E"]]},\ "iced_winit":{"doc":"A windowing shell for Iced, on top of winit.","t":"EEGPPFEPNNCNNNNNNNNNNNNCNNNNCENNNNNNNNNNNNNNNNEENNNNNNNNNNNNNNNNNNCNNNNECNECNNNNNNNNNNNNNNNNNEKRFNNNNNNNNHNNNNNNNNNNNNNNNNNNNMNNHHHNNNNNNMNMNNNNNNNHNNNFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHHHHHHHHHHHHHKRFNNNNNNNNHNNNNNNNNNNNNNNNNNNNNMNNHNNNNNNMNMNNNNNNNNHNNFNNNNNNNNNNNNNNONONNNONNNNNNNNNNNNNNNNNOH","n":["Application","Clipboard","Error","ExecutorCreationFailed","GraphicsCreationFailed","Proxy","Settings","WindowCreationFailed","adapt_into_using","adapt_into_using","application","arrays_from","arrays_from","arrays_into","arrays_into","as_any","as_any","as_any_mut","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","clipboard","clone","clone_into","components_from","components_from","conversion","core","deref","deref","deref_mut","deref_mut","drop","drop","fmt","fmt","fmt","from","from","from","from_angle","from_angle","from_stimulus","from_stimulus","futures","graphics","init","init","into","into","into_angle","into_angle","into_any","into_any","into_any_arc","into_any_arc","into_any_rc","into_any_rc","into_color","into_color","into_color_unclamped","into_color_unclamped","into_stimulus","into_stimulus","multi_window","new","poll_close","poll_flush","poll_ready","runtime","settings","start_send","style","system","to_owned","to_smolstr","to_string","try_components_into","try_components_into","try_from","try_from","try_into","try_into","try_into_color","try_into_color","type_id","type_id","uints_from","uints_from","uints_into","uints_into","winit","Application","Flags","State","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","background_color","borrow","borrow_mut","build_user_interface","components_from","cursor","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","logical_size","modifiers","new","new","physical_size","requests_exit","run","run_command","scale_factor","scale_factor","style","subscription","synchronize","text_color","theme","theme","title","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","update","update","viewport","viewport_version","Clipboard","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","components_from","connect","deref","deref_mut","drop","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_rc","into_color","into_color_unclamped","into_stimulus","read","read","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","unconnected","write","write","cursor_position","fullscreen","icon","key","mode","modifiers","mouse_button","mouse_interaction","position","touch_event","user_attention","visible","window_event","window_level","window_settings","Application","Flags","State","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","background_color","borrow","borrow_mut","build_user_interfaces","components_from","cursor","deref","deref_mut","drop","fmt","from","from_angle","from_stimulus","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","logical_size","modifiers","new","new","physical_size","run","scale_factor","scale_factor","style","subscription","synchronize","text_color","theme","theme","title","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","update","user_force_quit","viewport","viewport_version","Settings","adapt_into_using","arrays_from","arrays_into","as_any","as_any_mut","borrow","borrow_mut","clone","clone_into","components_from","default","deref","deref_mut","drop","flags","fmt","fonts","from","from_angle","from_stimulus","id","init","into","into_angle","into_any","into_any_arc","into_any_rc","into_color","into_color_unclamped","into_stimulus","to_owned","try_components_into","try_from","try_into","try_into_color","type_id","uints_from","uints_into","window","fetch_information"],"q":[[0,"iced_winit"],[94,"iced_winit::application"],[151,"iced_winit::clipboard"],[187,"iced_winit::conversion"],[202,"iced_winit::multi_window"],[258,"iced_winit::settings"],[298,"iced_winit::system"],[299,"palette::chromatic_adaptation"],[300,"core::any"],[301,"core::fmt"],[302,"core::fmt"],[303,"alloc::boxed"],[304,"alloc::sync"],[305,"alloc::rc"],[306,"winit::event_loop"],[307,"core::pin"],[308,"core::task::wake"],[309,"core::result"],[310,"core::task::poll"],[311,"smol_str"],[312,"alloc::string"],[313,"palette::convert::try_from_into_color"],[314,"core::any"],[315,"iced_runtime::user_interface"],[316,"iced_core::size"],[317,"iced_runtime::debug"],[318,"iced_runtime::user_interface"],[319,"winit::keyboard"],[320,"iced_runtime::command"],[321,"winit::window"],[322,"winit::event"],[323,"iced_futures::runtime"],[324,"iced_graphics::compositor"],[325,"iced_futures::executor"],[326,"iced_futures::subscription"],[327,"alloc::vec"],[328,"iced_graphics::viewport"],[329,"core::option"],[330,"winit::dpi"],[331,"iced_core::point"],[332,"winit::monitor"],[333,"iced_core::window::mode"],[334,"winit::window"],[335,"winit::icon"],[336,"winit::keyboard"],[337,"iced_core::keyboard::modifiers"],[338,"winit::event"],[339,"iced_core::mouse::interaction"],[340,"cursor_icon"],[341,"iced_core::window::position"],[342,"winit::dpi"],[343,"iced_core::window::user_attention"],[344,"winit::window"],[345,"iced_core::event"],[346,"iced_core::window::level"],[347,"winit::window"],[348,"winit::window"],[349,"core::clone"],[350,"core::default"],[351,"iced_runtime::system::information"],[352,"core::ops::function"],[353,"core::marker"]],"d":["","","An error that occurred while running an application.","The futures executor could not be created.","The application graphics context could not be created.","An event loop proxy that implements Sink.","","The application window could not be created.","","","Create interactive, native cross-platform applications.","","","","","","","","","","","","","Access the clipboard.","","","","","Convert winit types into iced_runtime types, and viceversa.","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Create interactive, native cross-platform applications for …","Creates a new Proxy from an EventLoopProxy.","","","","","Configure your application.","","","Access the native system.","","","","","","","","","","","","","","","","","","","An interactive, native cross-platform application.","The data needed to initialize your Application.","The state of a windowed Application.","","","","","","Returns the current background Color of the State.","","","Builds a UserInterface for the provided Application, …","","Returns the current cursor position of the State.","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Returns the logical Size of the Viewport of the State.","Returns the current keyboard modifiers of the State.","Initializes the Application with the flags provided to run …","Creates a new State for the provided Application and …","Returns the physical Size of the Viewport of the State.","Returns true if the provided event should cause an …","Runs an Application with an executor, compositor, and the …","Runs the actions of a Command.","Returns the current scale factor of the Viewport of the …","Returns the scale factor of the Application.","Returns the Style variation of the Theme.","Returns the event Subscription for the current state of the","Synchronizes the State with its Application and its …","Returns the current text Color of the State.","Returns the current Theme of the Application.","Returns the current theme of the State.","Returns the current title of the Application.","","","","","","","","Updates an Application by feeding it the provided …","Processes the provided window event and updates the State …","Returns the current Viewport of the State.","Returns the version of the Viewport of the State.","A buffer for short-term storage and transfer within and …","","","","","","","","","Creates a new Clipboard for the given window.","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Reads the current content of the Clipboard as text.","","","","","","","","Creates a new Clipboard that isn’t associated with a …","Writes the given text contents to the Clipboard.","","Converts a physical cursor position to a logical Point.","Converts a window::Mode to a winit fullscreen mode.","Converts some window::Icon into it’s winit counterpart.","Converts a VirtualKeyCode from winit to an iced key code.","Converts a winit fullscreen mode to a window::Mode.","Converts some ModifiersState from winit to an iced …","Converts a MouseButton from winit to an iced mouse button.","Converts a mouse::Interaction to a winit cursor icon.","Converts a window::Position to a winit logical position …","Converts a Touch from winit to an iced touch event.","Converts some UserAttention into it’s winit counterpart.","Converts a window::Mode to a visibility flag.","Converts a winit window event into an iced event.","Converts a window::Level to a winit window level.","Converts some window::Settings into a WindowBuilder from …","An interactive, native, cross-platform, multi-windowed …","The data needed to initialize your Application.","The state of a multi-windowed Application.","","","","","","Returns the current background Color of the State.","","","Build the user interface for every window.","","Returns the current cursor position of the State.","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","Returns the logical Size of the Viewport of the State.","Returns the current keyboard modifiers of the State.","Initializes the Application with the flags provided to run …","Creates a new State for the provided Application’s window…","Returns the physical Size of the Viewport of the State.","Runs an Application with an executor, compositor, and the …","Returns the current scale factor of the Viewport of the …","Returns the scale factor of the window of the Application.","Returns the Style variation of the Theme.","Returns the event Subscription for the current state of the","Synchronizes the State with its Application and its …","Returns the current text Color of the State.","Returns the current Theme of the Application.","Returns the current theme of the State.","Returns the current title of the Application.","","","","","","","","Processes the provided window event and updates the State …","Returns true if the provided event should cause an …","Returns the current Viewport of the State.","Returns the version of the Viewport of the State.","The settings of an application.","","","","","","","","","","","","","","","The data needed to initialize an Application.","","The fonts to load on boot.","Returns the argument unchanged.","","","The identifier of the application.","","Calls U::from(self).","","","","","","","","","","","","","","","","The window::Settings.","Query for available system information."],"i":[0,0,0,6,6,0,0,6,6,3,0,6,3,6,3,6,3,6,3,6,3,6,3,0,3,3,6,3,0,0,6,3,6,3,6,3,6,6,3,6,6,3,6,3,6,3,0,0,6,3,6,3,6,3,6,3,6,3,6,3,6,3,6,3,6,3,0,3,3,3,3,0,0,3,0,0,3,6,6,6,3,6,3,6,3,6,3,6,3,6,3,6,3,0,0,25,0,23,23,23,23,23,23,23,23,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,25,23,23,0,0,0,23,25,25,25,23,23,25,23,25,23,23,23,23,23,23,23,0,23,23,23,0,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,77,77,77,77,77,77,77,77,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,78,77,77,0,77,78,78,78,77,77,78,77,78,77,77,77,77,77,77,77,77,0,77,77,0,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,0],"f":[0,0,0,0,0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[[-1,-3],-4,[],[],[[1,[-2]]],[]],0,[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,2,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[3,[-1]]],[[3,[-1]]],[]],[[-1,-2],4,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[5,-1,[]],[5,-1,[]],[5,-1,[]],[5,-1,[]],[5,4],[5,4],[[6,7],8],[[6,7],8],[[[3,[-1]],7],8,9],[-1,-1,[]],[10,6],[-1,-1,[]],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,[[],5],[[],5],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[11,[-1]]],[[11,[2]]],[]],[[[11,[-1]]],[[11,[2]]],[]],[[[12,[-1]]],[[12,[2]]],[]],[[[12,[-1]]],[[12,[2]]],[]],[[[13,[-1]]],[[13,[2]]],[]],[[[13,[-1]]],[[13,[2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[[[14,[-1]]],[[3,[-1]]],[]],[[[15,[[3,[-1]]]],16],[[18,[[17,[4,-2]]]]],[],[]],[[[15,[[3,[-1]]]],16],[[18,[[17,[4,-2]]]]],[],[]],[[[15,[[3,[-1]]]],16],[[18,[[17,[4,-2]]]]],[],[]],0,0,[[[15,[[3,[-1]]]],-1],[[17,[4,-2]]],[],[]],0,0,[-1,-2,[],[]],[-1,19,[]],[-1,20,[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2,[21,[-2]]]]],[],[]],[-1,[[17,[-2,[21,[-2]]]]],[],[]],[-1,22,[]],[-1,22,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],0,0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,2,[]],[-1,2,[]],[[[23,[-1]]],24,25],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,26,27,28],29,25],[-1,-2,[],[]],[[[23,[-1]]],30,25],[5,-1,[]],[5,-1,[]],[5,4],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],5],[-1,-2,[],[]],[-1,-2,[],[]],[[[11,[-1]]],[[11,[2]]],[]],[[[12,[-1]]],[[12,[2]]],[]],[[[13,[-1]]],[[13,[2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[23,[-1]]],[[27,[31]]],25],[[[23,[-1]]],32,25],[-1,[[4,[[25,[],[[33,[-1]]]],[34,[-2]]]]],[],[]],[[-1,35],[[23,[-1]]],25],[[[23,[-1]]],[[27,[36]]],25],[[37,32],38],[39,[[17,[4,6]]]],[[-1,-2,26,[23,[-1]],34,[40,[-3,3]],41,38,14,28,35],4,25,[[43,[],[[42,[]]]]],44],[[[23,[-1]]],45,25],[[[25,[],[[33,[-1]]]]],45,[]],[[[25,[],[[33,[-1]]]]],[],[]],[[[25,[],[[33,[-1]]]]],[[46,[-2]]],[],[]],[[[23,[-1]],-1,35],4,25],[[[23,[-1]]],24,25],[[[25,[],[[33,[-1]]]]],-2,[],[]],[[[23,[-1]]],[],25],[[[25,[],[[33,[-1]]]]],20,[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2,[21,[-2]]]]],[],[]],[-1,22,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,-2,26,[23,[-1]],[40,[-3,3]],41,38,14,28,47,35],4,25,[[43,[],[[42,[]]]]],44],[[[23,[-1]],35,37,28],4,25],[[[23,[-1]]],48,25],[[[23,[-1]]],5,25],0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,2,[]],[-1,2,[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[35,41],[5,-1,[]],[5,-1,[]],[5,4],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],5],[-1,-2,[],[]],[-1,-2,[],[]],[[[11,[-1]]],[[11,[2]]],[]],[[[13,[-1]]],[[13,[2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[41,[[49,[20]]]],[41,[[49,[20]]]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2,[21,[-2]]]]],[],[]],[-1,22,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[],41],[[41,20],4],[[41,20],4],[[[50,[45]],45],51],[[[49,[52]],53],[[49,[54]]]],[55,[[49,[56]]]],[57,58],[[[49,[54]]],53],[32,59],[60,61],[62,63],[[[49,[52]],27,64],[[49,[65]]]],[[66,45],67],[68,69],[53,38],[[70,37,45,32],[[49,[71]]]],[72,73],[[74,75,[49,[52]],[49,[20]]],76],0,0,0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,2,[]],[-1,2,[]],[[[77,[-1]]],24,78],[-1,-2,[],[]],[-1,-2,[],[]],[[-1,28,[0,[-1,-2]],[79,[70,26]]],[[79,[70,29]]],78,[[43,[],[[42,[]]]],43]],[-1,-2,[],[]],[[[77,[-1]]],30,78],[5,-1,[]],[5,-1,[]],[5,4],[[[77,[-1]],7],8,78],[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],[[],5],[-1,-2,[],[]],[-1,-2,[],[]],[[[11,[-1]]],[[11,[2]]],[]],[[[12,[-1]]],[[12,[2]]],[]],[[[13,[-1]]],[[13,[2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[77,[-1]]],[[27,[31]]],78],[[[77,[-1]]],32,78],[-1,[[4,[[78,[],[[33,[-1]]]],[34,[-2]]]]],[],[]],[[-1,70,35],[[77,[-1]]],78],[[[77,[-1]]],[[27,[36]]],78],[39,[[17,[4,6]]]],[[[77,[-1]]],45,78],[[[78,[],[[33,[-1]]]],70],45,[]],[[[78,[],[[33,[-1]]]]],[],[]],[[[78,[],[[33,[-1]]]]],[[46,[-2]]],[],[]],[[[77,[-1]],-1,70,35],4,78],[[[77,[-1]]],24,78],[[[78,[],[[33,[-1]]]],70],-2,[],[]],[[[77,[-1]]],[],78],[[[78,[],[[33,[-1]]]],70],20,[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2,[21,[-2]]]]],[],[]],[-1,22,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[77,[-1]],35,37,28],4,78],[[37,32],38],[[[77,[-1]]],48,78],[[[77,[-1]]],80,78],0,[[-1,-3],-4,[],[],[[1,[-2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,2,[]],[-1,2,[]],[-1,-2,[],[]],[-1,-2,[],[]],[[[39,[-1]]],[[39,[-1]]],81],[[-1,-2],4,[],[]],[-1,-2,[],[]],[[],[[39,[-1]]],82],[5,-1,[]],[5,-1,[]],[5,4],0,[[[39,[-1]],7],8,9],0,[-1,-1,[]],[-1,-1,[]],[-1,-2,[],[]],0,[[],5],[-1,-2,[],[]],[-1,-2,[],[]],[[[11,[-1]]],[[11,[2]]],[]],[[[12,[-1]]],[[12,[2]]],[]],[[[13,[-1]]],[[13,[2]]],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,-2,[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2]]],[],[]],[-1,[[17,[-2,[21,[-2]]]]],[],[]],[-1,22,[]],[-1,-2,[],[]],[-1,-2,[],[]],0,[-2,[[34,[-1]]],[],[[85,[83],[[84,[-1]]]],86]]],"c":[],"p":[[10,"TransformMatrix",299],[10,"Any",300],[5,"Proxy",0],[1,"tuple"],[1,"usize"],[6,"Error",0],[5,"Formatter",301],[8,"Result",301],[10,"Debug",301],[6,"Error",302],[5,"Box",303],[5,"Arc",304],[5,"Rc",305],[5,"EventLoopProxy",306],[5,"Pin",307],[5,"Context",308],[6,"Result",309],[6,"Poll",310],[5,"SmolStr",311],[5,"String",312],[5,"OutOfBounds",313],[5,"TypeId",300],[5,"State",94],[5,"Color",314],[10,"Application",94],[5,"Cache",315],[5,"Size",316],[5,"Debug",317],[5,"UserInterface",315],[6,"Cursor",318],[1,"f32"],[5,"ModifiersState",319],[17,"Flags"],[5,"Command",320],[5,"Window",321],[1,"u32"],[6,"WindowEvent",322],[1,"bool"],[5,"Settings",258],[5,"Runtime",323],[5,"Clipboard",151],[17,"Renderer"],[10,"Compositor",324],[10,"Executor",325],[1,"f64"],[5,"Subscription",326],[5,"Vec",327],[5,"Viewport",328],[6,"Option",329],[5,"PhysicalPosition",330],[5,"Point",331],[5,"MonitorHandle",332],[6,"Mode",333],[6,"Fullscreen",321],[5,"Icon",334],[5,"Icon",335],[6,"Key",319],[6,"Key",336],[5,"Modifiers",337],[6,"MouseButton",322],[6,"Button",338],[6,"Interaction",339],[6,"CursorIcon",340],[6,"Position",341],[6,"Position",330],[5,"Touch",322],[6,"Event",342],[6,"UserAttention",343],[6,"UserAttentionType",321],[5,"Id",344],[6,"Event",345],[6,"Level",346],[6,"WindowLevel",321],[5,"Settings",347],[1,"str"],[5,"WindowBuilder",321],[5,"State",202],[10,"Application",202],[5,"HashMap",348],[1,"u64"],[10,"Clone",349],[10,"Default",350],[5,"Information",351],[17,"Output"],[10,"Fn",352],[10,"Send",353]],"b":[[36,"impl-Display-for-Error"],[37,"impl-Debug-for-Error"],[175,"impl-Clipboard-for-Clipboard"],[176,"impl-Clipboard"],[185,"impl-Clipboard"],[186,"impl-Clipboard-for-Clipboard"]]}\ }'); if (typeof window !== 'undefined' && window.initSearch) {window.initSearch(searchIndex)}; diff --git a/src/iced_widget/slider.rs.html b/src/iced_widget/slider.rs.html index cef76928bb8..65895c2255c 100644 --- a/src/iced_widget/slider.rs.html +++ b/src/iced_widget/slider.rs.html @@ -462,10 +462,105 @@ 462 463 464 +465 +466 +467 +468 +469 +470 +471 +472 +473 +474 +475 +476 +477 +478 +479 +480 +481 +482 +483 +484 +485 +486 +487 +488 +489 +490 +491 +492 +493 +494 +495 +496 +497 +498 +499 +500 +501 +502 +503 +504 +505 +506 +507 +508 +509 +510 +511 +512 +513 +514 +515 +516 +517 +518 +519 +520 +521 +522 +523 +524 +525 +526 +527 +528 +529 +530 +531 +532 +533 +534 +535 +536 +537 +538 +539 +540 +541 +542 +543 +544 +545 +546 +547 +548 +549 +550 +551 +552 +553 +554 +555 +556 +557
    //! Display an interactive selector of a single value from a range of values.
     //!
     //! A [`Slider`] has some local [`State`].
     use crate::core::event::{self, Event};
    +use crate::core::keyboard;
    +use crate::core::keyboard::key::{self, Key};
     use crate::core::layout;
     use crate::core::mouse;
     use crate::core::renderer;
    @@ -513,7 +608,9 @@
     {
         range: RangeInclusive<T>,
         step: T,
    +    shift_step: Option<T>,
         value: T,
    +    default: Option<T>,
         on_change: Box<dyn Fn(T) -> Message + 'a>,
         on_release: Option<Message>,
         width: Length,
    @@ -523,7 +620,7 @@
     
     impl<'a, T, Message, Theme> Slider<'a, T, Message, Theme>
     where
    -    T: Copy + From<u8> + std::cmp::PartialOrd,
    +    T: Copy + From<u8> + PartialOrd,
         Message: Clone,
         Theme: StyleSheet,
     {
    @@ -556,8 +653,10 @@
     
             Slider {
                 value,
    +            default: None,
                 range,
                 step: T::from(1),
    +            shift_step: None,
                 on_change: Box::new(on_change),
                 on_release: None,
                 width: Length::Fill,
    @@ -566,6 +665,14 @@
             }
         }
     
    +    /// Sets the optional default value for the [`Slider`].
    +    ///
    +    /// If set, the [`Slider`] will reset to this value when ctrl-clicked or command-clicked.
    +    pub fn default(mut self, default: impl Into<T>) -> Self {
    +        self.default = Some(default.into());
    +        self
    +    }
    +
         /// Sets the release message of the [`Slider`].
         /// This is called when the mouse is released from the slider.
         ///
    @@ -600,6 +707,14 @@
             self.step = step.into();
             self
         }
    +
    +    /// Sets the optional "shift" step for the [`Slider`].
    +    ///
    +    /// If set, this value is used as the step while the shift key is pressed.
    +    pub fn shift_step(mut self, shift_step: impl Into<T>) -> Self {
    +        self.shift_step = Some(shift_step.into());
    +        self
    +    }
     }
     
     impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer>
    @@ -652,8 +767,10 @@
                 shell,
                 tree.state.downcast_mut::<State>(),
                 &mut self.value,
    +            self.default,
                 &self.range,
                 self.step,
    +            self.shift_step,
                 self.on_change.as_ref(),
                 &self.on_release,
             )
    @@ -717,8 +834,10 @@
         shell: &mut Shell<'_, Message>,
         state: &mut State,
         value: &mut T,
    +    default: Option<T>,
         range: &RangeInclusive<T>,
         step: T,
    +    shift_step: Option<T>,
         on_change: &dyn Fn(T) -> Message,
         on_release: &Option<Message>,
     ) -> event::Status
    @@ -727,15 +846,22 @@
         Message: Clone,
     {
         let is_dragging = state.is_dragging;
    +    let current_value = *value;
     
    -    let mut change = |cursor_position: Point| {
    +    let locate = |cursor_position: Point| -> Option<T> {
             let bounds = layout.bounds();
             let new_value = if cursor_position.x <= bounds.x {
    -            *range.start()
    +            Some(*range.start())
             } else if cursor_position.x >= bounds.x + bounds.width {
    -            *range.end()
    +            Some(*range.end())
             } else {
    -            let step = step.into();
    +            let step = if state.keyboard_modifiers.shift() {
    +                shift_step.unwrap_or(step)
    +            } else {
    +                step
    +            }
    +            .into();
    +
                 let start = (*range.start()).into();
                 let end = (*range.end()).into();
     
    @@ -745,13 +871,49 @@
                 let steps = (percent * (end - start) / step).round();
                 let value = steps * step + start;
     
    -            if let Some(value) = T::from_f64(value) {
    -                value
    -            } else {
    -                return;
    -            }
    +            T::from_f64(value)
             };
     
    +        new_value
    +    };
    +
    +    let increment = |value: T| -> Option<T> {
    +        let step = if state.keyboard_modifiers.shift() {
    +            shift_step.unwrap_or(step)
    +        } else {
    +            step
    +        }
    +        .into();
    +
    +        let steps = (value.into() / step).round();
    +        let new_value = step * (steps + 1.0);
    +
    +        if new_value > (*range.end()).into() {
    +            return Some(*range.end());
    +        }
    +
    +        T::from_f64(new_value)
    +    };
    +
    +    let decrement = |value: T| -> Option<T> {
    +        let step = if state.keyboard_modifiers.shift() {
    +            shift_step.unwrap_or(step)
    +        } else {
    +            step
    +        }
    +        .into();
    +
    +        let steps = (value.into() / step).round();
    +        let new_value = step * (steps - 1.0);
    +
    +        if new_value < (*range.start()).into() {
    +            return Some(*range.start());
    +        }
    +
    +        T::from_f64(new_value)
    +    };
    +
    +    let change = |new_value: T| {
             if ((*value).into() - new_value.into()).abs() > f64::EPSILON {
                 shell.publish((on_change)(new_value));
     
    @@ -764,8 +926,13 @@
             | Event::Touch(touch::Event::FingerPressed { .. }) => {
                 if let Some(cursor_position) = cursor.position_over(layout.bounds())
                 {
    -                change(cursor_position);
    -                state.is_dragging = true;
    +                if state.keyboard_modifiers.command() {
    +                    let _ = default.map(change);
    +                    state.is_dragging = false;
    +                } else {
    +                    let _ = locate(cursor_position).map(change);
    +                    state.is_dragging = true;
    +                }
     
                     return event::Status::Captured;
                 }
    @@ -785,11 +952,29 @@
             Event::Mouse(mouse::Event::CursorMoved { .. })
             | Event::Touch(touch::Event::FingerMoved { .. }) => {
                 if is_dragging {
    -                let _ = cursor.position().map(change);
    +                let _ = cursor.position().and_then(locate).map(change);
    +
    +                return event::Status::Captured;
    +            }
    +        }
    +        Event::Keyboard(keyboard::Event::KeyPressed { key, .. }) => {
    +            if cursor.position_over(layout.bounds()).is_some() {
    +                match key {
    +                    Key::Named(key::Named::ArrowUp) => {
    +                        let _ = increment(current_value).map(change);
    +                    }
    +                    Key::Named(key::Named::ArrowDown) => {
    +                        let _ = decrement(current_value).map(change);
    +                    }
    +                    _ => (),
    +                }
     
                     return event::Status::Captured;
                 }
             }
    +        Event::Keyboard(keyboard::Event::ModifiersChanged(modifiers)) => {
    +            state.keyboard_modifiers = modifiers;
    +        }
             _ => {}
         }
     
    @@ -918,6 +1103,7 @@
     #[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
     pub struct State {
         is_dragging: bool,
    +    keyboard_modifiers: keyboard::Modifiers,
     }
     
     impl State {
    diff --git a/src/iced_widget/vertical_slider.rs.html b/src/iced_widget/vertical_slider.rs.html
    index 69c0c0261cc..991fd54c0c0 100644
    --- a/src/iced_widget/vertical_slider.rs.html
    +++ b/src/iced_widget/vertical_slider.rs.html
    @@ -462,6 +462,101 @@
     462
     463
     464
    +465
    +466
    +467
    +468
    +469
    +470
    +471
    +472
    +473
    +474
    +475
    +476
    +477
    +478
    +479
    +480
    +481
    +482
    +483
    +484
    +485
    +486
    +487
    +488
    +489
    +490
    +491
    +492
    +493
    +494
    +495
    +496
    +497
    +498
    +499
    +500
    +501
    +502
    +503
    +504
    +505
    +506
    +507
    +508
    +509
    +510
    +511
    +512
    +513
    +514
    +515
    +516
    +517
    +518
    +519
    +520
    +521
    +522
    +523
    +524
    +525
    +526
    +527
    +528
    +529
    +530
    +531
    +532
    +533
    +534
    +535
    +536
    +537
    +538
    +539
    +540
    +541
    +542
    +543
    +544
    +545
    +546
    +547
    +548
    +549
    +550
    +551
    +552
    +553
    +554
    +555
    +556
    +557
    +558
    +559
     
    //! Display an interactive selector of a single value from a range of values.
     //!
     //! A [`VerticalSlider`] has some local [`State`].
    @@ -471,6 +566,8 @@
     
     use crate::core;
     use crate::core::event::{self, Event};
    +use crate::core::keyboard;
    +use crate::core::keyboard::key::{self, Key};
     use crate::core::layout::{self, Layout};
     use crate::core::mouse;
     use crate::core::renderer;
    @@ -510,7 +607,9 @@
     {
         range: RangeInclusive<T>,
         step: T,
    +    shift_step: Option<T>,
         value: T,
    +    default: Option<T>,
         on_change: Box<dyn Fn(T) -> Message + 'a>,
         on_release: Option<Message>,
         width: f32,
    @@ -553,8 +652,10 @@
     
             VerticalSlider {
                 value,
    +            default: None,
                 range,
                 step: T::from(1),
    +            shift_step: None,
                 on_change: Box::new(on_change),
                 on_release: None,
                 width: Self::DEFAULT_WIDTH,
    @@ -563,6 +664,14 @@
             }
         }
     
    +    /// Sets the optional default value for the [`VerticalSlider`].
    +    ///
    +    /// If set, the [`VerticalSlider`] will reset to this value when ctrl-clicked or command-clicked.
    +    pub fn default(mut self, default: impl Into<T>) -> Self {
    +        self.default = Some(default.into());
    +        self
    +    }
    +
         /// Sets the release message of the [`VerticalSlider`].
         /// This is called when the mouse is released from the slider.
         ///
    @@ -597,6 +706,14 @@
             self.step = step;
             self
         }
    +
    +    /// Sets the optional "shift" step for the [`VerticalSlider`].
    +    ///
    +    /// If set, this value is used as the step while the shift key is pressed.
    +    pub fn shift_step(mut self, shift_step: impl Into<T>) -> Self {
    +        self.shift_step = Some(shift_step.into());
    +        self
    +    }
     }
     
     impl<'a, T, Message, Theme, Renderer> Widget<Message, Theme, Renderer>
    @@ -649,8 +766,10 @@
                 shell,
                 tree.state.downcast_mut::<State>(),
                 &mut self.value,
    +            self.default,
                 &self.range,
                 self.step,
    +            self.shift_step,
                 self.on_change.as_ref(),
                 &self.on_release,
             )
    @@ -715,8 +834,10 @@
         shell: &mut Shell<'_, Message>,
         state: &mut State,
         value: &mut T,
    +    default: Option<T>,
         range: &RangeInclusive<T>,
         step: T,
    +    shift_step: Option<T>,
         on_change: &dyn Fn(T) -> Message,
         on_release: &Option<Message>,
     ) -> event::Status
    @@ -725,16 +846,23 @@
         Message: Clone,
     {
         let is_dragging = state.is_dragging;
    +    let current_value = *value;
     
    -    let mut change = |cursor_position: Point| {
    +    let locate = |cursor_position: Point| -> Option<T> {
             let bounds = layout.bounds();
     
             let new_value = if cursor_position.y >= bounds.y + bounds.height {
    -            *range.start()
    +            Some(*range.start())
             } else if cursor_position.y <= bounds.y {
    -            *range.end()
    +            Some(*range.end())
             } else {
    -            let step = step.into();
    +            let step = if state.keyboard_modifiers.shift() {
    +                shift_step.unwrap_or(step)
    +            } else {
    +                step
    +            }
    +            .into();
    +
                 let start = (*range.start()).into();
                 let end = (*range.end()).into();
     
    @@ -745,13 +873,49 @@
                 let steps = (percent * (end - start) / step).round();
                 let value = steps * step + start;
     
    -            if let Some(value) = T::from_f64(value) {
    -                value
    -            } else {
    -                return;
    -            }
    +            T::from_f64(value)
             };
     
    +        new_value
    +    };
    +
    +    let increment = |value: T| -> Option<T> {
    +        let step = if state.keyboard_modifiers.shift() {
    +            shift_step.unwrap_or(step)
    +        } else {
    +            step
    +        }
    +        .into();
    +
    +        let steps = (value.into() / step).round();
    +        let new_value = step * (steps + 1.0);
    +
    +        if new_value > (*range.end()).into() {
    +            return Some(*range.end());
    +        }
    +
    +        T::from_f64(new_value)
    +    };
    +
    +    let decrement = |value: T| -> Option<T> {
    +        let step = if state.keyboard_modifiers.shift() {
    +            shift_step.unwrap_or(step)
    +        } else {
    +            step
    +        }
    +        .into();
    +
    +        let steps = (value.into() / step).round();
    +        let new_value = step * (steps - 1.0);
    +
    +        if new_value < (*range.start()).into() {
    +            return Some(*range.start());
    +        }
    +
    +        T::from_f64(new_value)
    +    };
    +
    +    let change = |new_value: T| {
             if ((*value).into() - new_value.into()).abs() > f64::EPSILON {
                 shell.publish((on_change)(new_value));
     
    @@ -764,8 +928,15 @@
             | Event::Touch(touch::Event::FingerPressed { .. }) => {
                 if let Some(cursor_position) = cursor.position_over(layout.bounds())
                 {
    -                change(cursor_position);
    -                state.is_dragging = true;
    +                if state.keyboard_modifiers.control()
    +                    || state.keyboard_modifiers.command()
    +                {
    +                    let _ = default.map(change);
    +                    state.is_dragging = false;
    +                } else {
    +                    let _ = locate(cursor_position).map(change);
    +                    state.is_dragging = true;
    +                }
     
                     return event::Status::Captured;
                 }
    @@ -785,11 +956,29 @@
             Event::Mouse(mouse::Event::CursorMoved { .. })
             | Event::Touch(touch::Event::FingerMoved { .. }) => {
                 if is_dragging {
    -                let _ = cursor.position().map(change);
    +                let _ = cursor.position().and_then(locate).map(change);
    +
    +                return event::Status::Captured;
    +            }
    +        }
    +        Event::Keyboard(keyboard::Event::KeyPressed { key, .. }) => {
    +            if cursor.position_over(layout.bounds()).is_some() {
    +                match key {
    +                    Key::Named(key::Named::ArrowUp) => {
    +                        let _ = increment(current_value).map(change);
    +                    }
    +                    Key::Named(key::Named::ArrowDown) => {
    +                        let _ = decrement(current_value).map(change);
    +                    }
    +                    _ => (),
    +                }
     
                     return event::Status::Captured;
                 }
             }
    +        Event::Keyboard(keyboard::Event::ModifiersChanged(modifiers)) => {
    +            state.keyboard_modifiers = modifiers;
    +        }
             _ => {}
         }
     
    @@ -918,6 +1107,7 @@
     #[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
     pub struct State {
         is_dragging: bool,
    +    keyboard_modifiers: keyboard::Modifiers,
     }
     
     impl State {
    diff --git a/type.impl/iced_core/element/struct.Element.js b/type.impl/iced_core/element/struct.Element.js
    index e8de4a829ba..85f53f270e1 100644
    --- a/type.impl/iced_core/element/struct.Element.js
    +++ b/type.impl/iced_core/element/struct.Element.js
    @@ -1,3 +1,3 @@
     (function() {var type_impls = {
    -"iced":[["
    source§

    impl<'a, Message, Theme, Renderer> Element<'a, Message, Theme, Renderer>

    source

    pub fn new(\n widget: impl Widget<Message, Theme, Renderer> + 'a\n) -> Element<'a, Message, Theme, Renderer>
    where\n Renderer: Renderer,

    Creates a new Element containing the given Widget.

    \n
    source

    pub fn as_widget(&self) -> &dyn Widget<Message, Theme, Renderer>

    Returns a reference to the Widget of the Element,

    \n
    source

    pub fn as_widget_mut(&mut self) -> &mut dyn Widget<Message, Theme, Renderer>

    Returns a mutable reference to the Widget of the Element,

    \n
    source

    pub fn map<B>(\n self,\n f: impl Fn(Message) -> B + 'a\n) -> Element<'a, B, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,\n B: 'a,

    Applies a transformation to the produced message of the Element.

    \n

    This method is useful when you want to decouple different parts of your\nUI and make them composable.

    \n
    Example
    \n

    Imagine we want to use our counter. But instead of\nshowing a single counter, we want to display many of them. We can reuse\nthe Counter type as it is!

    \n

    We use composition to model the state of our new application:

    \n\n
    use counter::Counter;\n\nstruct ManyCounters {\n    counters: Vec<Counter>,\n}
    \n

    We can store the state of multiple counters now. However, the\nmessages we implemented before describe the user interactions\nof a single counter. Right now, we need to also identify which\ncounter is receiving user interactions. Can we use composition again?\nYes.

    \n\n
    #[derive(Debug, Clone, Copy)]\npub enum Message {\n    Counter(usize, counter::Message)\n}
    \n

    We compose the previous messages with the index of the counter\nproducing them. Let’s implement our view logic now:

    \n\n
    use counter::Counter;\n\nuse iced::widget::Row;\nuse iced::{Element, Renderer};\n\nstruct ManyCounters {\n    counters: Vec<Counter>,\n}\n\n#[derive(Debug, Clone, Copy)]\npub enum Message {\n    Counter(usize, counter::Message),\n}\n\nimpl ManyCounters {\n    pub fn view(&mut self) -> Row<Message> {\n        // We can quickly populate a `Row` by folding over our counters\n        self.counters.iter_mut().enumerate().fold(\n            Row::new().spacing(20),\n            |row, (index, counter)| {\n                // We display the counter\n                let element: Element<counter::Message, _, _> =\n                    counter.view().into();\n\n                row.push(\n                    // Here we turn our `Element<counter::Message>` into\n                    // an `Element<Message>` by combining the `index` and the\n                    // message of the `element`.\n                    element\n                        .map(move |message| Message::Counter(index, message)),\n                )\n            },\n        )\n    }\n}
    \n

    Finally, our update logic is pretty straightforward: simple\ndelegation.

    \n\n
    impl ManyCounters {\n    pub fn update(&mut self, message: Message) {\n        match message {\n            Message::Counter(index, counter_msg) => {\n                if let Some(counter) = self.counters.get_mut(index) {\n                    counter.update(counter_msg);\n                }\n            }\n        }\n    }\n}
    \n
    source

    pub fn explain<C>(self, color: C) -> Element<'a, Message, Theme, Renderer>
    where\n C: Into<Color>,\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,

    Marks the Element as to-be-explained.

    \n

    The Renderer will explain the layout of the Element graphically.\nThis can be very useful for debugging your layout!

    \n
    ",0,"iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Toggler<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n toggler: Toggler<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Tooltip<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n tooltip: Tooltip<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, AnyTheme, Message, Theme, Renderer> From<Themer<'a, Message, Theme, Renderer>> for Element<'a, Message, AnyTheme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n themer: Themer<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, AnyTheme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Container<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a + StyleSheet,\n Renderer: 'a + Renderer,

    source§

    fn from(\n column: Container<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Radio<Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a + Clone,\n Theme: StyleSheet + StyleSheet + 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n radio: Radio<Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, T, Message, Theme, Renderer> From<PickList<'a, T, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n T: 'a + Clone + ToString + PartialEq + 'static,\n [T]: ToOwned<Owned = Vec<T>>,\n Message: 'a,\n Theme: StyleSheet + StyleSheet + StyleSheet + StyleSheet + 'a,\n <Theme as StyleSheet>::Style: From<<Theme as StyleSheet>::Style>,\n Renderer: Renderer + 'a,

    source§

    fn from(\n pick_list: PickList<'a, T, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Highlighter, Message, Theme, Renderer> From<TextEditor<'a, Highlighter, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Highlighter: Highlighter,\n Message: 'a,\n Theme: StyleSheet + 'a,\n Renderer: Renderer,

    source§

    fn from(\n text_editor: TextEditor<'a, Highlighter, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Checkbox<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a + StyleSheet + StyleSheet,\n Renderer: 'a + Renderer,

    source§

    fn from(\n checkbox: Checkbox<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Column<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n column: Column<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer, P> From<Shader<Message, P>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Renderer: Renderer,\n P: Program<Message> + 'a,

    source§

    fn from(custom: Shader<Message, P>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, P, Message, Theme, Renderer> From<Canvas<P, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: 'a + Renderer,\n P: 'a + Program<Message, Theme, Renderer>,

    source§

    fn from(\n canvas: Canvas<P, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<PaneGrid<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n pane_grid: PaneGrid<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer, Handle> From<Viewer<Handle>> for Element<'a, Message, Theme, Renderer>
    where\n Renderer: 'a + Renderer<Handle = Handle>,\n Message: 'a,\n Handle: Clone + Hash + 'a,

    source§

    fn from(viewer: Viewer<Handle>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Scrollable<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n text_input: Scrollable<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Space> for Element<'a, Message, Theme, Renderer>
    where\n Renderer: Renderer,\n Message: 'a,

    source§

    fn from(space: Space) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Responsive<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n responsive: Responsive<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, T, Message, Theme, Renderer> From<Slider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
    where\n T: Copy + Into<f64> + FromPrimitive + 'a,\n Message: Clone + 'a,\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n slider: Slider<'a, T, Message, Theme>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, T, Message, Theme, Renderer> From<VerticalSlider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
    where\n T: Copy + Into<f64> + FromPrimitive + 'a,\n Message: Clone + 'a,\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n slider: VerticalSlider<'a, T, Message, Theme>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, T, Message, Theme, Renderer> From<List<'a, T, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n T: ToString + Clone,\n Message: 'a,\n Theme: StyleSheet + 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n list: List<'a, T, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Rule<Theme>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(rule: Rule<Theme>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<ProgressBar<Theme>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n progress_bar: ProgressBar<Theme>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Svg<Theme>> for Element<'a, Message, Theme, Renderer>
    where\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(icon: Svg<Theme>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Button<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: Clone + 'a,\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n button: Button<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, T, Message, Theme, Renderer> From<ComboBox<'a, T, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n T: Display + Clone + 'static,\n Message: Clone + 'a,\n Theme: StyleSheet + StyleSheet + StyleSheet + StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n combo_box: ComboBox<'a, T, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme> From<QRCode<'a>> for Element<'a, Message, Theme, Renderer>

    source§

    fn from(qr_code: QRCode<'a>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer, Handle> From<Image<Handle>> for Element<'a, Message, Theme, Renderer>
    where\n Renderer: Renderer<Handle = Handle>,\n Handle: Clone + Hash + 'a,

    source§

    fn from(image: Image<Handle>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer, Dependency, View> From<Lazy<'a, Message, Theme, Renderer, Dependency, View>> for Element<'a, Message, Theme, Renderer>
    where\n View: Into<Element<'static, Message, Theme, Renderer>> + 'static,\n Renderer: Renderer + 'static,\n Message: 'static,\n Theme: 'static,\n Dependency: Hash + 'a,

    source§

    fn from(\n lazy: Lazy<'a, Message, Theme, Renderer, Dependency, View>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<TextInput<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a + Clone,\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n text_input: TextInput<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<MouseArea<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a + Clone,\n Theme: 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n area: MouseArea<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Key, Message, Theme, Renderer> From<Column<'a, Key, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Key: Copy + PartialEq + 'static,\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n column: Column<'a, Key, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Row<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n row: Row<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> Borrow<dyn Widget<Message, Theme, Renderer> + 'a> for Element<'a, Message, Theme, Renderer>

    source§

    fn borrow(&self) -> &(dyn Widget<Message, Theme, Renderer> + 'a)

    Immutably borrows from an owned value. Read more
    ","Borrow + 'a>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Text<'a, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n text: Text<'a, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<&'a str> for Element<'a, Message, Theme, Renderer>
    where\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(content: &'a str) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From<&'a str>","iced::Element"]] +"iced":[["
    source§

    impl<'a, Message, Theme, Renderer> Element<'a, Message, Theme, Renderer>

    source

    pub fn new(\n widget: impl Widget<Message, Theme, Renderer> + 'a\n) -> Element<'a, Message, Theme, Renderer>
    where\n Renderer: Renderer,

    Creates a new Element containing the given Widget.

    \n
    source

    pub fn as_widget(&self) -> &dyn Widget<Message, Theme, Renderer>

    Returns a reference to the Widget of the Element,

    \n
    source

    pub fn as_widget_mut(&mut self) -> &mut dyn Widget<Message, Theme, Renderer>

    Returns a mutable reference to the Widget of the Element,

    \n
    source

    pub fn map<B>(\n self,\n f: impl Fn(Message) -> B + 'a\n) -> Element<'a, B, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,\n B: 'a,

    Applies a transformation to the produced message of the Element.

    \n

    This method is useful when you want to decouple different parts of your\nUI and make them composable.

    \n
    Example
    \n

    Imagine we want to use our counter. But instead of\nshowing a single counter, we want to display many of them. We can reuse\nthe Counter type as it is!

    \n

    We use composition to model the state of our new application:

    \n\n
    use counter::Counter;\n\nstruct ManyCounters {\n    counters: Vec<Counter>,\n}
    \n

    We can store the state of multiple counters now. However, the\nmessages we implemented before describe the user interactions\nof a single counter. Right now, we need to also identify which\ncounter is receiving user interactions. Can we use composition again?\nYes.

    \n\n
    #[derive(Debug, Clone, Copy)]\npub enum Message {\n    Counter(usize, counter::Message)\n}
    \n

    We compose the previous messages with the index of the counter\nproducing them. Let’s implement our view logic now:

    \n\n
    use counter::Counter;\n\nuse iced::widget::Row;\nuse iced::{Element, Renderer};\n\nstruct ManyCounters {\n    counters: Vec<Counter>,\n}\n\n#[derive(Debug, Clone, Copy)]\npub enum Message {\n    Counter(usize, counter::Message),\n}\n\nimpl ManyCounters {\n    pub fn view(&mut self) -> Row<Message> {\n        // We can quickly populate a `Row` by folding over our counters\n        self.counters.iter_mut().enumerate().fold(\n            Row::new().spacing(20),\n            |row, (index, counter)| {\n                // We display the counter\n                let element: Element<counter::Message, _, _> =\n                    counter.view().into();\n\n                row.push(\n                    // Here we turn our `Element<counter::Message>` into\n                    // an `Element<Message>` by combining the `index` and the\n                    // message of the `element`.\n                    element\n                        .map(move |message| Message::Counter(index, message)),\n                )\n            },\n        )\n    }\n}
    \n

    Finally, our update logic is pretty straightforward: simple\ndelegation.

    \n\n
    impl ManyCounters {\n    pub fn update(&mut self, message: Message) {\n        match message {\n            Message::Counter(index, counter_msg) => {\n                if let Some(counter) = self.counters.get_mut(index) {\n                    counter.update(counter_msg);\n                }\n            }\n        }\n    }\n}
    \n
    source

    pub fn explain<C>(self, color: C) -> Element<'a, Message, Theme, Renderer>
    where\n C: Into<Color>,\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,

    Marks the Element as to-be-explained.

    \n

    The Renderer will explain the layout of the Element graphically.\nThis can be very useful for debugging your layout!

    \n
    ",0,"iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Toggler<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n toggler: Toggler<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Tooltip<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n tooltip: Tooltip<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, AnyTheme, Message, Theme, Renderer> From<Themer<'a, Message, Theme, Renderer>> for Element<'a, Message, AnyTheme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n themer: Themer<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, AnyTheme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Container<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a + StyleSheet,\n Renderer: 'a + Renderer,

    source§

    fn from(\n column: Container<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Radio<Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a + Clone,\n Theme: StyleSheet + StyleSheet + 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n radio: Radio<Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, T, Message, Theme, Renderer> From<PickList<'a, T, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n T: 'a + Clone + ToString + PartialEq + 'static,\n [T]: ToOwned<Owned = Vec<T>>,\n Message: 'a,\n Theme: StyleSheet + StyleSheet + StyleSheet + StyleSheet + 'a,\n <Theme as StyleSheet>::Style: From<<Theme as StyleSheet>::Style>,\n Renderer: Renderer + 'a,

    source§

    fn from(\n pick_list: PickList<'a, T, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Highlighter, Message, Theme, Renderer> From<TextEditor<'a, Highlighter, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Highlighter: Highlighter,\n Message: 'a,\n Theme: StyleSheet + 'a,\n Renderer: Renderer,

    source§

    fn from(\n text_editor: TextEditor<'a, Highlighter, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Checkbox<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a + StyleSheet + StyleSheet,\n Renderer: 'a + Renderer,

    source§

    fn from(\n checkbox: Checkbox<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Column<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n column: Column<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer, P> From<Shader<Message, P>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Renderer: Renderer,\n P: Program<Message> + 'a,

    source§

    fn from(custom: Shader<Message, P>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, P, Message, Theme, Renderer> From<Canvas<P, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: 'a + Renderer,\n P: 'a + Program<Message, Theme, Renderer>,

    source§

    fn from(\n canvas: Canvas<P, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<PaneGrid<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n pane_grid: PaneGrid<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer, Handle> From<Viewer<Handle>> for Element<'a, Message, Theme, Renderer>
    where\n Renderer: 'a + Renderer<Handle = Handle>,\n Message: 'a,\n Handle: Clone + Hash + 'a,

    source§

    fn from(viewer: Viewer<Handle>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Scrollable<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n text_input: Scrollable<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Space> for Element<'a, Message, Theme, Renderer>
    where\n Renderer: Renderer,\n Message: 'a,

    source§

    fn from(space: Space) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Responsive<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n responsive: Responsive<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, T, Message, Theme, Renderer> From<Slider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
    where\n T: Copy + Into<f64> + FromPrimitive + 'a,\n Message: Clone + 'a,\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n slider: Slider<'a, T, Message, Theme>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, T, Message, Theme, Renderer> From<VerticalSlider<'a, T, Message, Theme>> for Element<'a, Message, Theme, Renderer>
    where\n T: Copy + Into<f64> + FromPrimitive + 'a,\n Message: Clone + 'a,\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n slider: VerticalSlider<'a, T, Message, Theme>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, T, Message, Theme, Renderer> From<List<'a, T, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n T: ToString + Clone,\n Message: 'a,\n Theme: StyleSheet + 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n list: List<'a, T, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Rule<Theme>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(rule: Rule<Theme>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<ProgressBar<Theme>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: StyleSheet + 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n progress_bar: ProgressBar<Theme>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Svg<Theme>> for Element<'a, Message, Theme, Renderer>
    where\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(icon: Svg<Theme>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Button<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: Clone + 'a,\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n button: Button<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, T, Message, Theme, Renderer> From<ComboBox<'a, T, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n T: Display + Clone + 'static,\n Message: Clone + 'a,\n Theme: StyleSheet + StyleSheet + StyleSheet + StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n combo_box: ComboBox<'a, T, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme> From<QRCode<'a>> for Element<'a, Message, Theme, Renderer>

    source§

    fn from(qr_code: QRCode<'a>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer, Handle> From<Image<Handle>> for Element<'a, Message, Theme, Renderer>
    where\n Renderer: Renderer<Handle = Handle>,\n Handle: Clone + Hash + 'a,

    source§

    fn from(image: Image<Handle>) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer, Dependency, View> From<Lazy<'a, Message, Theme, Renderer, Dependency, View>> for Element<'a, Message, Theme, Renderer>
    where\n View: Into<Element<'static, Message, Theme, Renderer>> + 'static,\n Renderer: Renderer + 'static,\n Message: 'static,\n Theme: 'static,\n Dependency: Hash + 'a,

    source§

    fn from(\n lazy: Lazy<'a, Message, Theme, Renderer, Dependency, View>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<TextInput<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a + Clone,\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n text_input: TextInput<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<MouseArea<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a + Clone,\n Theme: 'a,\n Renderer: 'a + Renderer,

    source§

    fn from(\n area: MouseArea<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Key, Message, Theme, Renderer> From<Column<'a, Key, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Key: Copy + PartialEq + 'static,\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n column: Column<'a, Key, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Row<'a, Message, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Message: 'a,\n Theme: 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n row: Row<'a, Message, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> Borrow<dyn Widget<Message, Theme, Renderer> + 'a> for Element<'a, Message, Theme, Renderer>

    source§

    fn borrow(&self) -> &(dyn Widget<Message, Theme, Renderer> + 'a)

    Immutably borrows from an owned value. Read more
    ","Borrow + 'a>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<Text<'a, Theme, Renderer>> for Element<'a, Message, Theme, Renderer>
    where\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(\n text: Text<'a, Theme, Renderer>\n) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From>","iced::Element"],["
    source§

    impl<'a, Message, Theme, Renderer> From<&'a str> for Element<'a, Message, Theme, Renderer>
    where\n Theme: StyleSheet + 'a,\n Renderer: Renderer + 'a,

    source§

    fn from(content: &'a str) -> Element<'a, Message, Theme, Renderer>

    Converts to this type from the input type.
    ","From<&'a str>","iced::Element"]] };if (window.register_type_impls) {window.register_type_impls(type_impls);} else {window.pending_type_impls = type_impls;}})() \ No newline at end of file