From 16cab8428ac40fb027e8d3770c571eabdbe46d13 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 21 Dec 2023 10:26:11 +0100 Subject: [PATCH 1/2] fix: add recursion depth limit to avoid runaway runtimes or stackoverflows. This is important as `.gitattributes` and` .gitignore` files can contain arbitrary patterns which might be used to attack clients or servers for that matter. --- gix-glob/src/wildmatch.rs | 23 +++++++++++++++---- .../tests/fixtures/fuzzed/many-stars.pattern | 1 + gix-glob/tests/pattern/matching.rs | 13 ++++++----- 3 files changed, 27 insertions(+), 10 deletions(-) create mode 100644 gix-glob/tests/fixtures/fuzzed/many-stars.pattern diff --git a/gix-glob/src/wildmatch.rs b/gix-glob/src/wildmatch.rs index 0c45bf1b2cf..e4252aebabf 100644 --- a/gix-glob/src/wildmatch.rs +++ b/gix-glob/src/wildmatch.rs @@ -22,6 +22,7 @@ pub(crate) mod function { NoMatch, AbortAll, AbortToStarStar, + RecursionLimitReached, } const STAR: u8 = b'*'; @@ -32,8 +33,13 @@ pub(crate) mod function { const COLON: u8 = b':'; const NEGATE_CLASS: u8 = b'!'; + /// Setting this limit to something reasonable means less compute time spent on unnecessarily complex patterns, or malicious ones. + const RECURSION_LIMIT: usize = 64; - fn match_recursive(pattern: &BStr, text: &BStr, mode: Mode) -> Result { + fn match_recursive(pattern: &BStr, text: &BStr, mode: Mode, depth: usize) -> Result { + if depth == RECURSION_LIMIT { + return RecursionLimitReached; + } use self::Result::*; let possibly_lowercase = |c: &u8| { if mode.contains(Mode::IGNORE_CASE) { @@ -89,7 +95,12 @@ pub(crate) mod function { }) { if next.map_or(NoMatch, |(idx, _)| { - match_recursive(pattern[idx + 1..].as_bstr(), text[t_idx..].as_bstr(), mode) + match_recursive( + pattern[idx + 1..].as_bstr(), + text[t_idx..].as_bstr(), + mode, + depth + 1, + ) }) == Match { return Match; @@ -152,7 +163,7 @@ pub(crate) mod function { return NoMatch; } } - let res = match_recursive(pattern[p_idx..].as_bstr(), text[t_idx..].as_bstr(), mode); + let res = match_recursive(pattern[p_idx..].as_bstr(), text[t_idx..].as_bstr(), mode, depth + 1); if res != NoMatch { if !match_slash || res != AbortToStarStar { return res; @@ -352,6 +363,10 @@ pub(crate) mod function { /// /// `mode` can be used to adjust the way the matching is performed. pub fn wildmatch(pattern: &BStr, value: &BStr, mode: Mode) -> bool { - match_recursive(pattern, value, mode) == Result::Match + let res = match_recursive(pattern, value, mode, 0); + if res == Result::RecursionLimitReached { + gix_features::trace::error!("Recursion limit of {} reached for pattern '{pattern}'", RECURSION_LIMIT); + } + res == Result::Match } } diff --git a/gix-glob/tests/fixtures/fuzzed/many-stars.pattern b/gix-glob/tests/fixtures/fuzzed/many-stars.pattern new file mode 100644 index 00000000000..a35fd968267 --- /dev/null +++ b/gix-glob/tests/fixtures/fuzzed/many-stars.pattern @@ -0,0 +1 @@ +****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/***/*******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/***/*******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/*******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/***/*******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/*****/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/***/*******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/***/*******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/*******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/***/*******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/V/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/**VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/*********/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***ΠΥΥΠΥΥΠΥ***/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/*****/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/*********/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**//**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/*********/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/*****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/******/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/V/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/**VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/*********/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***ΠΥΥΠΥΥΠΥ***/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/*****/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/*********/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**//**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/********/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/*********/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/*****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/***/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/***/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/*****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/*/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/**********/****/**/*******/***/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/**********/****/**/*********/****/**/***/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*********/****/**/**/******/**/**/******/**/****/******/****/*****/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/****/******/****/**/*********/****/**/***/***/****/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/**/****/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/******/****/**/****/**/******/*/******/****/**/****/**/******/**/**/***/**/******/**/**/****/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/**/***/****/**/**/******/**/**/****/**/**/****/******/****/**/*******/***/****/**/**/******/**/**/****/**/**/****/******/****/**/**/****/**/**/****/******/****/***hhe nnnnnnnnnnnnnnnnnnnnnnnnnnTTT gTTnnnnnnnnnnnnnhhe nnnnnnnnnnnnnnnnnnnnnnnnnnTTT g gg ` +*/***/**/*3/]** `tIh \ No newline at end of file diff --git a/gix-glob/tests/pattern/matching.rs b/gix-glob/tests/pattern/matching.rs index 4f8134544e9..d1487c36832 100644 --- a/gix-glob/tests/pattern/matching.rs +++ b/gix-glob/tests/pattern/matching.rs @@ -326,15 +326,16 @@ fn single_paths_match_anywhere() { } #[test] -fn exponential_runaway_denial_of_service() { +fn fuzzed_exponential_runaway_denial_of_service() { // original: "?[at(/\u{1d}\0\u{4}\u{14}\0[[[[:[\0\0\0\0\0\0\0\0Wt(/\u{1d}\0\u{4}\u{14}\0[[[[:[\0\0\0\0\0\0\0\0\0\0\0]" // reduced: "[[:[:]" for pattern in [ - "*?[wxxxxxx\0!t[:rt]\u{14}*", - "?[at(/\u{1d}\0\u{4}\u{14}\0[[[[:[\0\0\0\0\0\0\0\0\0\0/s\0\0\0*\0\0\0\0\0\0\0\0]\0\0\0\0\0\0\0\0\0", - "[[:digit]ab]", - "[[:]ab]", - "[[:[:x]", + include_bytes!("../fixtures/fuzzed/many-stars.pattern"), + "*?[wxxxxxx\0!t[:rt]\u{14}*".as_bytes(), + "?[at(/\u{1d}\0\u{4}\u{14}\0[[[[:[\0\0\0\0\0\0\0\0\0\0/s\0\0\0*\0\0\0\0\0\0\0\0]\0\0\0\0\0\0\0\0\0".as_bytes(), + b"[[:digit]ab]", + b"[[:]ab]", + b"[[:[:x]", ] { let pat = pat(pattern); match_file(&pat, "relative/path", Case::Sensitive); From dab926d39e3603d21ff4f9f57aa351e04d39304a Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 21 Dec 2023 11:15:31 +0100 Subject: [PATCH 2/2] make CI runs more robust by changing timings Sometimes CI runners, particularly on MacOS, are so starved that time-based tests fail particularly when there is plenty of work to do. Let's compensate for it. --- gix-url/tests/fuzzed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gix-url/tests/fuzzed.rs b/gix-url/tests/fuzzed.rs index dec4a8c5d74..2cb678cdcf9 100644 --- a/gix-url/tests/fuzzed.rs +++ b/gix-url/tests/fuzzed.rs @@ -37,7 +37,7 @@ fn fuzzed() { let start = std::time::Instant::now(); gix_url::parse(url.as_bstr()).ok(); assert!( - start.elapsed() < Duration::from_millis(100), + start.elapsed() < Duration::from_millis(250), "URL at '{}' parsed too slowly, took {:.00}s", location.display(), start.elapsed().as_secs_f32()